Skip to content

Commit 605d5ea

Browse files
authored
Use .NET 9
1 parent 666b001 commit 605d5ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ jobs:
3939
- name: Setup dotnet
4040
uses: actions/setup-dotnet@v4
4141
with:
42-
dotnet-version: '8.0.x'
42+
dotnet-version: '9.0.x'
4343

4444
- name: Build
4545
shell: bash
4646
run: |
4747
tag=$(git describe --tags --abbrev=0)
4848
release_name="LAPS-WebUI-$tag-${{ matrix.target }}"
4949
# Build everything
50-
dotnet publish src/LAPS-WebUI.csproj --self-contained --framework net8.0 --runtime "${{ matrix.target }}" -c Release -o "$release_name"
50+
dotnet publish src/LAPS-WebUI.csproj --self-contained --framework net9.0 --runtime "${{ matrix.target }}" -c Release -o "$release_name"
5151
# Pack files
5252
if [ "${{ matrix.target }}" == "win-x64" ]; then
5353
# Pack to zip for Windows

0 commit comments

Comments
 (0)