aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSoumya Ranjan Mahunt <devsoumyamahunt@gmail.com>2021-02-05 04:36:21 +0530
committerGitHub <noreply@github.com>2021-02-04 15:06:21 -0800
commit5eea585548058540c3b73d087eb101c033b5fa85 (patch)
treef040b956194997a5cb77c0a42ee54772fe1a7794 /scripts
parent05392981d355f8c46fba32b21f33eeb46a8666f0 (diff)
downloadvcpkg-5eea585548058540c3b73d087eb101c033b5fa85.tar.gz
vcpkg-5eea585548058540c3b73d087eb101c033b5fa85.zip
[msbuild]Fix incorrect triplet configuration for Project Reunion apps (#15410)
* Fix incorrect triplet configuration for Project Reunion apps * Modified VcpkgOSTarget detection condition
Diffstat (limited to 'scripts')
-rw-r--r--scripts/buildsystems/msbuild/vcpkg.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/buildsystems/msbuild/vcpkg.props b/scripts/buildsystems/msbuild/vcpkg.props
index f0806025d..788ba107b 100644
--- a/scripts/buildsystems/msbuild/vcpkg.props
+++ b/scripts/buildsystems/msbuild/vcpkg.props
@@ -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. -->