-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathFable.Transforms.fsproj
More file actions
70 lines (70 loc) · 2.98 KB
/
Copy pathFable.Transforms.fsproj
File metadata and controls
70 lines (70 loc) · 2.98 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
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<TargetFramework>netstandard2.0</TargetFramework>
<OtherFlags>$(OtherFlags) --nowarn:3536</OtherFlags>
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="Global/Babel.fs" />
<Compile Include="Global/Fable.Core.fs" />
<Compile Include="Global/Metadata.fs" />
<Compile Include="Global/Prelude.fs" />
<Compile Include="Global/Compiler.fs" />
<Compile Include="Global/Naming.fs" />
<Compile Include="Python/Prelude.fs" />
<Compile Include="MonadicTrampoline.fs" />
<Compile Include="Transforms.Util.fs" />
<Compile Include="OverloadSuffix.fs" />
<Compile Include="FSharp2Fable.Util.fs" />
<Compile Include="ReplacementsInject.fs" />
<Compile Include="Replacements.Util.fs" />
<Compile Include="Python/Replacements.fs" />
<Compile Include="Rust/Replacements.fs" />
<Compile Include="Dart/Replacements.fs" />
<Compile Include="Beam/Prelude.fs" />
<Compile Include="Beam/Beam.AST.fs" />
<Compile Include="Beam/Replacements.fs" />
<Compile Include="Replacements.fs" />
<Compile Include="Replacements.Api.fs" />
<Compile Include="QuotationEmitter.fs" />
<Compile Include="FSharp2Fable.fsi" />
<Compile Include="FSharp2Fable.fs" />
<Compile Include="FableTransforms.fsi" />
<Compile Include="FableTransforms.fs" />
<Compile Include="Fable2Babel.fs" />
<Compile Include="Printer.fs" />
<Compile Include="BabelPrinter.fs" />
<Compile Include="Python/Python.AST.fs" />
<Compile Include="Python/Fable2Python.Types.fs" />
<Compile Include="Python/Fable2Python.Util.fs" />
<Compile Include="Python/Fable2Python.Annotation.fs" />
<Compile Include="Python/Fable2Python.Bases.fs" />
<Compile Include="Python/Fable2Python.Reflection.fs" />
<Compile Include="Python/Fable2Python.Transforms.fs" />
<Compile Include="Python/PythonPrinter.fs" />
<Compile Include="Python/PythonCompiler.fs" />
<Compile Include="Beam/Fable2Beam.Util.fs" />
<Compile Include="Beam/Fable2Beam.Reflection.fs" />
<Compile Include="Beam/Fable2Beam.fs" />
<Compile Include="Beam/ErlangPrinter.fs" />
<Compile Include="Php/Php.fs" />
<Compile Include="Php/Fable2Php.fs" />
<Compile Include="Php/PhpPrinter.fs" />
<Compile Include="Dart/Dart.fs" />
<Compile Include="Dart/Fable2Dart.fs" />
<Compile Include="Dart/DartPrinter.fs" />
<Compile Include="Rust/RustPrinter.fs" />
<Compile Include="Rust/Fable2Rust.fs" />
<Compile Include="State.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../Fable.AST/Fable.AST.fsproj" />
<ProjectReference Include="Rust/AST/Rust.AST.fsproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="../../lib/fcs/FSharp.Core.dll" />
<Reference Include="../../lib/fcs/FSharp.Compiler.Service.dll" />
</ItemGroup>
</Project>