-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplates.fsproj
33 lines (27 loc) · 1.21 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
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- General info -->
<Description>dotnet templates for Fable.Lit</Description>
<Copyright>Copyright 2020 Angel D. Munoz</Copyright>
<Authors>Angel Munoz</Authors>
<!-- Build config -->
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<!-- NuGet config -->
<PackageType>Template</PackageType>
<PackageId>Fable.Lit.Templates</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<PackageTags>templates;fable;lit;lit-html;F#</PackageTags>
<PackageProjectUrl>https://github.com/AngelMunoz/Fable.Lit.Templates</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/AngelMunoz/Fable.Lit.Templates</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>