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 9d3f186 commit 6974b0eCopy full SHA for 6974b0e
build/build.windows.ps1
@@ -6,6 +6,16 @@ if (Test-Path SourceGit) {
6
7
Remove-Item *.zip -Force
8
9
+dotnet publish ..\src\SourceGit.csproj -c Release -r win-arm64 -o SourceGit -p:PublishAot=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained
10
+
11
+Remove-Item SourceGit\*.pdb -Force
12
13
+Compress-Archive -Path SourceGit -DestinationPath "sourcegit_$version.win-arm64.zip"
14
15
+if (Test-Path SourceGit) {
16
+ Remove-Item SourceGit -Recurse -Force
17
+}
18
19
dotnet publish ..\src\SourceGit.csproj -c Release -r win-x64 -o SourceGit -p:PublishAot=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained
20
21
Remove-Item SourceGit\*.pdb -Force
0 commit comments