blob: 364d2ccd27cedd51effd03390a5ac316f4fb3f5f (
plain)
1
2
3
4
5
6
7
8
9
10
|
@setlocal
@pushd %~dp0
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
|