diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-29 19:28:50 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-29 19:53:29 +1000 |
commit | 39e930d9aaff250e0fd5019eeedaa40717a6c6fe (patch) | |
tree | bc0865bc6c9ced1b4a06b408ff60cb83ef73cad3 /src/wixlib | |
parent | f4b14ff16f78435285bb20f16d5d62b902e6ba17 (diff) | |
download | wix-39e930d9aaff250e0fd5019eeedaa40717a6c6fe.tar.gz wix-39e930d9aaff250e0fd5019eeedaa40717a6c6fe.tar.bz2 wix-39e930d9aaff250e0fd5019eeedaa40717a6c6fe.zip |
Add DotNetCoreBootstrapperApplicationHost for an SCD-style .NET Core BA.
Diffstat (limited to 'src/wixlib')
-rw-r--r-- | src/wixlib/Dnc.wxs | 21 | ||||
-rw-r--r-- | src/wixlib/bal.wixproj | 5 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/wixlib/Dnc.wxs b/src/wixlib/Dnc.wxs new file mode 100644 index 00000000..65a59e61 --- /dev/null +++ b/src/wixlib/Dnc.wxs | |||
@@ -0,0 +1,21 @@ | |||
1 | <?xml version='1.0' encoding='utf-8'?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | |||
5 | <Wix xmlns='http://wixtoolset.org/schemas/v4/wxs'> | ||
6 | <!-- | ||
7 | Dnc.wxs - .NET Core BA resources. | ||
8 | --> | ||
9 | <Fragment> | ||
10 | <BootstrapperApplication Id='DotNetCoreBootstrapperApplicationHost' SourceFile='dnchost.dll'> | ||
11 | <PayloadGroupRef Id='Dnc' /> | ||
12 | </BootstrapperApplication> | ||
13 | </Fragment> | ||
14 | |||
15 | <Fragment> | ||
16 | <PayloadGroup Id='Dnc'> | ||
17 | <Payload Compressed='yes' SourceFile='nethost.dll' /> | ||
18 | <Payload Compressed='yes' SourceFile='WixToolset.Dnc.Host.dll' /> | ||
19 | </PayloadGroup> | ||
20 | </Fragment> | ||
21 | </Wix> | ||
diff --git a/src/wixlib/bal.wixproj b/src/wixlib/bal.wixproj index c33375fe..a158cd81 100644 --- a/src/wixlib/bal.wixproj +++ b/src/wixlib/bal.wixproj | |||
@@ -14,6 +14,7 @@ | |||
14 | 14 | ||
15 | <ItemGroup> | 15 | <ItemGroup> |
16 | <Compile Include="BalExtension.wxs" /> | 16 | <Compile Include="BalExtension.wxs" /> |
17 | <Compile Include="Dnc.wxs" /> | ||
17 | <Compile Include="Mba.wxs" /> | 18 | <Compile Include="Mba.wxs" /> |
18 | <Compile Include="wixstdba.wxs" /> | 19 | <Compile Include="wixstdba.wxs" /> |
19 | <Compile Include="wixstdba_x86.wxs" /> | 20 | <Compile Include="wixstdba_x86.wxs" /> |
@@ -33,6 +34,10 @@ | |||
33 | </ItemGroup> | 34 | </ItemGroup> |
34 | 35 | ||
35 | <ItemGroup> | 36 | <ItemGroup> |
37 | <ProjectReference Include="..\dnchost\dnchost.vcxproj"> | ||
38 | <Name>dnchost</Name> | ||
39 | <Project>{B6F70281-6583-4138-BB7F-AABFEBBB3CA2}</Project> | ||
40 | </ProjectReference> | ||
36 | <ProjectReference Include="..\mbahost\mbahost.vcxproj"> | 41 | <ProjectReference Include="..\mbahost\mbahost.vcxproj"> |
37 | <Name>mbahost</Name> | 42 | <Name>mbahost</Name> |
38 | <Project>{12C87C77-3547-44F8-8134-29BC915CB19D}</Project> | 43 | <Project>{12C87C77-3547-44F8-8134-29BC915CB19D}</Project> |