/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Installers/Windows/Wix.props
42 строки
2 KB
William Godbe
Update to wix5 (#62885)
18 сен 2025, 01:38
Не верифицирован
18 сен 2025, 01:38
f292245
Код
Авторство
О чём код?
<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> <SuppressIces>ICE61</SuppressIces> <SuppressWarnings>1033</SuppressWarnings> <!-- Currently, WiX only supports 'full' for the -pdbType option. This affects both bundle and package projects. --> <DebugType>full</DebugType> </PropertyGroup> <PropertyGroup> <DefineSolutionProperties>false</DefineSolutionProperties> <HostOptionsNameShort>AspNetCore.HostOptions</HostOptionsNameShort> <!-- 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> <ANCMNamespaceGuid>EC59D6F5-B7E6-4E46-A617-EC8329960614</ANCMNamespaceGuid> </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>