-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSharpCoreDB.DebugBenchmark.csproj
More file actions
33 lines (28 loc) · 1.23 KB
/
SharpCoreDB.DebugBenchmark.csproj
File metadata and controls
33 lines (28 loc) · 1.23 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>14.0</LangVersion>
<IsPackable>false</IsPackable>
<Version>1.0.5</Version>
<PackageId>SharpCoreDB.DebugBenchmark</PackageId>
<Authors>MPCoreDeveloper</Authors>
<Company>SharpCoreDB</Company>
<Description>Debug benchmark harness for SharpCoreDB.</Description>
<PackageReleaseNotes>v1.0.5: Stabilized benchmark setup; fixed transaction overlaps; added age index creation.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\SharpCoreDB\SharpCoreDB.csproj" />
<ProjectReference Include="..\..\tests\SharpCoreDB.Benchmarks\SharpCoreDB.Benchmarks.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.3" />
<PackageReference Include="LiteDB" Version="6.0.0-prerelease.77" />
<PackageReference Include="Bogus" Version="35.6.5" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.103" />
</ItemGroup>
</Project>