blob: 541993923e721eacb5a8c78fe87a748161c52923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@setlocal
@pushd %~dp0
nuget restore || exit /b
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140 || exit /b
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140 || exit /b
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141 || exit /b
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141 || exit /b
msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141 || exit /b
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142 || exit /b
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142 || exit /b
msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142 || exit /b
msbuild -p:Configuration=Release -t:PackNativeNuget src\dutil\dutil.vcxproj || exit /b
@popd
@endlocal
|