aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-02-27 15:38:50 -0800
committerRob Mensching <rob@firegiant.com>2021-02-27 15:42:33 -0800
commit1550b30702ae4e83ea8b30bf95a4f20a6424aa4b (patch)
tree5093d4cd9dbf7999782382e1b91ad225f9c121d7 /appveyor.cmd
parent3fae69ccb71d99c79adba6855ba7d6402216085d (diff)
downloadwix-1550b30702ae4e83ea8b30bf95a4f20a6424aa4b.tar.gz
wix-1550b30702ae4e83ea8b30bf95a4f20a6424aa4b.tar.bz2
wix-1550b30702ae4e83ea8b30bf95a4f20a6424aa4b.zip
Include native .pdbs in .wixext.nupkg and refine build process
Diffstat (limited to 'appveyor.cmd')
-rw-r--r--appveyor.cmd17
1 files changed, 11 insertions, 6 deletions
diff --git a/appveyor.cmd b/appveyor.cmd
index 6bb3b543..3450d535 100644
--- a/appveyor.cmd
+++ b/appveyor.cmd
@@ -1,14 +1,19 @@
1@setlocal 1@setlocal
2@pushd %~dp0 2@pushd %~dp0
3@set _C=Release
4@if /i "%1"=="debug" set _C=Debug
3 5
4nuget restore || exit /b 6:: Restore
7msbuild -p:Configuration=%_C% -t:Restore || exit /b
5 8
6msbuild -p:Configuration=Release -t:Restore || exit /b 9:: Build
10msbuild -p:Configuration=%_C% src\test\WixToolsetTest.Dependency\WixToolsetTest.Dependency.csproj || exit /b
7 11
8msbuild -p:Configuration=Release src\test\WixToolsetTest.Dependency\WixToolsetTest.Dependency.csproj || exit /b 12:: Test
9dotnet test -c Release --no-build src\test\WixToolsetTest.Dependency || exit /b 13dotnet test -c %_C% --no-build src\test\WixToolsetTest.Dependency || exit /b
10 14
11msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Dependency.wixext.csproj || exit /b 15:: Pack
16msbuild -p:Configuration=%_C% -p:NoBuild=true -t:Pack src\wixext\WixToolset.Dependency.wixext.csproj || exit /b
12 17
13@popd 18@popd
14@endlocal \ No newline at end of file 19@endlocal