forked from ant-design-blazor/ant-design-pro-blazor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
templates.csproj
34 lines (29 loc) Β· 1.4 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
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageType>Template</PackageType>
<PackageVersion>1.0</PackageVersion>
<PackageId>AntDesign.Templates</PackageId>
<Title>Ant Design Pro Blazor Templates</Title>
<Authors>ant-design-blazor</Authors>
<Description>An out-of-box UI solution for enterprise applications as a Blazor boilerplate.</Description>
<PackageProjectUrl>https://github.com/ant-design-blazor/ant-design-pro-blazor</PackageProjectUrl>
<RepositoryUrl>https://github.com/ant-design-blazor/ant-design-pro-blazor</RepositoryUrl>
<PackageTags>dotnet-new;templates;blazor;ant-design-blazor;ant-design</PackageTags>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>logo.png</PackageIcon>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<None Include="logo.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Content Include=".template.config\**\*" Exclude="**\bin\**;**\obj\**" />
<Content Include="**\src\**\*" Exclude="**\bin\**;**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>