-
Notifications
You must be signed in to change notification settings - Fork 299
/
Copy pathMicrosoft.Data.SqlClient.PerformanceTests.csproj
49 lines (48 loc) · 2.23 KB
/
Microsoft.Data.SqlClient.PerformanceTests.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>PerformanceTests</AssemblyName>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<Configurations>Debug;Release;</Configurations>
<IntermediateOutputPath>$(ObjFolder)$(Configuration).$(Platform).$(AssemblyName)</IntermediateOutputPath>
<OutputPath>$(BinFolder)$(Configuration).$(Platform).$(AssemblyName)</OutputPath>
<StartupObject>Microsoft.Data.SqlClient.PerformanceTests.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Remove="BenchmarkDotNet.Artifacts\**" />
<None Remove="BenchmarkDotNet.Artifacts\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".AssemblyAttributes" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(NetCoreSource)src\Microsoft.Data.SqlClient.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Runtime.Caching" Version="$(SystemRuntimeCachingVersion)" />
<PackageReference Include="BenchmarkDotNet" Version="$(BenchmarkDotNetVersion)" />
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
</ItemGroup>
<ItemGroup>
<None Include="datatypes.json" CopyToOutputDirectory="PreserveNewest" />
<None Include="runnerconfig.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<Compile Include="Config\Config.cs" />
<Compile Include="Config\Constants.cs" />
<Compile Include="Config\DataTypes.cs" />
<Compile Include="Config\BenchmarkConfig.cs" />
<Compile Include="DBFramework\Table.cs" />
<Compile Include="DBFramework\Column.cs" />
<Compile Include="DBFramework\DbUtils.cs" />
<Compile Include="DBFramework\TablePatterns.cs" />
<Compile Include="BenchmarkRunners\BaseRunner.cs" />
<Compile Include="BenchmarkRunners\SqlBulkCopyRunner.cs" />
<Compile Include="BenchmarkRunners\SqlConnectionRunner.cs" />
<Compile Include="BenchmarkRunners\SqlCommandRunner.cs" />
<Compile Include="BenchmarkRunners\DataTypeReaderRunner.cs" />
<Compile Include="BenchmarkRunners\DataTypeReaderAsyncRunner.cs" />
<Compile Include="Program.cs" />
</ItemGroup>
</Project>