diff options
Diffstat (limited to 'src/burn/appveyor.cmd')
-rw-r--r-- | src/burn/appveyor.cmd | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/burn/appveyor.cmd b/src/burn/appveyor.cmd deleted file mode 100644 index a35e10d5..00000000 --- a/src/burn/appveyor.cmd +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
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 | ||