mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +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
27 lines
883 B
XML
27 lines
883 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<DefineConstants>$(DefineConstants);KNI</DefineConstants>
|
|
<Description>Graphics makes KNI more awesome.</Description>
|
|
<PackageTags>kni graphics batcher effects</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Effects\Resources\DefaultEffect.dx11.mgfxo" />
|
|
<None Remove="Effects\Resources\DefaultEffect.fx" />
|
|
<None Remove="Effects\Resources\DefaultEffect.ogl.mgfxo" />
|
|
<None Remove="Effects\Resources\Macros.fxh" />
|
|
<None Remove="Effects\Resources\Structures.fxh" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Effects\Resources\DefaultEffect.dx11.mgfxo" />
|
|
<EmbeddedResource Include="Effects\Resources\DefaultEffect.ogl.mgfxo" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MonoGame.Extended\KNI.Extended.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|