aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-07-21 07:36:34 -0700
committerRob Mensching <rob@firegiant.com>2018-07-21 07:36:34 -0700
commit306f1d0c528cb6c151594ff96a41b5c01a5c4d9b (patch)
tree95deb0884b59decc082eae7adf5d65d45c5f3848 /appveyor.cmd
parent6fc54af07b10742e883f3a39ef0114e55e6a36a0 (diff)
downloadwix-306f1d0c528cb6c151594ff96a41b5c01a5c4d9b.tar.gz
wix-306f1d0c528cb6c151594ff96a41b5c01a5c4d9b.tar.bz2
wix-306f1d0c528cb6c151594ff96a41b5c01a5c4d9b.zip
Integrate tools from Core project
Diffstat (limited to 'appveyor.cmd')
-rw-r--r--appveyor.cmd21
1 files changed, 21 insertions, 0 deletions
diff --git a/appveyor.cmd b/appveyor.cmd
new file mode 100644
index 00000000..25481c45
--- /dev/null
+++ b/appveyor.cmd
@@ -0,0 +1,21 @@
1@setlocal
2@pushd %~dp0
3@set _P=%~dp0build\Release\publish
4
5@rem Disable this test until publishing of native assets is worked out
6@rem dotnet build -c Release src\test\WixToolsetTest.BuildTasks
7
8dotnet publish -c Release -o %_P%\dotnet-wix\ -f netcoreapp2.1 src\wix
9dotnet publish -c Release -o %_P%\WixToolset.MSBuild\net461\ -f net461 src\WixToolset.BuildTasks
10dotnet publish -c Release -o %_P%\WixToolset.MSBuild\netcoreapp2.1\ -f netcoreapp2.1 src\WixToolset.BuildTasks
11
12@rem dotnet publish -c Release -o %_P%\netcoreapp2.1 -r win-x86 src\wix
13@rem dotnet publish -c Release -o %_P%\net461 -r win-x86 src\light
14@rem dotnet publish -c Release -o %_P%\net461 -r win-x86 src\WixToolset.BuildTasks
15
16dotnet pack -c Release src\dotnet-wix
17dotnet pack -c Release src\WixToolset.MSBuild
18@rem dotnet pack -c Release src\WixToolset.Core.InternalPackage
19
20@popd
21@endlocal