blob: e07239f760e9bd349e924c6fe05d6e01a5e83688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@setlocal
@pushd %~dp0
nuget restore
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;Platform=ARM;PlatformToolset=v141
msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141
msbuild -p:Configuration=Release -t:PackNativeNuget src\dutil\dutil.vcxproj
@popd
@endlocal
|