mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 05:10:50 +01:00
29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Authors>Ellpeck</Authors>
|
|
<Description>MLEM Library by Ellpeck for MonoGame combined with some other useful libraries into a quick Game startup class</Description>
|
|
<PackageTags>monogame ellpeck mlem utility extensions</PackageTags>
|
|
<PackageProjectUrl>https://mlem.ellpeck.de/</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/Ellpeck/MLEM</RepositoryUrl>
|
|
<PackageLicenseUrl>https://github.com/Ellpeck/MLEM/blob/master/LICENSE</PackageLicenseUrl>
|
|
<PackageIconUrl>https://raw.githubusercontent.com/Ellpeck/MLEM/master/Logo.png</PackageIconUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Coroutine" Version="2.0.0" />
|
|
<PackageReference Include="MonoGame.Framework.Portable" Version="3.7.1.189">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.csproj" />
|
|
<ProjectReference Include="..\MLEM\MLEM.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|