From 306f1d0c528cb6c151594ff96a41b5c01a5c4d9b Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 21 Jul 2018 07:36:34 -0700 Subject: Integrate tools from Core project --- appveyor.cmd | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 appveyor.cmd (limited to 'appveyor.cmd') diff --git a/appveyor.cmd b/appveyor.cmd new file mode 100644 index 00000000..25481c45 --- /dev/null +++ b/appveyor.cmd @@ -0,0 +1,21 @@ +@setlocal +@pushd %~dp0 +@set _P=%~dp0build\Release\publish + +@rem Disable this test until publishing of native assets is worked out +@rem dotnet build -c Release src\test\WixToolsetTest.BuildTasks + +dotnet publish -c Release -o %_P%\dotnet-wix\ -f netcoreapp2.1 src\wix +dotnet publish -c Release -o %_P%\WixToolset.MSBuild\net461\ -f net461 src\WixToolset.BuildTasks +dotnet publish -c Release -o %_P%\WixToolset.MSBuild\netcoreapp2.1\ -f netcoreapp2.1 src\WixToolset.BuildTasks + +@rem dotnet publish -c Release -o %_P%\netcoreapp2.1 -r win-x86 src\wix +@rem dotnet publish -c Release -o %_P%\net461 -r win-x86 src\light +@rem dotnet publish -c Release -o %_P%\net461 -r win-x86 src\WixToolset.BuildTasks + +dotnet pack -c Release src\dotnet-wix +dotnet pack -c Release src\WixToolset.MSBuild +@rem dotnet pack -c Release src\WixToolset.Core.InternalPackage + +@popd +@endlocal -- cgit v1.2.3-55-g6feb