-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathFSharpPlus.Tests.fsproj
More file actions
63 lines (63 loc) · 2.76 KB
/
FSharpPlus.Tests.fsproj
File metadata and controls
63 lines (63 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="'$(CompilerTest)' == 'true'">
<FscToolPath>$(FSC_ToolPathCompilerBuild)</FscToolPath>
<FscToolExe>$(FSC_ExePathCompilerBuild)</FscToolExe>
</PropertyGroup>
<PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<LangVersion Condition=" '$(Configuration)' == 'Fable' ">6.0</LangVersion>
<IsPackable>false</IsPackable>
<Configurations>Debug;Release;Fable;Test</Configurations>
<Platforms>AnyCPU</Platforms>
<DefineConstants Condition=" '$(Configuration)' == 'Test'">$(DefineConstants);TEST_TRACE</DefineConstants>
<DefineConstants Condition=" '$(Configuration)' == 'Fable'">$(DefineConstants);FABLE_COMPILER</DefineConstants>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Helpers.fs" />
<Compile Include="Data.fs" />
<Compile Include="General.fs" />
<Compile Include="Applicatives.fs" />
<Compile Include="Monads.fs" />
<Compile Include="Splits.fs" />
<Compile Include="Monoid.fs" />
<Compile Include="Parsing.fs" />
<Compile Include="Folds.fs" />
<Compile Include="Traversals.fs" />
<Compile Include="Indexables.fs" />
<Compile Include="Collections.fs" />
<Compile Include="Validations.fs" />
<Compile Include="Task.fs" />
<Compile Include="ValueTask.fs" />
<Compile Include="Asyncs.fs" />
<Compile Include="Free.fs" />
<Compile Include="SeqT.fs" />
<Compile Include="ComputationExpressions.fs" />
<Compile Include="Lens.fs" />
<Compile Include="Extensions.fs" />
<Compile Include="BifoldableTests.fs" />
<Compile Include="Matrix.fs" />
<Compile Include="TypeLevel.fs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FSharpPlus\FSharpPlus.fsproj">
<Private>True</Private>
</ProjectReference>
<ProjectReference Include="..\CSharpLib\CSharpLib.csproj" />
<ProjectReference Include="..\..\src\FSharpPlus.TypeLevel\FSharpPlus.TypeLevel.fsproj" />
<ProjectReference Include="..\..\src\FSharpPlus.TypeLevel\Providers\FSharpPlus.Providers.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Runtime" Version="4.3.1" />
<PackageReference Include="MathNet.Numerics.FSharp" Version="4.8.1" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="FsCheck" Version="2.16.5" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="FsCheck.NUnit" Version="2.16.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
</ItemGroup>
</Project>