mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-15 15:09:29 +00:00
f8d52cf325
* Hotfix: Update MonoGame reference to 3.8.4 * Bump patch version to 4.1.1
46 lines
1.7 KiB
XML
46 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)..\Directory.Build.props" />
|
|
|
|
<PropertyGroup>
|
|
<ArtifactsPath>$(SolutionDirectory).artifacts/benchmarks</ArtifactsPath>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
<IsPackable>false</IsPackable>
|
|
<NoWarn>NU1701</NoWarn>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="!$(DefineConstants.Contains('FNA')) AND !$(DefineConstants.Contains('KNI'))">
|
|
<PackageReference Include="MonoGame.Framework.DesktopGL"
|
|
Version="3.8.4"
|
|
PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup Condition="$(DefineConstants.Contains('FNA'))">
|
|
<ProjectReference Include="$(MSBuildThisFileDirectory)..\..\FNA\FNA.NetStandard.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="$(DefineConstants.Contains('KNI'))">
|
|
<PackageReference Include="nkast.Xna.Framework"
|
|
Version="4.0.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Content"
|
|
Version="4.0.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Graphics"
|
|
Version="4.0.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Audio"
|
|
Version="4.0.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Input"
|
|
Version="4.0.9001" />
|
|
<PackageReference Include="nkast.Xna.Framework.Game"
|
|
Version="4.0.9001" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet"
|
|
Version="0.13.12" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|