-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSqlBench.csproj
More file actions
45 lines (40 loc) · 1.69 KB
/
SqlBench.csproj
File metadata and controls
45 lines (40 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<Title>SqlBench</Title>
<PackageProjectUrl>https://github.com/xledger/SqlBench</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git@github.com:xledger/SqlBench.git</RepositoryUrl>
<PackageTags>sql server; benchmark</PackageTags>
<PackAsTool>True</PackAsTool>
<Description>A console tool for benchmarking sql.</Description>
<Version>$(VersionPrefix)</Version>
<AssemblyVersion>1.0.1</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="TestToml\**" />
<EmbeddedResource Remove="TestToml\**" />
<None Remove="TestToml\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JsonDiffPatch.Net" Version="2.3.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Spectre.Console" Version="0.47.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.47.0" />
<PackageReference Include="Spectre.Console.Json" Version="0.47.0" />
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
<PackageReference Include="Tomlyn" Version="0.16.2" />
<PackageReference Include="Xledger.Sql" Version="1.0.0-rc0" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>