diff options
author | Rob Mensching <rob@firegiant.com> | 2017-09-03 13:25:34 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-09-03 14:24:33 -0700 |
commit | 420ce71170489840376c8236da268a7747bb607b (patch) | |
tree | b7aa6960883e0afadb72b926659642e0b7313be7 /appveyor.cmd | |
parent | 5d8375007754101ff2889d0e79486c8f9b7cf5ab (diff) | |
download | wix-420ce71170489840376c8236da268a7747bb607b.tar.gz wix-420ce71170489840376c8236da268a7747bb607b.tar.bz2 wix-420ce71170489840376c8236da268a7747bb607b.zip |
Enable multi-target build and dutil.nupkg
Diffstat (limited to 'appveyor.cmd')
-rw-r--r-- | appveyor.cmd | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/appveyor.cmd b/appveyor.cmd new file mode 100644 index 00000000..70c4064c --- /dev/null +++ b/appveyor.cmd | |||
@@ -0,0 +1,13 @@ | |||
1 | @setlocal | ||
2 | @pushd %~dp0 | ||
3 | |||
4 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140_xp | ||
5 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140_xp | ||
6 | |||
7 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141_xp | ||
8 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141_xp | ||
9 | |||
10 | msbuild -p:Configuration=Release -t:PackNativeNuget src\dutil\dutil.vcxproj | ||
11 | |||
12 | @popd | ||
13 | @endlocal \ No newline at end of file | ||