We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666b001 commit 605d5eaCopy full SHA for 605d5ea
.github/workflows/main.yml
@@ -39,15 +39,15 @@ jobs:
39
- name: Setup dotnet
40
uses: actions/setup-dotnet@v4
41
with:
42
- dotnet-version: '8.0.x'
+ dotnet-version: '9.0.x'
43
44
- name: Build
45
shell: bash
46
run: |
47
tag=$(git describe --tags --abbrev=0)
48
release_name="LAPS-WebUI-$tag-${{ matrix.target }}"
49
# Build everything
50
- dotnet publish src/LAPS-WebUI.csproj --self-contained --framework net8.0 --runtime "${{ matrix.target }}" -c Release -o "$release_name"
+ dotnet publish src/LAPS-WebUI.csproj --self-contained --framework net9.0 --runtime "${{ matrix.target }}" -c Release -o "$release_name"
51
# Pack files
52
if [ "${{ matrix.target }}" == "win-x64" ]; then
53
# Pack to zip for Windows
0 commit comments