-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTemplate.csproj
27 lines (27 loc) · 1.47 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>
<!-- <DateVersion>$([System.DateTime]::Now.ToString(yyyy.M.d-Hmm))</DateVersion> -->
<DateVersion>$([System.DateTime]::Now.ToString(yyyy.M.d))-preview</DateVersion>
</PropertyGroup>
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>$(DateVersion)</PackageVersion>
<PackageLicenseExpression>0BSD</PackageLicenseExpression>
<PackageId>McNerdius.TailBlazorTemplates</PackageId>
<Title>TailBlazor</Title>
<Authors>McNerdius</Authors>
<Description>The default blazorwasm template adapted with full Tailwind CSS integration, including optimal tailwindcss CLI incremental JIT, nesting, and Tailwind syntax in scoped CSS files.</Description>
<PackageTags>blazor;tailwind;tailwindcss;template</PackageTags>
<TargetFramework>net7.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<RepositoryUrl>https://github.com/McNerdius/TailBlazor-Templates</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<Content Include="TailBlazorWasm\**\*;TailBlazorWasm\**\.gitignore" Exclude="**\bin\**;**\obj\**;**\node_modules\**;**\*.min.css" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>