aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-27 14:55:22 -0700
committerRob Mensching <rob@firegiant.com>2020-06-27 14:57:46 -0700
commitf40f13e06e72b88e7d9602aa64494238a697d1a7 (patch)
treee8286a83c8b7ca2cc20db1b8ee576dee1f779389
parentdb6f8e7e5059245d717ffbd7a43462eaf5302e84 (diff)
downloadwix-f40f13e06e72b88e7d9602aa64494238a697d1a7.tar.gz
wix-f40f13e06e72b88e7d9602aa64494238a697d1a7.tar.bz2
wix-f40f13e06e72b88e7d9602aa64494238a697d1a7.zip
Improve build batch file
-rw-r--r--appveyor.cmd9
-rw-r--r--nuget.config1
2 files changed, 6 insertions, 4 deletions
diff --git a/appveyor.cmd b/appveyor.cmd
index 365f9ac2..f493b577 100644
--- a/appveyor.cmd
+++ b/appveyor.cmd
@@ -1,13 +1,14 @@
1@setlocal 1@setlocal
2@pushd %~dp0 2@pushd %~dp0
3 3
4nuget restore 4nuget restore || exit /b
5 5
6msbuild -p:Configuration=Release -t:Restore 6msbuild -p:Configuration=Release -t:Restore || exit /b
7 7
8msbuild -p:Configuration=Release src\test\WixToolsetTest.Msmq\WixToolsetTest.Msmq.csproj 8msbuild -p:Configuration=Release src\test\WixToolsetTest.Msmq\WixToolsetTest.Msmq.csproj || exit /b
9dotnet test -c Release --no-build src\test\WixToolsetTest.Msmq || exit /b
9 10
10msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Msmq.wixext.csproj 11msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Msmq.wixext.csproj || exit /b
11 12
12@popd 13@popd
13@endlocal \ No newline at end of file 14@endlocal \ No newline at end of file
diff --git a/nuget.config b/nuget.config
index aaee3228..db7aba29 100644
--- a/nuget.config
+++ b/nuget.config
@@ -2,6 +2,7 @@
2<configuration> 2<configuration>
3 <packageSources> 3 <packageSources>
4 <clear /> 4 <clear />
5 <add key="wixtoolset-burn" value="https://ci.appveyor.com/nuget/wixtoolset-burn" />
5 <add key="wixtoolset-data" value="https://ci.appveyor.com/nuget/wixtoolset-data" /> 6 <add key="wixtoolset-data" value="https://ci.appveyor.com/nuget/wixtoolset-data" />
6 <add key="wixtoolset-extensibility" value="https://ci.appveyor.com/nuget/wixtoolset-extensibility" /> 7 <add key="wixtoolset-extensibility" value="https://ci.appveyor.com/nuget/wixtoolset-extensibility" />
7 <add key="wixtoolset-core" value="https://ci.appveyor.com/nuget/wixtoolset-core" /> 8 <add key="wixtoolset-core" value="https://ci.appveyor.com/nuget/wixtoolset-core" />