-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathFSharpPlus.Docs.fsproj
More file actions
61 lines (59 loc) · 2.43 KB
/
FSharpPlus.Docs.fsproj
File metadata and controls
61 lines (59 loc) · 2.43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="'$(CompilerTest)' == 'true'">
<FscToolPath>$(FSC_ToolPathCompilerBuild)</FscToolPath>
<FscToolExe>$(FSC_ExePathCompilerBuild)</FscToolExe>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<Configurations>Debug;Release;Fable</Configurations>
<Platforms>AnyCPU</Platforms>
<TargetFramework>net7.0</TargetFramework>
<DefineConstants>$(DefineConstants);APPLICATIVE_FIX</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="Samples\*.fsx" />
<Compile Include="..\..\docsrc\content\applicative-functors.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\computation-expressions.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\extension-methods.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\extensions.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\generic-doc.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\lens.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\numerics.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\operators-common.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\tutorial.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\parsing.fsx">
<Link>Docs\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\type-*.fsx">
<Link>Docs\Type\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="..\..\docsrc\content\abstraction-*.fsx">
<Link>Docs\Abstraction\%(FileName)%(Extension)</Link>
</Compile>
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FSharpPlus\FSharpPlus.fsproj" />
<ProjectReference Include="..\..\src\FSharpPlus.TypeLevel\FSharpPlus.TypeLevel.fsproj" />
<PackageReference Update="FSharp.Core" Version="6.0.6" />
<PackageReference Include="MathNet.Numerics.FSharp" Version="4.8.1" />
</ItemGroup>
</Project>