2017-08-27 06:24:03 +03:00
|
|
|
<Project>
|
|
|
|
|
2017-08-27 17:24:04 +03:00
|
|
|
<!-- UAP versions for uap10.0 where TPMV isn't implied -->
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0' or '$(TargetFramework)' == 'native'">
|
2017-08-27 22:56:35 +03:00
|
|
|
<TargetPlatformVersion>10.0.$(DefaultTargetPlatformVersion).0</TargetPlatformVersion>
|
|
|
|
<TargetPlatformMinVersion>10.0.$(DefaultTargetPlatformMinVersion).0</TargetPlatformMinVersion>
|
2017-08-28 00:56:38 +03:00
|
|
|
<DebugType>Full</DebugType>
|
2017-08-27 17:24:04 +03:00
|
|
|
</PropertyGroup>
|
2017-08-27 06:24:03 +03:00
|
|
|
|
2017-08-27 21:22:56 +03:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'uap10.0' or '$(TargetFramework)' == 'native'">
|
2017-08-27 22:56:35 +03:00
|
|
|
|
|
|
|
<PackageReference Condition="'$(UseUwpMetaPackage)' == 'true'" Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="$(UwpMetaPackageVersion)" />
|
|
|
|
|
2017-08-27 21:22:56 +03:00
|
|
|
<SDKReference Condition="'$(UseWindowsDesktopSdk)' == 'true' " Include="WindowsDesktop, Version=$(TargetPlatformVersion)">
|
|
|
|
<Name>Windows Desktop Extensions for the UWP</Name>
|
|
|
|
</SDKReference>
|
|
|
|
<SDKReference Condition="'$(UseWindowsMobileSdk)' == 'true' " Include="WindowsMobile, Version=$(TargetPlatformVersion)">
|
|
|
|
<Name>Windows Mobile Extensions for the UWP</Name>
|
|
|
|
</SDKReference>
|
|
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
2017-08-27 06:24:03 +03:00
|
|
|
</Project>
|