-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSharpCoreDB.Benchmarks.csproj
More file actions
52 lines (43 loc) · 2.16 KB
/
SharpCoreDB.Benchmarks.csproj
File metadata and controls
52 lines (43 loc) · 2.16 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
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\src\SharpCoreDB\SharpCoreDB.csproj" />
<ProjectReference Include="..\..\src\SharpCoreDB.Analytics\SharpCoreDB.Analytics.csproj" />
<ProjectReference Include="..\..\src\SharpCoreDB.VectorSearch\SharpCoreDB.VectorSearch.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.8" />
<PackageReference Include="Bogus" Version="35.6.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.5" />
<!-- Comparative Database Engines -->
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.5" />
<PackageReference Include="LiteDB" Version="6.0.0-prerelease.75" />
<PackageReference Include="Microsoft.VisualStudio.DiagnosticsHub.BenchmarkDotNetDiagnosers" Version="18.6.37125.3" />
<!-- Charting and Visualization -->
<PackageReference Include="ScottPlot" Version="5.1.58" />
<PackageReference Include="Markdig" Version="1.1.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="Comparative\" />
<Folder Include="Simple\" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.201" />
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Version>1.0.5</Version>
<LangVersion>14.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<!-- PublishAot disabled for benchmarks to enable reflection -->
<PublishAot>false</PublishAot>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ServerGarbageCollection>true</ServerGarbageCollection>
<PackageReleaseNotes>v1.0.5: Benchmarks updated: age index creation, grouped inserts/updates, fixed LiteDB transaction usage.</PackageReleaseNotes>
<!-- Benchmark project, not a NuGet package -->
<IsPackable>false</IsPackable>
</PropertyGroup>
</Project>