2021-04-30 12:02:21 +08:00
|
|
|
@echo off
|
|
|
|
|
2021-04-29 20:05:55 +08:00
|
|
|
rmdir /s /q publish
|
|
|
|
|
2021-03-02 10:57:19 +08:00
|
|
|
cd src
|
|
|
|
rmdir /s /q bin
|
|
|
|
rmdir /s /q obj
|
2021-08-09 14:21:47 +08:00
|
|
|
dotnet publish SourceGit.csproj --nologo -c Release -r win-x86 -f net48 -o ..\publish\net48
|
2021-08-05 11:05:18 +08:00
|
|
|
ilrepack /ndebug /wildcards /out:..\publish\SourceGit.exe ..\publish\net48\SourceGit.exe ..\publish\net48\*.dll
|
2021-04-30 12:02:21 +08:00
|
|
|
cd ..\publish
|
2021-08-12 13:06:33 +08:00
|
|
|
ren SourceGit.exe SourceGit.net4.8.exe
|
2021-04-30 12:02:21 +08:00
|
|
|
rmdir /s /q net48
|
2021-04-06 09:48:35 +08:00
|
|
|
|
2021-04-30 12:02:21 +08:00
|
|
|
cd ..\src
|
2021-04-06 09:48:35 +08:00
|
|
|
rmdir /s /q bin
|
|
|
|
rmdir /s /q obj
|
2021-08-09 14:21:47 +08:00
|
|
|
dotnet publish SourceGit.csproj --nologo -c Release -r win-x86 -f net5.0-windows -p:PublishSingleFile=true --no-self-contained -o ..\publish
|
|
|
|
cd ..\publish
|
2021-09-13 11:53:38 +08:00
|
|
|
ren SourceGit.exe SourceGit.net5.0.x86.exe
|
|
|
|
|
|
|
|
cd ..\src
|
|
|
|
rmdir /s /q bin
|
|
|
|
rmdir /s /q obj
|
|
|
|
dotnet publish SourceGit.csproj --nologo -c Release -r win-x64 -f net5.0-windows -p:PublishSingleFile=true --no-self-contained -o ..\publish
|
|
|
|
cd ..\publish
|
|
|
|
ren SourceGit.exe SourceGit.net5.0.x64.exe
|
2021-04-29 20:05:55 +08:00
|
|
|
|
|
|
|
cd ../
|