aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
blob: 4f18fbeea96eef1f583fab7cd1859836fba3adbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@setlocal
@pushd %~dp0

nuget restore || exit /b

msbuild -t:Test -p:Configuration=Release src\test\BurnUnitTest || exit /b

msbuild -p:Configuration=Release;Platform=x86 || exit /b
msbuild -p:Configuration=Release;Platform=x64 || exit /b
msbuild -p:Configuration=Release;Platform=arm64 || exit /b

msbuild -p:Configuration=Release -t:Pack src\stub\stub.vcxproj || exit /b

@popd
@endlocal