1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html -->
4 This file is used to copy all of the header files (*.h) from a project's "unicode" folder to a common output folder.
6 <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
8 <!-- This is the location of the common output folder. -->
9 <CopyDestionationPath>$(SolutionDir)\..\..\include\unicode</CopyDestionationPath>
12 CopyUnicodeHeaderFiles;
15 <Target Name="CopyUnicodeHeaderFiles">
17 <!-- Generate a list of all files that end in .h from the 'unicode' folder, relative to the current project. -->
18 <OutputFiles Include=".\unicode\**\*.h" />
20 <!-- This message will be logged in the project's build output. -->
21 <Message Text="Copying @(OutputFiles->Count()) header files to $(CopyDestionationPath). Files copied: @(OutputFiles)" Importance="high"/>
22 <!-- Perform the copy. -->
23 <Copy SourceFiles="@(OutputFiles)"
24 DestinationFolder="$(CopyDestionationPath)\%(RecursiveDir)"
25 SkipUnchangedFiles="false"></Copy>