diff options
Diffstat (limited to 'src/burn/appveyor.cmd')
-rw-r--r-- | src/burn/appveyor.cmd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/burn/appveyor.cmd b/src/burn/appveyor.cmd new file mode 100644 index 00000000..a35e10d5 --- /dev/null +++ b/src/burn/appveyor.cmd | |||
@@ -0,0 +1,17 @@ | |||
1 | @setlocal | ||
2 | @pushd %~dp0 | ||
3 | @set _C=Release | ||
4 | @if /i "%1"=="debug" set _C=Debug | ||
5 | |||
6 | nuget restore || exit /b | ||
7 | |||
8 | msbuild -t:Test -p:Configuration=%_C% src\test\BurnUnitTest || exit /b | ||
9 | |||
10 | msbuild -p:Configuration=%_C%;Platform=x86 || exit /b | ||
11 | msbuild -p:Configuration=%_C%;Platform=x64 || exit /b | ||
12 | msbuild -p:Configuration=%_C%;Platform=arm64 || exit /b | ||
13 | |||
14 | msbuild -p:Configuration=%_C% -t:PackNative src\stub\stub.vcxproj || exit /b | ||
15 | |||
16 | @popd | ||
17 | @endlocal \ No newline at end of file | ||