-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCSharpDB.Benchmarks.csproj
More file actions
32 lines (28 loc) · 1.69 KB
/
Copy pathCSharpDB.Benchmarks.csproj
File metadata and controls
32 lines (28 loc) · 1.69 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.8" />
<PackageReference Include="Microsoft.VisualStudio.DiagnosticsHub.BenchmarkDotNetDiagnosers" Version="18.7.37220.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\CSharpDB.Client\CSharpDB.Client.csproj" />
<ProjectReference Include="..\..\src\CSharpDB.Daemon\CSharpDB.Daemon.csproj" />
<ProjectReference Include="..\..\src\CSharpDB.Engine\CSharpDB.Engine.csproj" />
<ProjectReference Include="..\..\src\CSharpDB.Data\CSharpDB.Data.csproj" />
<ProjectReference Include="..\..\src\CSharpDB.EntityFrameworkCore\CSharpDB.EntityFrameworkCore.csproj" />
<ProjectReference Include="..\..\src\CSharpDB.Execution\CSharpDB.Execution.csproj" />
<ProjectReference Include="..\..\src\CSharpDB.Generators\CSharpDB.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\src\CSharpDB.Sql\CSharpDB.Sql.csproj" />
<ProjectReference Include="..\..\src\CSharpDB.Storage\CSharpDB.Storage.csproj" />
<ProjectReference Include="..\..\src\CSharpDB.Storage.Diagnostics\CSharpDB.Storage.Diagnostics.csproj" />
</ItemGroup>
</Project>