-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathFSharp.Data.Benchmarks.fsproj
More file actions
36 lines (36 loc) · 1.55 KB
/
FSharp.Data.Benchmarks.fsproj
File metadata and controls
36 lines (36 loc) · 1.55 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<OutputType>Exe</OutputType>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<OtherFlags>$(OtherFlags) --warnon:1182 --nowarn:44</OtherFlags>
<Tailcalls>true</Tailcalls>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="../FSharp.Data.Tests/Data/**/*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<Compile Include="JsonBenchmarks.fs" />
<Compile Include="JsonStjBenchmarks.fs" />
<Compile Include="HtmlBenchmarks.fs" />
<Compile Include="CsvBenchmarks.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<None Include="paket.references" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FSharp.Data.Json.Core\FSharp.Data.Json.Core.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.Runtime.Utilities\FSharp.Data.Runtime.Utilities.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.Csv.Core\FSharp.Data.Csv.Core.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.Html.Core\FSharp.Data.Html.Core.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.Http\FSharp.Data.Http.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="6.0.1" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>