diff options
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> | ||