| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html --> | |
| <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <!-- This file is used to set common configuration options for all *_uwp projects. --> | |
| <PropertyGroup> | |
| <!-- If not already set, use this version of the Win10 SDK --> | |
| <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion> | |
| <!-- If not already set, set the minimum Win10 SDK version to TH1/RTM --> | |
| <WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion> | |
| <MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion> | |
| <AppContainerApplication>true</AppContainerApplication> | |
| <ApplicationType>Windows Store</ApplicationType> | |
| <ApplicationTypeRevision>10.0</ApplicationTypeRevision> | |
| </PropertyGroup> | |
| <PropertyGroup> | |
| <!-- This is the version of the MSVC tool-set to use. --> | |
| <!-- v141 is the Visual Studio 2017 toolset. --> | |
| <PlatformToolset>v141</PlatformToolset> | |
| </PropertyGroup> | |
| <ItemDefinitionGroup> | |
| <Midl> | |
| <PreprocessorDefinitions> | |
| %(PreprocessorDefinitions) | |
| U_PLATFORM_HAS_WINUWP_API=1; | |
| </PreprocessorDefinitions> | |
| </Midl> | |
| <ClCompile> | |
| <PreprocessorDefinitions> | |
| %(PreprocessorDefinitions); | |
| U_PLATFORM_HAS_WINUWP_API=1; | |
| </PreprocessorDefinitions> | |
| </ClCompile> | |
| <ResourceCompile> | |
| <PreprocessorDefinitions> | |
| %(PreprocessorDefinitions) | |
| U_PLATFORM_HAS_WINUWP_API=1; | |
| </PreprocessorDefinitions> | |
| </ResourceCompile> | |
| </ItemDefinitionGroup> | |
| </Project> |