forked from microsoft/WindowsAppSDK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SdkVersion.props
23 lines (21 loc) · 1.21 KB
/
SdkVersion.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See LICENSE in the project root for license information. -->
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SDKVersionRS2>10.0.15063.0</SDKVersionRS2>
<SDKVersionRS3>10.0.16299.0</SDKVersionRS3>
<SDKVersionRS4>10.0.17134.0</SDKVersionRS4>
<SDKVersionRS5>10.0.17763.0</SDKVersionRS5>
<SDKVersion19H1>10.0.18362.0</SDKVersion19H1>
<SDKVersionInsider>10.0.18362.0</SDKVersionInsider>
</PropertyGroup>
<PropertyGroup>
<UseInsiderSDK>true</UseInsiderSDK>
<!-- By default we use the publicly shipped SDK version which is 19H1 now -->
<WindowsAppSDKVersion Condition="$(UseInsiderSDK) != 'true'">$(SDKVersion19H1)</WindowsAppSDKVersion>
<!-- Setting UseInsiderSDK will allow the code to build to the newest insider SDK
In order to get this from a cmd prompt run
set UseInsiderSDK=true and then launch muxcontrols.sln from that cmd prompt-->
<WindowsAppSDKVersion Condition="$(UseInsiderSDK)=='true'">$(SDKVersionInsider)</WindowsAppSDKVersion>
</PropertyGroup>
</Project>