-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathTemplates.csproj
29 lines (24 loc) · 1.04 KB
/
Templates.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>1.7.5</PackageVersion>
<PackageId>Keboo.Dotnet.Templates</PackageId>
<Title>Keboo's .NET Templates</Title>
<Authors>Keboo</Authors>
<Description>.NET Templates built by Keboo</Description>
<PackageTags>Template;WPF;NuGet;Console</PackageTags>
<TargetFramework>net8.0</TargetFramework>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Keboo/DotnetTemplates</RepositoryUrl>
<PackageIcon>NuGetIcon.png</PackageIcon>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
<None Include="NuGetIcon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>