2022-06-24 14:01:26 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2023-11-22 10:39:13 +01:00
|
|
|
|
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
|
2023-12-20 20:54:23 +01:00
|
|
|
|
<IsAotCompatible Condition="'$(TargetFramework)'=='net8.0'">true</IsAotCompatible>
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<RootNamespace>MLEM.Extended</RootNamespace>
|
|
|
|
|
<DefineConstants>$(DefineConstants);FNA</DefineConstants>
|
2022-09-15 10:44:50 +02:00
|
|
|
|
<NoWarn>NU1702</NoWarn>
|
2022-06-24 14:01:26 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Authors>Ellpeck</Authors>
|
|
|
|
|
<Description>MLEM Library for Extending FNA extension that ties in with other FNA libraries</Description>
|
2024-04-05 15:20:46 +02:00
|
|
|
|
<PackageReleaseNotes>See the full changelog at https://mlem.ellpeck.de/CHANGELOG.html</PackageReleaseNotes>
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<PackageTags>fna ellpeck mlem utility extensions extended</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" />
|
|
|
|
|
|
2024-07-10 12:03:24 +02:00
|
|
|
|
<ProjectReference Condition="'$(TargetFramework)'=='net8.0'" Include="..\ThirdParty\MonoGame.Extended\source\MonoGame.Extended\FNA.Extended.csproj">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</ProjectReference>
|
2023-11-22 10:39:13 +01:00
|
|
|
|
<ProjectReference Include="..\ThirdParty\FontStashSharp\src\XNA\FontStashSharp.FNA.csproj">
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</ProjectReference>
|
2023-11-22 10:39:13 +01:00
|
|
|
|
<ProjectReference Include="..\ThirdParty\FNA\FNA.csproj">
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</ProjectReference>
|
2024-07-10 12:03:24 +02:00
|
|
|
|
</ItemGroup>
|
2022-06-24 14:01:26 +02:00
|
|
|
|
|
2024-07-10 12:03:24 +02:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'!='net8.0'">
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<Compile Remove="Tiled/**" />
|
2024-07-19 20:02:28 +02:00
|
|
|
|
<Compile Remove="Graphics/SpriteBatchExtensions.cs" />
|
|
|
|
|
<Compile Remove="Graphics/TextureExtensions.cs" />
|
|
|
|
|
<Compile Remove="Maths/NumberExtensions.cs" />
|
|
|
|
|
<Compile Remove="Maths/RandomExtensions.cs" />
|
2022-06-24 14:01:26 +02:00
|
|
|
|
<Compile Remove="Font/GenericBitmapFont.cs" />
|
|
|
|
|
</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>
|