-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathF23.SpaTemplates.csproj
28 lines (25 loc) · 1.25 KB
/
F23.SpaTemplates.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.3</PackageVersion>
<PackageId>F23.SpaTemplates</PackageId>
<Title>feature[23] ASP.NET Core SPA Templates</Title>
<Authors>feature[23]</Authors>
<Description>Templates for creating ASP.NET Core Single-Page-App web applications with Angular.</Description>
<PackageTags>dotnet-new;templates;feature23</PackageTags>
<TargetFramework>net6.0</TargetFramework>
<NoDefaultExcludes>true</NoDefaultExcludes>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/feature23/SpaTemplates</PackageProjectUrl>
<RepositoryUrl>https://github.com/feature23/SpaTemplates</RepositoryUrl>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**;templates\**\.angular;templates\**\dist;templates\**\node_modules" />
<Compile Remove="**\*" />
<None Include="logo.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>