Files
OnDoc/packages/NLog.Schema.6.1.3/build/NLog.Schema.targets
T
2026-07-17 14:43:33 +02:00

7 lines
589 B
XML

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Idea taken from issue https://github.com/NuGet/Home/issues/10734 -->
<Target Name="NLogSchema_Copy" AfterTargets="ResolveReferences">
<Message Importance="normal" Text="NLog.Schema copy '$(MSBuildThisFileDirectory)/../content/NLog.xsd' file to project folder '$(ProjectDir)'" />
<Copy SourceFiles="$(MSBuildThisFileDirectory)/../content/NLog.xsd" DestinationFolder="$(ProjectDir)" SkipUnchangedFiles="true" Condition="Exists('$(MSBuildThisFileDirectory)/../content/NLog.xsd')" />
</Target>
</Project>