mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-10-31 21:00:51 +01:00
34 lines
1.5 KiB
XML
34 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Authors>Ellpeck</Authors>
|
|
<Description>MLEM Library for Extending MonoGame 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>monogame 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>
|
|
<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">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../Media/Logo.png" Pack="true" PackagePath="" />
|
|
<None Include="../Docs/index.md" Pack="true" PackagePath="README.md" />
|
|
</ItemGroup>
|
|
</Project>
|