aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
blob: 6de09dad562b604f3b3865e7dc727d24415016e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@setlocal
@pushd %~dp0
@set _C=Release

nuget restore || exit /b

msbuild -p:Configuration=%_C% src\test\WixToolsetTest.Core.Native\WixToolsetTest.Core.Native.csproj || exit /b
dotnet test -c %_C% --no-build src\test\WixToolsetTest.Core.Native\WixToolsetTest.Core.Native.csproj || exit /b

msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Core.Native\WixToolset.Core.Native.csproj || exit /b

@popd
@endlocal