-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSprout.fsproj
More file actions
42 lines (36 loc) · 1.68 KB
/
Sprout.fsproj
File metadata and controls
42 lines (36 loc) · 1.68 KB
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
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>dlidstrom.Sprout</PackageId>
<Version>0.0.1-dev</Version>
<Title>Sprout: BDD Testing for F#</Title>
<Description>Sprout is a Behavior-Driven Development (BDD) testing framework for F# that allows you to write tests in a natural language style, making it easier to understand and maintain.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/dlidstrom/Sprout</PackageProjectUrl>
<PackageIcon>sprout.png</PackageIcon>
<Authors>Daniel Lidström</Authors>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- enables warnings for untyped string interpolation -->
<WarnOn>3579</WarnOn>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.Github" Version="10.0.203" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<Compile Include="Sprout.fs" />
</ItemGroup>
<ItemGroup>
<None Include="Readme.md" Pack="true" PackagePath="\" />
<None Include="sprout.png" Pack="true" PackagePath="\" />
<None Include="logo.png" Pack="true" PackagePath="\" />
<None Include="out.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>