blob: 3dbf95b84783474d736f6ee43606d1a3320742e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@setlocal
@pushd %~dp0
nuget restore
msbuild -p:Configuration=Release;Platform=Win32 -t:PackNativeNuget src\winterop\winterop.vcxproj
msbuild -p:Configuration=Release;Platform=x64 -t:PackNativeNuget src\winterop\winterop.vcxproj
dotnet pack -c Release .\src\WixToolset.Core.Native\WixToolset.Core.Native.csproj
@popd
@endlocal
|