diff options
| author | Soumya Ranjan Mahunt <devsoumyamahunt@gmail.com> | 2021-02-05 04:36:21 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-04 15:06:21 -0800 |
| commit | 5eea585548058540c3b73d087eb101c033b5fa85 (patch) | |
| tree | f040b956194997a5cb77c0a42ee54772fe1a7794 /scripts | |
| parent | 05392981d355f8c46fba32b21f33eeb46a8666f0 (diff) | |
| download | vcpkg-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.props | 2 |
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. -->
|
