mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-23 19:46:30 +00:00
2bbdc38b51
* 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
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)..\Directory.Build.props" />
|
|
|
|
<PropertyGroup>
|
|
<ArtifactsPath>$(SolutionDirectory).artifacts/source</ArtifactsPath>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<IsPackable>true</IsPackable>
|
|
<NoWarn>NU1701</NoWarn>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="!$(DefineConstants.Contains('KNI'))">
|
|
<PackageReference Include="MonoGame.Framework.DesktopGL"
|
|
Version="3.8.1.303"
|
|
PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="$(DefineConstants.Contains('KNI'))">
|
|
<PackageReference Include="nkast.Xna.Framework"
|
|
Version="3.12.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Content"
|
|
Version="3.12.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Graphics"
|
|
Version="3.12.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Input"
|
|
Version="3.12.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Game"
|
|
Version="3.12.9001" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|