forked from fsprojects/FSharp.Formatting
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFSharp.Formatting.Literate.fsproj
More file actions
44 lines (42 loc) · 2.1 KB
/
FSharp.Formatting.Literate.fsproj
File metadata and controls
44 lines (42 loc) · 2.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
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Include="paket.references" />
<Compile Include="..\Common\AssemblyInfo.fs">
<Link>Common\AssemblyInfo.fs</Link>
</Compile>
<Compile Include="..\Common\Collections.fs">
<Link>Common\Collections.fs</Link>
</Compile>
<Compile Include="..\Common\StringParsing.fs">
<Link>Common\StringParsing.fs</Link>
</Compile>
<Compile Include="Document.fs" />
<Compile Include="Evaluator.fs" />
<Compile Include="Contexts.fs" />
<Compile Include="ParseScript.fs" />
<Compile Include="ParseMarkdown.fs" />
<Compile Include="Transformations.fs" />
<Compile Include="Formatting.fs" />
<Compile Include="Literate.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FSharp.Formatting.CSharpFormat\FSharp.Formatting.CSharpFormat.csproj" PrivateAssets="all" />
<ProjectReference Include="..\FSharp.Formatting.CodeFormat\FSharp.Formatting.CodeFormat.fsproj" PrivateAssets="all" />
<ProjectReference Include="..\FSharp.Formatting.Common\FSharp.Formatting.Common.fsproj" PrivateAssets="all" />
<ProjectReference Include="..\FSharp.Formatting.Markdown\FSharp.Formatting.Markdown.fsproj" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<!-- ugly hack: inline p2p libraries in NuGet package
workaround for https://github.com/NuGet/Home/issues/3891 -->
<Content Include="bin\$(Configuration)\$(TargetFramework)\CSharpFormat.*" PackagePath="lib/$(TargetFramework)" />
<Content Include="bin\$(Configuration)\$(TargetFramework)\FSharp.CodeFormat.*" PackagePath="lib/$(TargetFramework)" />
<Content Include="bin\$(Configuration)\$(TargetFramework)\FSharp.Formatting.Common.*" PackagePath="lib/$(TargetFramework)" />
<Content Include="bin\$(Configuration)\$(TargetFramework)\FSharp.Markdown.*" PackagePath="lib/$(TargetFramework)" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>