-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNuGetPackage.fsproj
30 lines (23 loc) · 998 Bytes
/
NuGetPackage.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.4</PackageVersion>
<PackageId>Bolero.Tdd.Template</PackageId>
<Title>Bolero TDD template</Title>
<Authors>Anders Ladegaard Marchsteiner</Authors>
<Description>A Bolero template to use for test driven development.</Description>
<PackageTags>dotnet-new;templates;bolero;tdd</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<Content Include="src\**;.template.config\**" Exclude="src\**\bin\**;src\**\obj\**" />
<Content Include="BoleroTdd.sln" />
<Content Include="README.md" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>