-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtemplates.fsproj
28 lines (23 loc) · 1.06 KB
/
templates.fsproj
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>
<!-- General info -->
<Description>dotnet templates for Fun.Blazor</Description>
<!-- Build config -->
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<!-- NuGet config -->
<PackageType>Template</PackageType>
<PackageId>Fun.Blazor.Templates</PackageId>
<PackageVersion>4.1.1</PackageVersion>
<PackageTags>templates;blazor;fun-blazor;fsharp</PackageTags>
<PackageProjectUrl>https://github.com/slaveOftime/Fun.Blazor.Samples</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/slaveOftime/Fun.Blazor.Samples</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>