-
-
Notifications
You must be signed in to change notification settings - Fork 193
/
Fantomas.Core.fsproj
47 lines (47 loc) · 1.72 KB
/
Fantomas.Core.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
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>true</IsPackable>
<Tailcalls>true</Tailcalls>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="RangeHelpers.fsi" />
<Compile Include="RangeHelpers.fs" />
<Compile Include="Utils.fsi" />
<Compile Include="Utils.fs" />
<Compile Include="FormatConfig.fs" />
<Compile Include="SyntaxOak.fs" />
<Compile Include="ASTTransformer.fsi" />
<Compile Include="ASTTransformer.fs" />
<Compile Include="Version.fs" />
<Compile Include="Queue.fs" />
<Compile Include="Trivia.fsi" />
<Compile Include="Trivia.fs" />
<Compile Include="Defines.fsi" />
<Compile Include="Defines.fs" />
<Compile Include="CodeFormatterTypes.fs" />
<Compile Include="Context.fsi" />
<Compile Include="Context.fs" />
<Compile Include="CodePrinter.fsi" />
<Compile Include="CodePrinter.fs" />
<Compile Include="MultipleDefineCombinations.fsi" />
<Compile Include="MultipleDefineCombinations.fs" />
<Compile Include="CodeFormatterImpl.fsi" />
<Compile Include="CodeFormatterImpl.fs" />
<Compile Include="Validation.fsi" />
<Compile Include="Validation.fs" />
<Compile Include="Selection.fsi" />
<Compile Include="Selection.fs" />
<Compile Include="CodeFormatter.fsi" />
<Compile Include="CodeFormatter.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Core" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Fantomas.FCS\Fantomas.FCS.fsproj" />
</ItemGroup>
</Project>