build/templating/Geekeey.DotNet.Common.ProjectTemplates/Geekeey.DotNet.Common.ProjectTemplates.csproj
Louis Seubert 2fec5e69e3
feat: initial project setup
Setup initial project with default layout for creating a new repsoitory.
This project will contain everything related to build infra and tools.
2024-03-19 22:43:10 +01:00

40 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Geekeey.DotNet.Common.ProjectTemplates</PackageId>
<PackageVersion>1.0</PackageVersion>
<Title>Common geekeey project templates</Title>
<Authors>Geekeey</Authors>
<Description>A template for creating new items within geekeey</Description>
<PackageTags>geekeey;template;</PackageTags>
<PackageProjectUrl>https://git.geekeey.de/geekeey/build</PackageProjectUrl>
<!-- Keep package type as 'Template' to show the package as a template package on nuget.org and make your template available in dotnet new search.-->
<PackageType>Template</PackageType>
<TargetFramework>net8.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<LocalizeTemplates>false</LocalizeTemplates>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.TemplateEngine.Tasks" Version="*" PrivateAssets="all" IsImplicitlyDefined="true"/>
</ItemGroup>
<ItemGroup>
<Content Include="content\**\*" Exclude="content\**\bin\**;content\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>