forked from fsprojects/FSharp.Formatting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFSharp.Formatting.CodeFormat.fsproj
More file actions
31 lines (31 loc) · 1.1 KB
/
FSharp.Formatting.CodeFormat.fsproj
File metadata and controls
31 lines (31 loc) · 1.1 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Common\Collections.fs">
<Link>Common\Collections.fs</Link>
</Compile>
<Compile Include="..\Common\StringParsing.fs">
<Link>Common\StringParsing.fs</Link>
</Compile>
<Compile Include="Pervasive.fs" />
<Compile Include="Constants.fs" />
<Compile Include="CommentFilter.fs" />
<Compile Include="SourceCode.fs" />
<Compile Include="ToolTipReader.fs" />
<Compile Include="CodeFormatAgent.fs" />
<Compile Include="HtmlFormatting.fs" />
<Compile Include="LatexFormatting.fs" />
<Compile Include="PynbFormatting.fs" />
<Compile Include="CodeFormat.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FSharp.Formatting.Common\FSharp.Formatting.Common.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Core" />
<PackageReference Include="FSharp.Compiler.Service" />
</ItemGroup>
</Project>