blob: 63bf9301b55ebf01d0e038f03a527cc04c5ec424 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@setlocal
@pushd %~dp0
nuget restore || exit /b
msbuild -p:Configuration=Release .\src\test\WixToolsetTest.Core.Native\WixToolsetTest.Core.Native.csproj || exit /b
msbuild -t:Pack -p:Configuration=Release .\src\WixToolset.Core.Native\WixToolset.Core.Native.csproj || exit /b
msbuild -t:Pack -p:Configuration=Release .\src\wixnative\wixnative.vcxproj || exit /b
@popd
@endlocal
|