-
Notifications
You must be signed in to change notification settings - Fork 0
/
Abblix.Templates.csproj
42 lines (36 loc) · 1.95 KB
/
Abblix.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
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- The package metadations on https://learn.microsoft.com/en-us/nuget/create-packages/package-authoring-best-practices -->
<PackageId>Abblix.Templates</PackageId>
<PackageVersion>1.0</PackageVersion>
<Title>Abblix .NET Project Templates</Title>
<Authors>Abblix LLP</Authors>
<Description>ASP.NET Core WebAPI project templates developed by Abblix LLP.</Description>
<PackageTags>aspnetcore webapi react typescript vite frontend openidconnect oauth2 authentication security identityserver abblix</PackageTags>
<PackageProjectUrl>https://github.com/Abblix/Templates</PackageProjectUrl>
<RepositoryUrl>https://github.com/Abblix/Templates</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Abblix.png</PackageIcon>
<!-- 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="Abblix.png" Link="README.md" Pack="true" PackagePath="" />
<Content Include=".\Nuget\README.md" Link="README.md" Pack="true" PackagePath="" />
<Content Include="**\*" Exclude=".*\**;*;**\bin\**;**\obj\**;**\node_modules\**;**\.idea\**;Nuget\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>