-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathFSharpPlusFable.Tests.fsproj
More file actions
49 lines (43 loc) · 2.01 KB
/
FSharpPlusFable.Tests.fsproj
File metadata and controls
49 lines (43 loc) · 2.01 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Configurations>Debug;Release;Fable</Configurations>
<Platforms>AnyCPU</Platforms>
<DefineConstants Condition=" '$(Configuration)' == 'Fable'">$(DefineConstants);FABLE_COMPILER;FABLE_COMPILER_FAKE</DefineConstants>
<DefineConstants Condition=" '$(Configuration)' == 'Fable4'">$(DefineConstants);FABLE_COMPILER;FABLE_COMPILER_4;FABLE_COMPILER_FAKE</DefineConstants>
<TargetFramework>net8.0</TargetFramework>
<OtherFlags>--nowarn:3520 $(OtherFlags)</OtherFlags>
</PropertyGroup>
<ItemGroup>
<Compile Include="Util.fs" />
<Compile Include="FSharpTests/General/Util.fs" />
<Compile Include="FSharpTests/General/Splits.fs" />
<Compile Include="FSharpTests/General/MonoidCompile.fs" />
<Compile Include="FSharpTests/General/Monoid.fs" />
<Compile Include="FSharpTests/General/Functor.fs" />
<Compile Include="FSharpTests/General/Collections.fs" />
<Compile Include="FSharpTests/General/Monad.fs" />
<Compile Include="FSharpTests/General/Applicative.fs" />
<Compile Include="FSharpTests/General/Alternative.fs" />
<Compile Include="FSharpTests/General/Foldable.fs" />
<Compile Include="FSharpTests/General/Indexable.fs" />
<Compile Include="FSharpTests/General/Parsing.fs" />
<Compile Include="FSharpTests/General/Traversable.fs" />
<Compile Include="FSharpTests/General/Lensing.fs" />
<Compile Include="FSharpTests/General/Numeric.fs" />
<Compile Include="FSharpTests/General.fs" />
<Compile Include="FSharpTests/Extensions.fs" />
<Compile Include="Tests.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fable.Core" Version="3.2.5" />
<PackageReference Include="Fable.Promise" Version="2.2.0" />
<PackageReference Include="Fable.Fetch" Version="2.2.0" />
<PackageReference Include="Fuchu" Version="1.2.0-beta-1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FSharpPlus\FSharpPlus.fsproj">
<Private>True</Private>
</ProjectReference>
</ItemGroup>
</Project>