-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathHedgehog.Xunit.fsproj
More file actions
52 lines (44 loc) · 1.81 KB
/
Hedgehog.Xunit.fsproj
File metadata and controls
52 lines (44 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<TargetFramework>netstandard2.1</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<DebugType>Embedded</DebugType>
<EmbedAllSources>True</EmbedAllSources>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Description>Hedgehog with batteries for Xunit included.</Description>
<Authors>Alex Nguyen, Tyson Williams</Authors>
<PackageProjectUrl>https://github.com/hedgehogqa/fsharp-hedgehog-xunit</PackageProjectUrl>
<PackageTags>f# fsharp testing xunit</PackageTags>
<PackageIcon>hedgehog-logo.png</PackageIcon>
<Version>0.7.1</Version>
<PackageId>Hedgehog.Xunit</PackageId>
<PackageDescription>
Hedgehog with convenience attributes for xUnit.
- Test method arguments generated with a custom GenX.auto...
- ...or with a custom Generator.
- Property.check called for each test.
Docs at https://github.com/hedgehogqa/fsharp-hedgehog-xunit
</PackageDescription>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Hedgehog.Experimental" Version="0.9.0" />
<PackageReference Include="xunit.core" Version="2.9.3" />
</ItemGroup>
<ItemGroup>
<Compile Include="Exceptions.fs" />
<Compile Include="Attributes.fs" />
<Compile Include="InternalLogic.fs" />
<Compile Include="XunitOverrides.fs" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>$(AssemblyName).Tests.FSharp</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<None Include="../../img/hedgehog-logo.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>