Skip to content

Commit 0e0f076

Browse files
committed
No need for framework selection
Since we only have one target now
1 parent 918947b commit 0e0f076

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-do-releases.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
- name: Restore dependencies
2222
run: dotnet restore
2323
- name: Build a Win-x64 release
24-
run: dotnet publish -c Release -f net9.0 -r win-x64 -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishTrimmed=true --self-contained true -o publish
24+
run: dotnet publish -c Release -r win-x64 -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishTrimmed=true --self-contained true -o publish
2525
- name: Rename and move Win-x64 binary
2626
run: mv publish/Dithery-cli.exe dithery.exe
2727
- name: Build a Linux-x64 release
28-
run: dotnet publish -c Release -f net9.0 -r linux-x64 -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishTrimmed=true --self-contained true -o publish
28+
run: dotnet publish -c Release -r linux-x64 -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishTrimmed=true --self-contained true -o publish
2929
- name: Rename and move Linux-x64 binary
3030
run: mv publish/Dithery-cli dithery
3131
- name: Install zip

0 commit comments

Comments
 (0)