2020-09-05 04:00:35 +03:00
<?xml version="1.0" encoding="utf-8"?>
2021-06-30 04:43:29 +03:00
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See LICENSE-CODE in the project root for license information. -->
2021-06-29 03:54:05 +03:00
<Project InitialTargets="ErrorIfIncluded" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2021-07-16 08:30:19 +03:00
<PropertyGroup Condition="$(WindowsAppSDKFinalRelease) != 'true'">
<!-- If WindowsAppSDKPrelease is unset, default it to false. -->
<WindowsAppSDKFinalRelease>false</WindowsAppSDKFinalRelease>
2020-09-05 04:00:35 +03:00
</PropertyGroup>
<PropertyGroup Condition="$(UseInsiderSDK) == 'true'">
<DefineConstants>$(DefineConstants);USE_INSIDER_SDK</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(UseInternalSDK) == 'true'">
<DefineConstants>$(DefineConstants);USE_INTERNAL_SDK</DefineConstants>
</PropertyGroup>
2021-07-16 08:30:19 +03:00
<ItemDefinitionGroup Condition="$(WindowsAppSDKFinalRelease) == 'false'">
2020-09-05 04:00:35 +03:00
<ClCompile>
2021-07-16 08:30:19 +03:00
<PreprocessorDefinitions>%(PreprocessorDefinitions);WINDOWSAPPSDK_PRERELEASE</PreprocessorDefinitions>
2020-09-05 04:00:35 +03:00
</ClCompile>
<Midl>
2021-07-16 08:30:19 +03:00
<PreprocessorDefinitions>%(PreprocessorDefinitions);WINDOWSAPPSDK_PRERELEASE</PreprocessorDefinitions>
2020-09-05 04:00:35 +03:00
</Midl>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="$(UseInsiderSDK) == 'true'">
<ClCompile>
<PreprocessorDefinitions>%(PreprocessorDefinitions);USE_INSIDER_SDK</PreprocessorDefinitions>
</ClCompile>
<Midl>
<PreprocessorDefinitions>%(PreprocessorDefinitions);USE_INSIDER_SDK</PreprocessorDefinitions>
</Midl>
</ItemDefinitionGroup>
2021-06-30 04:43:29 +03:00
</Project>