forked from dotnet/aspnetcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWix.props
40 lines (33 loc) · 1.67 KB
/
Wix.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project>
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
<Platform Condition="'$(Platform)' == ''">x64</Platform>
<Lang Condition="'$(Lang)' == ''">ENU</Lang>
<Cultures>en-US</Cultures>
</PropertyGroup>
<!-- Additional parameters for Light/Candle-->
<PropertyGroup>
<LinkerAdditionalOptions>-fv</LinkerAdditionalOptions>
<SuppressIces>ICE61</SuppressIces>
<SuppressWarnings>1033</SuppressWarnings>
</PropertyGroup>
<PropertyGroup>
<DefineSolutionProperties>false</DefineSolutionProperties>
<HostOptionsName>WindowsServerHostingBundleOptions</HostOptionsName>
<!-- Namespace used to generate stable UUID3 GUIDs for MSI ProductCode, etc. DO NOT CHANGE THESE. -->
<HostingBundleNamespaceGuid>E1FD1271-E0F0-4B8B-B4BE-01F2EBA58F4E</HostingBundleNamespaceGuid>
<SharedFrameworkNamespaceGuid>C43D5520-11B3-4D62-B6FE-5D6840B04101</SharedFrameworkNamespaceGuid>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);files=$(MSBuildThisFileDirectory)files</DefineConstants>
<DefineConstants>$(DefineConstants);Culture=$(Cultures)</DefineConstants>
<GenerateNupkgPowershellScript>$(RepoRoot)\src\Installers\Windows\GenerateNugetPackageWithMsi.ps1</GenerateNupkgPowershellScript>
</PropertyGroup>
<!-- Properties for light/lit command package drop generation -->
<PropertyGroup>
<!-- Directory for the unzipped directory -->
<WixCommandObjDir>$(ArtifactsObjDir)/WixCommandPackages</WixCommandObjDir>
<!-- Directory for the zipped up wixpack command package -->
<WixCommandPackagesDir>$(InstallersOutputPath)</WixCommandPackagesDir>
</PropertyGroup>
</Project>