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

30 lines
1.3 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-05-28 00:49:29 +02:00
<Description>MLEM Library by Ellpeck for MonoGame combined with some other useful libraries into a quick Game startup class</Description>
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>
<PackageLicenseUrl>https://github.com/Ellpeck/MLEM/blob/master/LICENSE</PackageLicenseUrl>
2020-07-29 14:41:46 +02:00
<PackageIconUrl>https://raw.githubusercontent.com/Ellpeck/MLEM/master/Media/Logo.png</PackageIconUrl>
2019-08-06 16:33:49 +02:00
</PropertyGroup>
<ItemGroup>
2020-06-13 03:19:20 +02:00
<PackageReference Include="Coroutine" Version="2.0.0" />
2019-08-30 19:05:27 +02:00
<PackageReference Include="MonoGame.Framework.Portable" Version="3.7.1.189">
2019-08-06 16:33:49 +02:00
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
2019-08-09 23:43:50 +02:00
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.csproj" />
<ProjectReference Include="..\MLEM\MLEM.csproj" />
2019-08-06 16:33:49 +02:00
</ItemGroup>
</Project>