1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-23 09:03:38 +02:00
MLEM/MLEM.Startup/MLEM.Startup.csproj

33 lines
1.4 KiB
XML
Raw Normal View History

2019-08-06 16:33:49 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2019-08-06 16:33:49 +02:00
</PropertyGroup>
<PropertyGroup>
<Authors>Ellpeck</Authors>
2020-09-28 20:53:39 +02:00
<Description>MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class</Description>
2021-06-28 15:38:30 +02:00
<PackageReleaseNotes>See the full changelog at https://github.com/Ellpeck/MLEM/blob/main/CHANGELOG.md</PackageReleaseNotes>
2019-08-06 16:33:49 +02:00
<PackageTags>monogame ellpeck mlem utility extensions</PackageTags>
<PackageProjectUrl>https://mlem.ellpeck.de/</PackageProjectUrl>
2019-08-06 16:33:49 +02:00
<RepositoryUrl>https://github.com/Ellpeck/MLEM</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Logo.png</PackageIcon>
2019-08-06 16:33:49 +02:00
</PropertyGroup>
<ItemGroup>
2021-05-29 18:06:20 +02:00
<PackageReference Include="Coroutine" Version="2.1.1" />
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.csproj" />
<ProjectReference Include="..\MLEM\MLEM.csproj" />
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641">
2019-08-06 16:33:49 +02:00
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
2021-05-29 18:06:20 +02:00
<None Include="../Media/Logo.png" Pack="true" PackagePath="" />
2019-08-06 16:33:49 +02:00
</ItemGroup>
</Project>