mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-09-14 04:19:41 +00:00
* KNI projects * update actions fixes MSBUILD : error MSB1011: Specify which project or solution file to use because this folder contains more than one project or solution file. * remove test for issue #633 * build tests * KNI TypeReaders * KNI/XNA compatible code * GetRuntimeReader from runtime types * remove MockGameWindow
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<Content Include="$(ArtifactsPath)/bin/Kni.Extended.Content.Pipeline/release/*.dll" Pack="True" PackagePath="tools" />
|
|
<Content Include="MonoGame.Extended.Content.Pipeline.targets" Pack="true" PackagePath="build" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<DefineConstants>$(DefineConstants);KNI</DefineConstants>
|
|
<Description>Content Pipeline importers and processors to make KNI more awesome.</Description>
|
|
<PackageTags>kni content importer processor reader tiled texturepacker bmfont animations</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Autofac" Version="5.2.0" />
|
|
|
|
<PackageReference Include="nkast.Xna.Framework.Content.Pipeline"
|
|
Version="3.12.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Graphics"
|
|
Version="3.12.9001" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MonoGame.Extended.Tiled\KNI.Extended.Tiled.csproj" />
|
|
<ProjectReference Include="..\MonoGame.Extended\KNI.Extended.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|