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:
commit
2fec5e69e3
14 changed files with 508 additions and 0 deletions
|
@ -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>
|
|
@ -0,0 +1,5 @@
|
|||
## Getting started
|
||||
|
||||
### Prerequisites
|
||||
|
||||
## Usage
|
|
@ -0,0 +1 @@
|
|||
{}
|
|
@ -0,0 +1 @@
|
|||
Place your templates to this folder.
|
Loading…
Add table
Add a link
Reference in a new issue