-
Notifications
You must be signed in to change notification settings - Fork 0
/
Template.csproj
27 lines (22 loc) · 1.13 KB
/
Template.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.3</PackageVersion>
<PackageId>Blazor.TailwindCSS.BUnit</PackageId>
<Title>Blazor Server App + TailwindCSS + BUnit</Title>
<Authors>Andrew Johnson</Authors>
<Description>Template for creating a Blazor server app with TailwindCSS and BUnit</Description>
<Summary>Template for creating a Blazor server app with TailwindCSS and BUnit</Summary>
<PackageTags>dotnet-new;templates;blazor;tailwindcss;bunit</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**;templates\**\node_modules\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>