forked from thautwarm/Typed-BNF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTBNF.fsproj
36 lines (31 loc) · 1.26 KB
/
TBNF.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- <OutputType>Exe</OutputType> -->
<TargetFramework>net6.0</TargetFramework>
<NoWarn>3370</NoWarn>
<!-- <DefineConstants>DEBUG</DefineConstants> -->
</PropertyGroup>
<ItemGroup>
<Compile Include="FableSedlex/CodeGen.fs" />
<Compile Include="FableSedlex/Sedlex.fs" />
<Compile Include="FableSedlex/CodeGen.Python.fs" />
<!-- <Compile Include="lark_fs/Lark.fs" /> -->
<Compile Include="src/Utils.fs" />
<Compile Include="src/Grammar.fs" />
<Compile Include="src/Exceptions.fs" />
<Compile Include="src/MacroResolve.fs" />
<Compile Include="src/Op.fs" />
<Compile Include="src/Unification.fs" />
<Compile Include="src/Analysis.fs" />
<Compile Include="src/Backends.Common.fs" />
<Compile Include="src/Backends.PythonLark.fs" />
<Compile Include="src/Backends.OCamlMenhir.fs" />
<Compile Include="src/Backends.CSharpAntlr.fs" />
<Compile Include="src/APIs.fs" />
<Compile Include="src/Main.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fable.Core.Experimental" Version="4.0.0-alpha-021" />
<PackageReference Include="Fable.Python" Version="0.16.0" />
</ItemGroup>
</Project>