blob: 63302e897971c1ba208181dfa3d1bb968f9c6641 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@setlocal
@pushd %~dp0
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140_xp
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140_xp
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141_xp
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141_xp
msbuild -p:Configuration=Release -t:PackNativeNuget src\wcautil\wcautil.vcxproj
@popd
@endlocal
|