Skip to content

Commit fcc58c6

Browse files
authored
HTTP benchmarking tool
1 parent dca681e commit fcc58c6

File tree

4 files changed

+441
-1
lines changed

4 files changed

+441
-1
lines changed

benchmarks.sln

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25029.0
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{995FCFF9-E5F6-4BDD-8E5B-FBDEA21145F9}"
77
EndProject
@@ -35,6 +35,8 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Benchmarks.ClientJob", "src
3535
EndProject
3636
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Benchmarks.ServerJob", "src\Benchmarks.ServerJob\Benchmarks.ServerJob.xproj", "{0748A92D-3AC6-4406-B09C-0BF07A030DD5}"
3737
EndProject
38+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpBenchmark", "experimental\HttpBenchmark\HttpBenchmark.xproj", "{174DC3AC-F883-4B85-BE90-EA5B7BB01961}"
39+
EndProject
3840
Global
3941
GlobalSection(SolutionConfigurationPlatforms) = preSolution
4042
Debug|Any CPU = Debug|Any CPU
@@ -129,6 +131,14 @@ Global
129131
{0748A92D-3AC6-4406-B09C-0BF07A030DD5}.Release|Any CPU.Build.0 = Release|Any CPU
130132
{0748A92D-3AC6-4406-B09C-0BF07A030DD5}.Release|x86.ActiveCfg = Release|Any CPU
131133
{0748A92D-3AC6-4406-B09C-0BF07A030DD5}.Release|x86.Build.0 = Release|Any CPU
134+
{174DC3AC-F883-4B85-BE90-EA5B7BB01961}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
135+
{174DC3AC-F883-4B85-BE90-EA5B7BB01961}.Debug|Any CPU.Build.0 = Debug|Any CPU
136+
{174DC3AC-F883-4B85-BE90-EA5B7BB01961}.Debug|x86.ActiveCfg = Debug|Any CPU
137+
{174DC3AC-F883-4B85-BE90-EA5B7BB01961}.Debug|x86.Build.0 = Debug|Any CPU
138+
{174DC3AC-F883-4B85-BE90-EA5B7BB01961}.Release|Any CPU.ActiveCfg = Release|Any CPU
139+
{174DC3AC-F883-4B85-BE90-EA5B7BB01961}.Release|Any CPU.Build.0 = Release|Any CPU
140+
{174DC3AC-F883-4B85-BE90-EA5B7BB01961}.Release|x86.ActiveCfg = Release|Any CPU
141+
{174DC3AC-F883-4B85-BE90-EA5B7BB01961}.Release|x86.Build.0 = Release|Any CPU
132142
EndGlobalSection
133143
GlobalSection(SolutionProperties) = preSolution
134144
HideSolutionNode = FALSE
@@ -145,5 +155,6 @@ Global
145155
{716F7F93-BC1D-4B2C-BF1C-20051CAF7BB7} = {995FCFF9-E5F6-4BDD-8E5B-FBDEA21145F9}
146156
{FFE0CFA5-ADCB-4E63-9B2D-DBC48A3C8364} = {995FCFF9-E5F6-4BDD-8E5B-FBDEA21145F9}
147157
{0748A92D-3AC6-4406-B09C-0BF07A030DD5} = {995FCFF9-E5F6-4BDD-8E5B-FBDEA21145F9}
158+
{174DC3AC-F883-4B85-BE90-EA5B7BB01961} = {C2EB60CC-CA5A-4E49-A3F8-4432FB117869}
148159
EndGlobalSection
149160
EndGlobal
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
5+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
6+
</PropertyGroup>
7+
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" />
8+
<PropertyGroup Label="Globals">
9+
<ProjectGuid>174dc3ac-f883-4b85-be90-ea5b7bb01961</ProjectGuid>
10+
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
11+
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\</OutputPath>
12+
</PropertyGroup>
13+
<PropertyGroup>
14+
<SchemaVersion>2.0</SchemaVersion>
15+
</PropertyGroup>
16+
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
17+
</Project>

0 commit comments

Comments
 (0)