-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathFSharp.Control.TaskSeq.SmokeTests.fsproj
More file actions
41 lines (36 loc) · 1.76 KB
/
FSharp.Control.TaskSeq.SmokeTests.fsproj
File metadata and controls
41 lines (36 loc) · 1.76 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Content Remove="C:\Users\Abel\.nuget\packages\fsharp.control.taskseq\0.3.0\contentFiles\any\netstandard2.1\release-notes.txt" />
</ItemGroup>
<ItemGroup>
<Compile Include="TestUtils.fs" />
<Compile Include="SmokeTests.fs" />
<Compile Include="TaskSeq.PocTests.fs" />
</ItemGroup>
<ItemGroup>
<!--
IMPORTANT: Our smoketests use the highest RTM (non-alpha) FSharp.Core, contrary
to the main test project, which uses the lowest possible denominator (6.0.1)
By NOT including the reference, the F# compiler will automatically choose the
highest version available.
This ensures that, if we have a forwards compat issue, we will get an error.
-->
<PackageReference Include="FSharp.Control.TaskSeq" Version="0.4.0" />
<PackageReference Include="FsToolkit.ErrorHandling.TaskResult" Version="4.15.1" />
<PackageReference Include="FsUnit.xUnit" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.8.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>