blob: a976c321c716180949eac803f11cfa733bb191ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@setlocal
@pushd %~dp0
@set _P=%~dp0build\Release\publish
dotnet test -c Release src\test\WixToolsetTest.CoreIntegration || exit /b %ERRORLEVEL%
dotnet pack -c Release src\WixToolset.Core || exit /b %ERRORLEVEL%
dotnet pack -c Release src\WixToolset.Core.Burn || exit /b %ERRORLEVEL%
dotnet pack -c Release src\WixToolset.Core.ExtensionCache || exit /b %ERRORLEVEL%
dotnet pack -c Release src\WixToolset.Core.WindowsInstaller || exit /b %ERRORLEVEL%
dotnet pack -c Release src\WixToolset.Core.TestPackage || exit /b %ERRORLEVEL%
@popd
@endlocal
|