-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSupremeDotnetApiTemplate.csproj
More file actions
36 lines (32 loc) · 1.54 KB
/
Copy pathSupremeDotnetApiTemplate.csproj
File metadata and controls
36 lines (32 loc) · 1.54 KB
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.3.0</PackageVersion>
<PackageId>Supreme.Dotnet.Api.Template</PackageId>
<Title>Supreme API Template</Title>
<Authors>Onur Kapçık</Authors>
<Description>Template to use when creating a .NET API</Description>
<PackageTags>dotnet-new;templates;dotnet-api-template</PackageTags>
<TargetFramework>netstandard2.1</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<RepositoryUrl>https://github.com/kapozade/dotnet-api-template</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<NeutralLanguage>en-US</NeutralLanguage>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<NoDefaultExcludes>true</NoDefaultExcludes>
<Copyright>Copyright (c) Onur Kapçık 2023.</Copyright>
<PackageProjectUrl>https://github.com/kapozade/dotnet-api-template</PackageProjectUrl>
<PackageIcon>bricks.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="LICENSE" Pack="true" PackagePath="" />
<None Include="images\bricks.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>