forked from izqalan/cy-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish.bat
13 lines (9 loc) · 811 Bytes
/
publish.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
echo off
dotnet publish .\src\CyberdropDownloader.Avalonia\ -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishProfile=win-x64 -v quiet /p:DebugType=None
echo win-x64 published
dotnet publish .\src\CyberdropDownloader.Avalonia\ -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishProfile=win-x86 -v quiet /p:DebugType=None
echo win-x86 published
dotnet publish .\src\CyberdropDownloader.Avalonia\ -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=false -p:PublishProfile=linux-x64 -v quiet /p:DebugType=None
echo linux-x64 published
dotnet publish .\src\CyberdropDownloader.Avalonia\ -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishProfile=osx-x64 -v quiet /p:DebugType=None
echo osx-x64 published