1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-11 03:38:45 +02:00
MLEM/MLEM.Templates/MLEM.Templates.csproj

32 lines
1.4 KiB
XML
Raw Normal View History

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>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<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>
<PackageProjectUrl>https://mlem.ellpeck.de/</PackageProjectUrl>
2020-02-24 17:34:05 +01:00
<RepositoryUrl>https://github.com/Ellpeck/MLEM</RepositoryUrl>
<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="**\*" />
<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>