-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathFSharp.Data.Json.Core.fsproj
More file actions
32 lines (32 loc) · 1.48 KB
/
FSharp.Data.Json.Core.fsproj
File metadata and controls
32 lines (32 loc) · 1.48 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>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
<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>
</PropertyGroup>
<ItemGroup>
<Compile Include="JsonValue.fs" />
<Compile Include="JsonConversions.fs" />
<Compile Include="JsonExtensions.fs" />
<Compile Include="JsonDocument.fs" />
<Compile Include="JsonRuntime.fs" />
<Compile Include="MarkdownDocument.fs" />
<Compile Include="JsonInference.fs" />
<Compile Include="JsonSchema.fs" />
<Compile Include="../AssemblyInfo.Json.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.Http/FSharp.Data.Http.fsproj" />
<ProjectReference Include="../FSharp.Data.Runtime.Utilities/FSharp.Data.Runtime.Utilities.fsproj" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>