-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathFSharp.Formatting.Markdown.fsproj
More file actions
32 lines (32 loc) · 1.15 KB
/
FSharp.Formatting.Markdown.fsproj
File metadata and controls
32 lines (32 loc) · 1.15 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</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="MarkdownModel.fs" />
<Compile Include="MarkdownInlineParser.fs" />
<Compile Include="MarkdownTableParser.fs" />
<Compile Include="MarkdownBlockParser.fs" />
<Compile Include="MarkdownUtils.fs" />
<Compile Include="HtmlFormatting.fs" />
<Compile Include="LatexFormatting.fs" />
<Compile Include="FsxFormatting.fs" />
<Compile Include="MarkdownFormatting.fs" />
<Compile Include="PynbFormatting.fs" />
<Compile Include="Markdown.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FSharp.Formatting.Common\FSharp.Formatting.Common.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Compiler.Service" />
<PackageReference Include="FSharp.Core" />
</ItemGroup>
</Project>