-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stellar.Benchmarking.csproj
34 lines (28 loc) · 1.23 KB
/
Stellar.Benchmarking.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>$(DefineConstants);VistaDB</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>$(DefineConstants);VistaDB</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
<PackageReference Include="LiteDB" Version="5.0.19" />
<PackageReference Include="MessagePack" Version="2.5.140" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.4" />
<PackageReference Include="Stellar.FastDB" Version="1.0.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="VistaDB.6">
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Gibraltar Software\VistaDB 6\Redist\Asp.Net\VistaDB.6.dll</HintPath>
</Reference>
</ItemGroup>
</Project>