-
Notifications
You must be signed in to change notification settings - Fork 5
/
FSharp.Mobile.Templates.proj
26 lines (26 loc) · 1.23 KB
/
FSharp.Mobile.Templates.proj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>FSharp.Mobile.Templates</PackageId>
<Title>FSharp.Mobile.Templates</Title>
<Description>.NET Core SDK templates for bootstrapping new mobile projects in F#.</Description>
<Authors>Fabulous contributors</Authors>
<PackageProjectUrl>https://github.com/fabulous-dev/FSharp.Mobile.Templates</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/fabulous-dev/FSharp.Mobile.Templates.git</RepositoryUrl>
<PackageTags>dotnet-new;templates;mobile;fsharp</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageType>Template</PackageType>
<NoBuild>true</NoBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<NoDefaultExcludes>true</NoDefaultExcludes>
<VersionPrefix>8.0.0</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<IncludeContentInPack>true</IncludeContentInPack>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\**\bin\**;templates\**\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>