2020-02-24 17:34:05 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
|
<IncludeContentInPack>true</IncludeContentInPack>
|
|
|
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
|
|
|
<ContentTargetFolders>content</ContentTargetFolders>
|
2020-05-21 12:20:40 +02:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2021-04-22 19:59:35 +02:00
|
|
|
|
<NoWarn>NU5128</NoWarn>
|
2020-02-24 17:34:05 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<PackageType>Template</PackageType>
|
|
|
|
|
<Title>MLEM Templates</Title>
|
|
|
|
|
<Authors>Ellpeck</Authors>
|
2020-09-28 20:53:39 +02:00
|
|
|
|
<Description>MLEM Library for Extending MonoGame cross-platform project templates</Description>
|
2021-07-01 05:00:59 +02:00
|
|
|
|
<PackageReleaseNotes>See the full changelog at https://mlem.ellpeck.de/CHANGELOG</PackageReleaseNotes>
|
2020-02-24 17:34:05 +01:00
|
|
|
|
<PackageTags>dotnet-new templates monogame ellpeck mlem utility extensions</PackageTags>
|
2020-05-21 02:22:55 +02:00
|
|
|
|
<PackageProjectUrl>https://mlem.ellpeck.de/</PackageProjectUrl>
|
2020-02-24 17:34:05 +01:00
|
|
|
|
<RepositoryUrl>https://github.com/Ellpeck/MLEM</RepositoryUrl>
|
2021-04-22 19:59:35 +02:00
|
|
|
|
<PackageIcon>Logo.png</PackageIcon>
|
2021-09-24 04:47:39 +02:00
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
2020-02-24 17:34:05 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="content\**\*" Exclude="content\**\.DS_Store;content\**\bin;content\**\obj" />
|
|
|
|
|
<Compile Remove="**\*" />
|
2021-04-22 19:59:35 +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" />
|
2020-02-24 17:34:05 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|