Skip to content

Commit cfd94fd

Browse files
committed
Add quick build batch file.
1 parent 6d93f66 commit cfd94fd

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
@echo off
2+
3+
cls
4+
5+
pushd .
6+
call "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Tools\VsMSBuildCmd.bat"
7+
popd
8+
9+
dotnet restore -c Release
10+
dotnet publish -c Release "..\Brutal.Dev.StrongNameSigner\Brutal.Dev.StrongNameSigner.csproj"
11+
12+
MSBuild "..\Brutal.Dev.StrongNameSigner.sln" /t:Rebuild /p:Configuration=Release /m
13+
14+
echo.
15+
"..\..\packages\Tools.InnoSetup.5.6.1\tools\ISCC.exe" StrongNameSigner.iss
16+
echo.
17+
18+
echo.
19+
"..\.nuget\NuGet.exe" pack StrongNameSigner.nuspec
20+
move *.nupkg ..\..\deploy\
21+
echo.
22+
23+
pause

0 commit comments

Comments
 (0)