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/Dnc.wxs | |
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/Dnc.wxs')
-rw-r--r-- | src/wixlib/Dnc.wxs | 21 |
1 files changed, 21 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> | ||