[msbuild]Fix incorrect triplet configuration for Project Reunion apps (#15410)

* Fix incorrect triplet configuration for Project Reunion apps

* Modified VcpkgOSTarget detection condition
This commit is contained in:
Soumya Ranjan Mahunt 2021-02-05 04:36:21 +05:30 committed by GitHub
parent 05392981d3
commit 5eea585548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@
<!-- Set default OS Target-->
<PropertyGroup Condition="'$(VcpkgOSTarget)' == ''">
<VcpkgOSTarget>windows</VcpkgOSTarget>
<VcpkgOSTarget Condition="'$(ApplicationType)|$(ApplicationTypeRevision)' == 'Windows Store|10.0'">uwp</VcpkgOSTarget>
<VcpkgOSTarget Condition="'$(AppContainerApplication)' == 'true'">uwp</VcpkgOSTarget>
</PropertyGroup>
<!-- Set default Platform Target. $(PlatformTarget) is not available at the top of the .vcxproj file. -->