-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKgh02017.Templates.editorconfig.csproj
36 lines (30 loc) · 1.49 KB
/
Kgh02017.Templates.editorconfig.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
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.2.0</PackageVersion>
<PackageId>Kgh02017.Templates.editorconfig</PackageId>
<Title>kgh02017 .editorconfig template</Title>
<Authors>Taku Izumi</Authors>
<Description>Templates that creates .editorconfig</Description>
<PackageTags>dotnet-new;templates;kgh02017;editorconfig</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<PackageProjectUrl>https://github.com/kgh02017/EditorConfig</PackageProjectUrl>
<License>MIT</License>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryUrl>https://github.com/kgh02017/EditorConfig</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>kgh02017_logo.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<None Include="kgh02017_logo.png" Pack="true" PackagePath=""/>
<None Include="README.md" Pack="true" PackagePath="\"/>
<Compile Remove="**\*" />
</ItemGroup>
</Project>