diff options
author | Rob Mensching <rob@firegiant.com> | 2021-05-04 22:45:02 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-04 22:45:02 -0700 |
commit | fe2f7e06c595a4e7115d83c4cc8a05b28db5002a (patch) | |
tree | 8f46339d2ccbc2ec97c9e77e857bd72f07412a2e /src/ext/DirectX/appveyor.cmd | |
parent | 232ea0120f67d4d445fd5fbb09a8852b2668310a (diff) | |
download | wix-fe2f7e06c595a4e7115d83c4cc8a05b28db5002a.tar.gz wix-fe2f7e06c595a4e7115d83c4cc8a05b28db5002a.tar.bz2 wix-fe2f7e06c595a4e7115d83c4cc8a05b28db5002a.zip |
Move DirectX.wixext into ext
Diffstat (limited to 'src/ext/DirectX/appveyor.cmd')
-rw-r--r-- | src/ext/DirectX/appveyor.cmd | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ext/DirectX/appveyor.cmd b/src/ext/DirectX/appveyor.cmd new file mode 100644 index 00000000..3a7e2d72 --- /dev/null +++ b/src/ext/DirectX/appveyor.cmd | |||
@@ -0,0 +1,14 @@ | |||
1 | @setlocal | ||
2 | @pushd %~dp0 | ||
3 | |||
4 | nuget restore || exit /b | ||
5 | |||
6 | msbuild -p:Configuration=Release -t:Restore || exit /b | ||
7 | |||
8 | msbuild -p:Configuration=Release src\test\WixToolsetTest.DirectX\WixToolsetTest.DirectX.csproj || exit /b | ||
9 | dotnet test -c Release --no-build src\test\WixToolsetTest.DirectX || exit /b | ||
10 | |||
11 | msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.DirectX.wixext.csproj || exit /b | ||
12 | |||
13 | @popd | ||
14 | @endlocal \ No newline at end of file | ||