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

nuget restore

msbuild -p:Configuration=Release -t:Restore

msbuild -p:Configuration=Release -p:Platform=Win32 src\ca\complusca.vcxproj
msbuild -p:Configuration=Release -p:Platform=x64 src\ca\complusca.vcxproj

msbuild -p:Configuration=Release src\test\WixToolsetTest.ComPlus\WixToolsetTest.ComPlus.csproj

msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.ComPlus.wixext.csproj

@popd
@endlocal