Skip to content

Commit

Permalink
[msbuild]Fix incorrect triplet configuration for Project Reunion apps (
Browse files Browse the repository at this point in the history
…#15410)

* Fix incorrect triplet configuration for Project Reunion apps

* Modified VcpkgOSTarget detection condition
  • Loading branch information
soumyamahunt committed Feb 4, 2021
1 parent 0539298 commit 5eea585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/buildsystems/msbuild/vcpkg.props
Original file line number Diff line number Diff line change
Expand Up @@ -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. -->
Expand Down

0 comments on commit 5eea585

Please sign in to comment.