Fix WindowsAppSdkDeploymentManagerInitialize to default to true when WindowsPackageType=MSIX (was backwards before) (#2974)

This commit is contained in:
Howard Kapustein 2022-09-16 15:07:40 -07:00 коммит произвёл GitHub
Родитель 4f3eabf1aa
Коммит 24e1de5207
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2,7 +2,7 @@
<!-- Targets file common to both managed and native projects -->
<PropertyGroup Condition="'$(WindowsAppSdkDeploymentManagerInitialize)'=='' and '$(WindowsAppSDKSelfContained)'!='true' and '$(WindowsPackageType)'=='None' and ('$(OutputType)'=='Exe' or '$(OutputType)'=='Winexe')">
<PropertyGroup Condition="'$(WindowsAppSdkDeploymentManagerInitialize)'=='' and '$(WindowsAppSDKSelfContained)'!='true' and '$(WindowsPackageType)'=='MSIX' and ('$(OutputType)'=='Exe' or '$(OutputType)'=='Winexe')">
<!--Allows GenerateDeploymentManagerCS/GenerateDeploymentManagerCpp to run-->
<WindowsAppSdkDeploymentManagerInitialize>true</WindowsAppSdkDeploymentManagerInitialize>
</PropertyGroup>