mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-15 15:09:29 +00:00
d008b1bd41
* Converted to use `System.Text.Json` * Remove Newtonsoft.Json Dependency Newtonsoft.Json dependency has been removed in favor of System.Text.Json * Treat MGFXO file as binary
26 lines
910 B
XML
26 lines
910 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<Content Include="$(ArtifactsPath)/bin/MonoGame.Extended.Content.Pipeline/release/*.dll" Pack="True" PackagePath="tools" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<Description>Content Pipeline importers and processors to make MonoGame more awesome.</Description>
|
|
<PackageTags>monogame content importer processor reader tiled texturepacker bmfont animations</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Autofac" Version="5.2.0" />
|
|
|
|
<PackageReference Include="MonoGame.Framework.Content.Pipeline"
|
|
Version="3.8.1.303"
|
|
PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MonoGame.Extended.Tiled\MonoGame.Extended.Tiled.csproj" />
|
|
<ProjectReference Include="..\MonoGame.Extended\MonoGame.Extended.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|