1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-31 20:33:38 +02:00
MLEM/MLEM.Startup/MLEM.Startup.FNA.csproj

39 lines
1.7 KiB
XML
Raw Normal View History

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>
<IsTrimmable>true</IsTrimmable>
2022-06-24 14:01:26 +02:00
<RootNamespace>MLEM.Startup</RootNamespace>
<DefineConstants>$(DefineConstants);FNA</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<Authors>Ellpeck</Authors>
<Description>MLEM Library for Extending FNA combined with some other useful libraries into a quick Game startup class</Description>
<PackageReleaseNotes>See the full changelog at https://mlem.ellpeck.de/CHANGELOG</PackageReleaseNotes>
<PackageTags>fna ellpeck mlem utility extensions</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>
2023-10-04 15:54:05 +02:00
<PackageReference Include="Coroutine" Version="2.1.5" />
2022-06-24 14:01:26 +02:00
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.FNA.csproj" />
<ProjectReference Include="..\MLEM\MLEM.FNA.csproj" />
2022-06-24 14:01:26 +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="" />
<None Include="../README.md" Pack="true" PackagePath="" />
2022-06-24 14:01:26 +02:00
</ItemGroup>
</Project>