-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlazorStatic.Templates.csproj
38 lines (27 loc) · 1.33 KB
/
BlazorStatic.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.0</PackageVersion>
<PackageId>BlazorStatic.Templates</PackageId>
<Title>BlazorStatic Project Templates</Title>
<Authors>tesar.tech</Authors>
<Description>Templates for creating project for static websites using BlazorStatic.</Description>
<PackageTags>dotnet-new;templates;blazor;static;website;generator;BlazorStatic</PackageTags>
<TargetFramework>net9.0</TargetFramework>
<!-- Include content in the NuGet package -->
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/BlazorStatic/BlazorStatic/</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<!-- Include all template files, excluding build folders -->
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<!-- Remove any files from compilation, as these are templates -->
<Compile Remove="**\*" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>