mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-25 08:22:15 +00:00
* Pack value should be `true` not `True` * Copy content pipeline dll references to project directory for ease of use * Forgot `/` in path
13 lines
541 B
XML
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>
|