2022-06-24 14:01:26 +02:00
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
2023-11-22 10:39:13 +01:00
<TargetFrameworks > net452;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.Ui</RootNamespace>
<DefineConstants > $(DefineConstants);FNA</DefineConstants>
</PropertyGroup>
<PropertyGroup >
<Authors > Ellpeck</Authors>
<Description > A mouse, keyboard, gamepad and touch ready Ui system for FNA that features automatic anchoring, sizing and several ready-to-use element types</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 ui user interface graphical gui system mouse keyboard gamepad touch</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 >
2022-12-08 17:02:22 +01:00
<PackageReference Include= "TextCopy" Version= "6.2.0" Condition= "'$(TargetFramework)'!='net452'" />
2022-06-26 14:19:57 +02:00
<ProjectReference Include= "..\MLEM\MLEM.FNA.csproj" />
2022-06-24 14:01:26 +02:00
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>
</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>