Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit fcabac1

Browse files
authored
Only build one UWP target when using IDE (#12808)
1 parent 68f19a7 commit fcabac1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UWP.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<TargetFrameworks>$(UwpMinTargetFrameworks)</TargetFrameworks>
44
</PropertyGroup>
55
<PropertyGroup Condition=" '$(UwpMinTargetFrameworks)' == '' ">
6-
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">uap10.0.14393;uap10.0.16299</TargetFrameworks>
7-
<!--<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">uap10.0.14393;uap10.0.16299;uap10.0.18362</TargetFrameworks>-->
6+
<TargetFrameworks Condition=" '$(BuildingInsideVisualStudio)' == 'true' AND '$(OS)' == 'Windows_NT' ">uap10.0.16299</TargetFrameworks>
7+
<TargetFrameworks Condition=" '$(BuildingInsideVisualStudio)' != 'true' AND '$(OS)' == 'Windows_NT' ">uap10.0.14393;uap10.0.16299</TargetFrameworks>
88
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0</TargetFrameworks>
99
</PropertyGroup>
1010
<PropertyGroup>

0 commit comments

Comments
 (0)