-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathFable.Python.Test.fsproj
More file actions
37 lines (37 loc) · 1.35 KB
/
Fable.Python.Test.fsproj
File metadata and controls
37 lines (37 loc) · 1.35 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<LangVersion>preview</LangVersion>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../src/Fable.Python.fsproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="TestAst.fs" />
<Compile Include="TestAsyncIO.fs" />
<Compile Include="TestBuiltins.fs" />
<Compile Include="TestBuiltinsAttr.fs" />
<Compile Include="TestHeapq.fs" />
<Compile Include="TestQueue.fs" />
<Compile Include="TestThreading.fs" />
<Compile Include="TestTraceback.fs" />
<Compile Include="TestOs.fs" />
<Compile Include="TestJson.fs" />
<Compile Include="TestLogging.fs" />
<Compile Include="TestMath.fs" />
<Compile Include="TestRandom.fs" />
<Compile Include="TestBase64.fs" />
<Compile Include="TestString.fs" />
<Compile Include="TestPydantic.fs" />
<Compile Include="TestFastAPI.fs" />
<Compile Include="TestTypes.fs" />
<Compile Include="TestTesting.fs" />
<Compile Include="Main.fs" />
</ItemGroup>
<Import Project="..\.paket\Paket.Restore.targets" />
</Project>