Skip to content

Commit 24d77a8

Browse files
committed
indo
1 parent 8d1f58e commit 24d77a8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build-and-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
3939
- name: Build win-x86 framework-dependent (Single File)
4040
run: |
41-
dotnet publish Ntk.Tools.AutoType.csproj -c Release -r win-x86 --self-contained false -p:PublishSingleFile=true -p:DebugType=none -p:DebugSymbols=false -o ./publish/win-x86-fd
41+
dotnet publish Ntk.Tools.AutoType.csproj -c Release -o ./publish/win-x86-fd
4242
4343
- name: Build win-x64 framework-dependent (Single File)
4444
run: |
45-
dotnet publish Ntk.Tools.AutoType.csproj -c Release -r win-x64 --self-contained false -p:PublishSingleFile=true -p:DebugType=none -p:DebugSymbols=false -o ./publish/win-x64-fd
45+
dotnet publish Ntk.Tools.AutoType.csproj -c Release -o ./publish/win-x64-fd
4646
4747
- name: Create artifacts directory and prepare files
4848
shell: pwsh

Ntk.Tools.AutoType.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@
1515
<UseWindowsForms>true</UseWindowsForms>
1616
</PropertyGroup>
1717

18-
<!-- Single File Output Configuration for Release -->
18+
<!-- Single File Output Configuration for Release - Default is Framework-Dependent -->
1919
<PropertyGroup Condition="'$(Configuration)'=='Release'">
2020
<PublishSingleFile>true</PublishSingleFile>
21+
<SelfContained>false</SelfContained>
2122
<DebugType>none</DebugType>
2223
<DebugSymbols>false</DebugSymbols>
2324
</PropertyGroup>

0 commit comments

Comments
 (0)