-
Notifications
You must be signed in to change notification settings - Fork 0
/
ForEvolve.Conventions.csproj
29 lines (24 loc) · 1.23 KB
/
ForEvolve.Conventions.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>2.0.0</PackageVersion>
<PackageId>ForEvolve.Conventions.Templates</PackageId>
<Title>ForEvolve Coding Conventions Templates</Title>
<Authors>Carl-Hugo Marcotte</Authors>
<Description>Templates that creates files to enforce coding conventions.</Description>
<PackageTags>dotnet-new;templates;ForEvolve;editorconfig;prettierrc;prettier</PackageTags>
<PackageProjectUrl>https://github.com/ForEvolve/ForEvolve.Conventions</PackageProjectUrl>
<License>MIT</License>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryUrl>https://github.com/ForEvolve/ForEvolve.Conventions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>