2022-06-24 14:01:26 +02:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
2023-03-29 23:31:30 +02:00
<TargetFrameworks > net452;netstandard2.0;net7.0</TargetFrameworks>
2022-06-24 14:01:26 +02:00
<GenerateDocumentationFile > true</GenerateDocumentationFile>
<ProduceReferenceAssembly > true</ProduceReferenceAssembly>
2022-10-31 18:33:53 +01:00
<IsTrimmable > true</IsTrimmable>
2022-06-24 14:01:26 +02:00
<RootNamespace > MLEM.Data</RootNamespace>
<DefineConstants > $(DefineConstants);FNA</DefineConstants>
2022-09-15 10:44:50 +02:00
<NoWarn > NU1701</NoWarn>
2022-06-24 14:01:26 +02:00
</PropertyGroup>
<PropertyGroup >
<Authors > Ellpeck</Authors>
<Description > Simple loading and processing of textures and other data for FNA, including the ability to load non-XNB content files easily</Description>
<PackageReleaseNotes > See the full changelog at https://mlem.ellpeck.de/CHANGELOG</PackageReleaseNotes>
<PackageTags > fna ellpeck mlem utility extensions data serialize</PackageTags>
<PackageProjectUrl > https://mlem.ellpeck.de/</PackageProjectUrl>
<RepositoryUrl > https://github.com/Ellpeck/MLEM</RepositoryUrl>
<PackageLicenseExpression > MIT</PackageLicenseExpression>
<PackageIcon > Logo.png</PackageIcon>
<PackageReadmeFile > README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup >
<ProjectReference Include= "..\MLEM\MLEM.FNA.csproj" />
<!-- TODO remove lidgren support eventually (methods marked as obsolete since 5.2.0) -->
<PackageReference Include= "Lidgren.Network" Version= "1.0.2" >
<PrivateAssets > all</PrivateAssets>
</PackageReference>
2023-10-04 15:54:05 +02:00
<PackageReference Include= "Newtonsoft.Json" Version= "13.0.3" >
2022-06-24 14:01:26 +02:00
<PrivateAssets > all</PrivateAssets>
</PackageReference>
<PackageReference Include= "Newtonsoft.Json.Bson" Version= "1.0.2" >
<PrivateAssets > all</PrivateAssets>
</PackageReference>
2022-09-14 21:17:43 +02:00
<ProjectReference Include= "..\FNA\FNA.csproj" >
2022-06-24 14:01:26 +02:00
<PrivateAssets > all</PrivateAssets>
</ProjectReference>
</ItemGroup>
<ItemGroup >
<None Include= "../Media/Logo.png" Pack= "true" PackagePath= "" />
2023-04-16 13:37:43 +02:00
<None Include= "../README.md" Pack= "true" PackagePath= "" />
2022-06-24 14:01:26 +02:00
</ItemGroup>
</Project>