2019-12-20 15:03:33 +01:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
2023-11-22 10:39:13 +01:00
<TargetFrameworks > net452;netstandard2.0;net8.0</TargetFrameworks>
2020-05-21 12:20:40 +02:00
<GenerateDocumentationFile > true</GenerateDocumentationFile>
2021-11-30 11:46:06 +01:00
<ProduceReferenceAssembly > true</ProduceReferenceAssembly>
2023-12-20 20:49:52 +01:00
<IsAotCompatible Condition= "'$(TargetFramework)'=='net8.0'" > true</IsAotCompatible>
2022-06-24 14:01:26 +02:00
<NoWarn > NU1701</NoWarn>
2019-12-20 15:03:33 +01:00
</PropertyGroup>
2022-06-24 14:01:26 +02:00
2019-12-20 15:03:33 +01:00
<PropertyGroup >
<Authors > Ellpeck</Authors>
2022-05-10 16:06:45 +02:00
<Description > Simple loading and processing of textures and other data for MonoGame, including the ability to load non-XNB content files easily</Description>
2024-04-05 15:20:46 +02:00
<PackageReleaseNotes > See the full changelog at https://mlem.ellpeck.de/CHANGELOG.html</PackageReleaseNotes>
2021-12-03 12:55:34 +01:00
<PackageTags > monogame ellpeck mlem utility extensions data serialize</PackageTags>
2020-05-21 02:22:55 +02:00
<PackageProjectUrl > https://mlem.ellpeck.de/</PackageProjectUrl>
2019-12-20 15:03:33 +01:00
<RepositoryUrl > https://github.com/Ellpeck/MLEM</RepositoryUrl>
2021-04-22 19:59:35 +02:00
<PackageLicenseExpression > MIT</PackageLicenseExpression>
<PackageIcon > Logo.png</PackageIcon>
2021-09-24 04:47:39 +02:00
<PackageReadmeFile > README.md</PackageReadmeFile>
2019-12-20 15:03:33 +01:00
</PropertyGroup>
2022-06-24 14:01:26 +02:00
2019-12-20 15:03:33 +01:00
<ItemGroup >
2021-04-22 19:59:35 +02:00
<ProjectReference Include= "..\MLEM\MLEM.csproj" />
2022-06-24 14:01:26 +02:00
2023-03-29 21:54:30 +02:00
<PackageReference Include= "Newtonsoft.Json" Version= "13.0.3" >
2022-01-02 22:51:52 +01:00
<PrivateAssets > all</PrivateAssets>
</PackageReference>
2021-12-03 12:55:34 +01:00
<PackageReference Include= "Newtonsoft.Json.Bson" Version= "1.0.2" >
2019-12-20 15:03:33 +01:00
<PrivateAssets > all</PrivateAssets>
</PackageReference>
2021-12-03 12:55:34 +01:00
<PackageReference Include= "MonoGame.Framework.DesktopGL" Version= "3.8.0.1641" >
2020-02-26 23:04:17 +01:00
<PrivateAssets > all</PrivateAssets>
</PackageReference>
2019-12-20 15:03:33 +01:00
</ItemGroup>
2022-06-24 14:01:26 +02:00
2019-12-20 15:03:33 +01:00
<ItemGroup >
2021-06-08 14:45:46 +02:00
<None Include= "../Media/Logo.png" Pack= "true" PackagePath= "" />
2023-04-16 13:37:43 +02:00
<None Include= "../README.md" Pack= "true" PackagePath= "" />
2019-12-20 15:03:33 +01:00
</ItemGroup>
2022-06-24 14:01:26 +02:00
</Project>