-
Notifications
You must be signed in to change notification settings - Fork 287
/
Copy pathFSharp.Data.Html.Core.fsproj
34 lines (34 loc) · 1.61 KB
/
FSharp.Data.Html.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<OtherFlags>$(OtherFlags) --warnon:1182 --nowarn:10001 --nowarn:44</OtherFlags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageIcon>logo.png</PackageIcon>
<!-- always have tailcalls on for design time compiler add-in to allow repo to compile in DEBUG, see https://github.com/fsprojects/FSharp.Data/issues/1410 -->
<Tailcalls>true</Tailcalls>
<DefineConstants>$(DefineConstants);HIDE_REPRESENTATION</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="HtmlCssSelectors.fs" />
<Compile Include="HtmlCharRefs.fs" />
<Compile Include="HtmlNode.fs" />
<Compile Include="HtmlParser.fs" />
<Compile Include="HtmlOperations.fs" />
<Compile Include="HtmlCssSelectorExtensions.fs" />
<Compile Include="HtmlActivePatterns.fs" />
<Compile Include="HtmlInference.fs" />
<Compile Include="HtmlRuntime.fs" />
<Compile Include="..\AssemblyInfo.Html.Core.fs" />
<Compile Include="InternalsVisibleTo.fs" />
<None Include="..\..\docs\img\logo.png" Pack="true" PackagePath="\" />
<None Include="paket.references" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FSharp.Data.Csv.Core\FSharp.Data.Csv.Core.fsproj" />
<ProjectReference Include="..\FSharp.Data.Runtime.Utilities\FSharp.Data.Runtime.Utilities.fsproj" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>