Files
MonoGame.Extended/source/MonoGame.Extended.Content.Pipeline/MonoGame.Extended.Content.Pipeline.targets
T
Christopher WhitleyandGitHub 792aa89809 Copy Reference DLLs from NuGet Automatically (#885)
* Pack value should be `true` not `True`

* Copy content pipeline dll references to project directory for ease of use

* Forgot `/` in path
2024-06-03 00:27:38 -04:00

13 lines
541 B
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="CopyMonoGameExtendedDlls" BeforeTargets="RunContentBuilder;BeforeBuild">
<ItemGroup>
<DLLsToCopy Include="$(MSBuildThisFileDirectory)\..\tools\*.dll" />
</ItemGroup>
<Copy SourceFiles="@(DLLsToCopy)"
DestinationFolder="$(MSBuildProjectDirectory)/Content/references"
OverwriteReadOnlyFiles="true"
SkipUnchangedFiles="true" />
</Target>
</Project>