blob: 9fa5e330d282886ae7eb0d71926b56a70fc6cb25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@setlocal
@pushd %~dp0
nuget restore || exit /b
dotnet pack -c Release src\WixBuildTools.MsgGen\WixBuildTools.MsgGen.csproj || exit /b
dotnet pack -c Release src\WixBuildTools.TestSupport\WixBuildTools.TestSupport.csproj || exit /b
dotnet pack -c Release src\WixBuildTools.XsdGen\WixBuildTools.XsdGen.csproj || exit /b
msbuild -p:Configuration=Release -t:PackNativeNuget src\WixBuildTools.TestSupport.Native\WixBuildTools.TestSupport.Native.vcxproj || exit /b
@popd
@endlocal
|