-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfable-python.fsproj
More file actions
29 lines (25 loc) · 989 Bytes
/
Copy pathfable-python.fsproj
File metadata and controls
29 lines (25 loc) · 989 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fable.Core" Version="5.2.0" />
<PackageReference Include="Fable.Python" Version="5.5.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="chapters/Introduction.fs" />
<Compile Include="chapters/Python.fs" />
<Compile Include="chapters/GettingStarted.fs" />
<Compile Include="chapters/Interop.fs" />
<Compile Include="chapters/Bindings.fs" />
<Compile Include="chapters/Compatibility.fs" />
<Compile Include="chapters/AsyncProgramming.fs" />
<Compile Include="chapters/Testing.fs" />
<Compile Include="chapters/FableV5.fs" />
<Compile Include="chapters/Pydantic.fs" />
<Compile Include="chapters/FastAPI.fs" />
<Compile Include="chapters/UnitsOfMeasure.fs" />
<Compile Include="chapters/Summary.fs" />
</ItemGroup>
</Project>