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.
This commit is contained in:
Louis Seubert 2024-03-19 22:43:10 +01:00
commit 2fec5e69e3
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
14 changed files with 508 additions and 0 deletions

View file

@ -0,0 +1,40 @@
<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>

View file

@ -0,0 +1,5 @@
## Getting started
### Prerequisites
## Usage

View file

@ -0,0 +1 @@
Place your templates to this folder.