-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComparisons.SQLiteVSDoublets.csproj
More file actions
28 lines (22 loc) · 1.26 KB
/
Comparisons.SQLiteVSDoublets.csproj
File metadata and controls
28 lines (22 loc) · 1.26 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.9" />
<PackageReference Include="Platform.Diagnostics" Version="0.1.0" />
<PackageReference Include="System.Data.SQLite" Version="1.0.118" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Release'">
<PackageReference Include="Platform.Data.Doublets.Sequences" Version="0.5.2" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Debug' AND Exists('..\Data.Doublets.Sequences\csharp\Platform.Data.Doublets.Sequences\Platform.Data.Doublets.Sequences.csproj')">
<ProjectReference Include="..\Data.Doublets.Sequences\csharp\Platform.Data.Doublets.Sequences\Platform.Data.Doublets.Sequences.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Debug' AND !Exists('..\Data.Doublets.Sequences\csharp\Platform.Data.Doublets.Sequences\Platform.Data.Doublets.Sequences.csproj')">
<PackageReference Include="Platform.Data.Doublets.Sequences" Version="0.5.2" />
</ItemGroup>
</Project>