We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18269a9 commit 33c0512Copy full SHA for 33c0512
1 file changed
.github/workflows/dotnet-desktop.yml
@@ -19,13 +19,17 @@ jobs:
19
20
# Publish (Self-contained) so user doesn't need to install .NET runtime
21
- name: Publish (win-x64)
22
- run: |
23
- dotnet publish .\Monitor\Monitor.csproj -c Release -r win-x64 --self-contained true ^
24
- /p:PublishSingleFile=true ^
25
- /p:IncludeNativeLibrariesForSelfExtract=true ^
26
- /p:DebugType=None ^
27
- /p:DebugSymbols=false ^
28
- -o .\publish
+ shell: pwsh
+ run: >
+ dotnet publish .\Monitor\Monitor.csproj
+ -c Release
+ -r win-x64
+ --self-contained true
+ /p:PublishSingleFile=true
29
+ /p:IncludeNativeLibrariesForSelfExtract=true
30
+ /p:DebugType=None
31
+ /p:DebugSymbols=false
32
+ -o .\publish
33
34
- name: Create ZIP
35
run: |
0 commit comments