2019-08-06 16:33:49 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-09-14 19:24:00 +02:00
|
|
|
|
|
2019-08-06 16:33:49 +02:00
|
|
|
|
<PropertyGroup>
|
2022-09-14 21:17:43 +02:00
|
|
|
|
<TargetFrameworks>net452;netstandard2.0;net6.0</TargetFrameworks>
|
2020-05-21 12:20:40 +02:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2021-11-30 11:46:06 +01:00
|
|
|
|
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
|
2022-10-31 18:33:53 +01:00
|
|
|
|
<IsTrimmable>true</IsTrimmable>
|
2019-08-06 16:33:49 +02:00
|
|
|
|
</PropertyGroup>
|
2022-09-14 19:24:00 +02:00
|
|
|
|
|
2019-08-06 16:33:49 +02:00
|
|
|
|
<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-07-01 05:00:59 +02:00
|
|
|
|
<PackageReleaseNotes>See the full changelog at https://mlem.ellpeck.de/CHANGELOG</PackageReleaseNotes>
|
2019-08-06 16:33:49 +02:00
|
|
|
|
<PackageTags>monogame ellpeck mlem utility extensions</PackageTags>
|
2020-05-21 02:22:55 +02:00
|
|
|
|
<PackageProjectUrl>https://mlem.ellpeck.de/</PackageProjectUrl>
|
2019-08-06 16:33:49 +02:00
|
|
|
|
<RepositoryUrl>https://github.com/Ellpeck/MLEM</RepositoryUrl>
|
2021-04-22 19:59:35 +02:00
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<PackageIcon>Logo.png</PackageIcon>
|
2021-09-24 04:47:39 +02:00
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
2019-08-06 16:33:49 +02:00
|
|
|
|
</PropertyGroup>
|
2022-09-14 19:24:00 +02:00
|
|
|
|
|
2019-08-06 16:33:49 +02:00
|
|
|
|
<ItemGroup>
|
2023-03-29 21:54:30 +02:00
|
|
|
|
<PackageReference Include="Coroutine" Version="2.1.5" />
|
2021-04-22 19:59:35 +02:00
|
|
|
|
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.csproj" />
|
2022-06-26 14:19:57 +02:00
|
|
|
|
<ProjectReference Include="..\MLEM\MLEM.csproj" />
|
2022-09-14 19:24:00 +02:00
|
|
|
|
|
2021-04-22 19:26:07 +02:00
|
|
|
|
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641">
|
2019-08-06 16:33:49 +02:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2022-09-14 19:24:00 +02:00
|
|
|
|
|
2019-08-06 16:33:49 +02:00
|
|
|
|
<ItemGroup>
|
2021-05-29 18:06:20 +02:00
|
|
|
|
<None Include="../Media/Logo.png" Pack="true" PackagePath="" />
|
2021-09-24 04:50:42 +02:00
|
|
|
|
<None Include="../Docs/index.md" Pack="true" PackagePath="README.md" />
|
2019-08-06 16:33:49 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|