|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <OutputType>Exe</OutputType> |
5 | | - <Configurations>Debug;Release;Fable;Fable3</Configurations> |
6 | | - <Platforms>AnyCPU</Platforms> |
7 | | - <LangVersion Condition=" '$(Configuration)' == 'Fable' OR '$(Configuration)' == 'Fable3' ">6.0</LangVersion> |
8 | | - <DefineConstants Condition=" '$(Configuration)' == 'Fable'">$(DefineConstants);FABLE_COMPILER;FABLE_COMPILER_FAKE</DefineConstants> |
9 | | - <DefineConstants Condition=" '$(Configuration)' == 'Fable3'">$(DefineConstants);FABLE_COMPILER;FABLE_COMPILER_3;FABLE_COMPILER_FAKE</DefineConstants> |
10 | | - <TargetFramework>net6.0</TargetFramework> |
11 | | - </PropertyGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>Exe</OutputType> |
| 5 | + <Configurations>Debug;Release;Fable;Fable3</Configurations> |
| 6 | + <Platforms>AnyCPU</Platforms> |
| 7 | + <LangVersion Condition=" '$(Configuration)' == 'Fable' OR '$(Configuration)' == 'Fable3' ">6.0</LangVersion> |
| 8 | + <DefineConstants Condition=" '$(Configuration)' == 'Fable'">$(DefineConstants);FABLE_COMPILER;FABLE_COMPILER_FAKE</DefineConstants> |
| 9 | + <DefineConstants Condition=" '$(Configuration)' == 'Fable3'">$(DefineConstants);FABLE_COMPILER;FABLE_COMPILER_3;FABLE_COMPILER_FAKE</DefineConstants> |
| 10 | + <TargetFramework>net6.0</TargetFramework> |
| 11 | + </PropertyGroup> |
12 | 12 |
|
13 | | - <ItemGroup> |
14 | | - <Compile Include="Util.fs" /> |
15 | | - <Compile Include="FSharpTests/General/Util.fs" /> |
16 | | - <Compile Include="FSharpTests/General/Splits.fs" /> |
17 | | - <Compile Include="FSharpTests/General/MonoidCompile.fs" /> |
18 | | - <Compile Include="FSharpTests/General/Monoid.fs" /> |
19 | | - <Compile Include="FSharpTests/General/Functor.fs" /> |
20 | | - <Compile Include="FSharpTests/General/Collections.fs" /> |
21 | | - <Compile Include="FSharpTests/General/Monad.fs" /> |
22 | | - <Compile Include="FSharpTests/General/Applicative.fs" /> |
23 | | - <Compile Include="FSharpTests/General/Alternative.fs" /> |
24 | | - <Compile Include="FSharpTests/General/Foldable.fs" /> |
25 | | - <Compile Include="FSharpTests/General/Indexable.fs" /> |
26 | | - <Compile Include="FSharpTests/General/Parsing.fs" /> |
27 | | - <Compile Include="FSharpTests/General/Traversable.fs" /> |
28 | | - <Compile Include="FSharpTests/General/Lensing.fs" /> |
29 | | - <Compile Include="FSharpTests/General/Numeric.fs" /> |
30 | | - <Compile Include="FSharpTests/General.fs" /> |
31 | | - <Compile Include="FSharpTests/Extensions.fs" /> |
32 | | - <Compile Include="Tests.fs" /> |
33 | | - </ItemGroup> |
| 13 | + <ItemGroup> |
| 14 | + <Compile Include="Util.fs" /> |
| 15 | + <Compile Include="FSharpTests/General/Util.fs" /> |
| 16 | + <Compile Include="FSharpTests/General/Splits.fs" /> |
| 17 | + <Compile Include="FSharpTests/General/MonoidCompile.fs" /> |
| 18 | + <Compile Include="FSharpTests/General/Monoid.fs" /> |
| 19 | + <Compile Include="FSharpTests/General/Functor.fs" /> |
| 20 | + <Compile Include="FSharpTests/General/Collections.fs" /> |
| 21 | + <Compile Include="FSharpTests/General/Monad.fs" /> |
| 22 | + <Compile Include="FSharpTests/General/Applicative.fs" /> |
| 23 | + <Compile Include="FSharpTests/General/Alternative.fs" /> |
| 24 | + <Compile Include="FSharpTests/General/Foldable.fs" /> |
| 25 | + <Compile Include="FSharpTests/General/Indexable.fs" /> |
| 26 | + <Compile Include="FSharpTests/General/Parsing.fs" /> |
| 27 | + <Compile Include="FSharpTests/General/Traversable.fs" /> |
| 28 | + <Compile Include="FSharpTests/General/Lensing.fs" /> |
| 29 | + <Compile Include="FSharpTests/General/Numeric.fs" /> |
| 30 | + <Compile Include="FSharpTests/General.fs" /> |
| 31 | + <Compile Include="FSharpTests/Extensions.fs" /> |
| 32 | + <Compile Include="Tests.fs" /> |
| 33 | + </ItemGroup> |
34 | 34 |
|
35 | 35 |
|
36 | | - <ItemGroup> |
37 | | - <PackageReference Include="Fable.Core" Version="3.2.5" /> |
38 | | - <PackageReference Include="Fable.Promise" Version="2.2.0" /> |
39 | | - <PackageReference Include="Fable.Fetch" Version="2.2.0" /> |
40 | | - <PackageReference Include="Fuchu" Version="1.2.0-beta-1" /> |
41 | | - </ItemGroup> |
| 36 | + <ItemGroup> |
| 37 | + <PackageReference Include="Fable.Core" Version="3.2.5" /> |
| 38 | + <PackageReference Include="Fable.Promise" Version="2.2.0" /> |
| 39 | + <PackageReference Include="Fable.Fetch" Version="2.2.0" /> |
| 40 | + <PackageReference Include="Fuchu" Version="1.2.0-beta-1" /> |
| 41 | + </ItemGroup> |
42 | 42 |
|
43 | | - <ItemGroup> |
44 | | - <ProjectReference Include="..\..\src\FSharpPlus\FSharpPlus.fsproj"> |
45 | | - <Private>True</Private> |
46 | | - </ProjectReference> |
47 | | - <PackageReference Update="FSharp.Core" Version="6.0.6" /> |
48 | | - </ItemGroup> |
| 43 | + <ItemGroup> |
| 44 | + <ProjectReference Include="..\..\src\FSharpPlus\FSharpPlus.fsproj"> |
| 45 | + <Private>True</Private> |
| 46 | + </ProjectReference> |
| 47 | + <PackageReference Update="FSharp.Core" Version="6.0.6" /> |
| 48 | + </ItemGroup> |
49 | 49 | </Project> |
0 commit comments