blob: a57b7409b69098d22d8c99d59865a29a4d42faa8 [file] [log] [blame]
Nicolas "Pixel" Noble5fb4ba02015-04-28 00:20:06 +02001<?xml version="1.0" encoding="utf-8"?>
jtattermusch97fb3f62014-12-08 15:13:41 -08002<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations">
4 <ProjectConfiguration Include="Debug|Win32">
5 <Configuration>Debug</Configuration>
6 <Platform>Win32</Platform>
7 </ProjectConfiguration>
zeliard292adfe2015-04-22 15:08:36 +09008 <ProjectConfiguration Include="Debug|x64">
9 <Configuration>Debug</Configuration>
10 <Platform>x64</Platform>
11 </ProjectConfiguration>
jtattermusch97fb3f62014-12-08 15:13:41 -080012 <ProjectConfiguration Include="Release|Win32">
13 <Configuration>Release</Configuration>
14 <Platform>Win32</Platform>
15 </ProjectConfiguration>
zeliard292adfe2015-04-22 15:08:36 +090016 <ProjectConfiguration Include="Release|x64">
17 <Configuration>Release</Configuration>
18 <Platform>x64</Platform>
19 </ProjectConfiguration>
jtattermusch97fb3f62014-12-08 15:13:41 -080020 </ItemGroup>
21 <PropertyGroup Label="Globals">
Craig Tiller02a7bed2015-08-31 15:54:05 -070022 <ProjectGuid>{8423B0C5-2428-CA10-82EF-7B5C1F3D8011}</ProjectGuid>
Jan Tattermuschec59bc72015-12-17 14:49:40 -080023 <IgnoreWarnIntDirInTempDetected>true</IgnoreWarnIntDirInTempDetected>
Jan Tattermusch44fc7202015-12-18 08:52:23 -080024 <IntDir>$(SolutionDir)IntDir\$(MSBuildProjectName)\</IntDir>
jtattermusch97fb3f62014-12-08 15:13:41 -080025 </PropertyGroup>
26 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
Jan Tattermusch8ff00a32015-04-20 18:43:06 -070027 <PropertyGroup Condition="'$(VisualStudioVersion)' == '10.0'" Label="Configuration">
28 <PlatformToolset>v100</PlatformToolset>
29 </PropertyGroup>
30 <PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0'" Label="Configuration">
31 <PlatformToolset>v110</PlatformToolset>
32 </PropertyGroup>
33 <PropertyGroup Condition="'$(VisualStudioVersion)' == '12.0'" Label="Configuration">
34 <PlatformToolset>v120</PlatformToolset>
35 </PropertyGroup>
Jan Tattermuschdf744bd2015-12-11 14:57:28 -080036 <PropertyGroup Condition="'$(VisualStudioVersion)' == '14.0'" Label="Configuration">
37 <PlatformToolset>v140</PlatformToolset>
38 </PropertyGroup>
Nicolas Noble563b8a22015-07-30 15:39:43 -070039 <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
jtattermusch97fb3f62014-12-08 15:13:41 -080040 <ConfigurationType>StaticLibrary</ConfigurationType>
41 <UseDebugLibraries>true</UseDebugLibraries>
jtattermusch97fb3f62014-12-08 15:13:41 -080042 <CharacterSet>Unicode</CharacterSet>
43 </PropertyGroup>
Nicolas Noble563b8a22015-07-30 15:39:43 -070044 <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
zeliard292adfe2015-04-22 15:08:36 +090045 <ConfigurationType>StaticLibrary</ConfigurationType>
46 <UseDebugLibraries>false</UseDebugLibraries>
47 <WholeProgramOptimization>true</WholeProgramOptimization>
48 <CharacterSet>Unicode</CharacterSet>
49 </PropertyGroup>
jtattermusch97fb3f62014-12-08 15:13:41 -080050 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
51 <ImportGroup Label="ExtensionSettings">
52 </ImportGroup>
Nicolas Noble563b8a22015-07-30 15:39:43 -070053 <ImportGroup Label="PropertySheets">
jtattermusch97fb3f62014-12-08 15:13:41 -080054 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Craig Tiller77fc4d32015-12-22 12:51:27 -080055 <Import Project="$(SolutionDir)\..\vsprojects\global.props" />
56 <Import Project="$(SolutionDir)\..\vsprojects\winsock.props" />
zeliard292adfe2015-04-22 15:08:36 +090057 </ImportGroup>
jtattermusch97fb3f62014-12-08 15:13:41 -080058 <PropertyGroup Label="UserMacros" />
Nicolas Noble563b8a22015-07-30 15:39:43 -070059 <PropertyGroup Condition="'$(Configuration)'=='Debug'">
Craig Tiller02a7bed2015-08-31 15:54:05 -070060 <TargetName>qps</TargetName>
Jan Tattermuschf6ff8f62015-02-11 14:43:11 -080061 </PropertyGroup>
Nicolas Noble563b8a22015-07-30 15:39:43 -070062 <PropertyGroup Condition="'$(Configuration)'=='Release'">
Craig Tiller02a7bed2015-08-31 15:54:05 -070063 <TargetName>qps</TargetName>
zeliard292adfe2015-04-22 15:08:36 +090064 </PropertyGroup>
Craig Tiller77fc4d32015-12-22 12:51:27 -080065 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
jtattermusch97fb3f62014-12-08 15:13:41 -080066 <ClCompile>
67 <PrecompiledHeader>NotUsing</PrecompiledHeader>
68 <WarningLevel>Level3</WarningLevel>
69 <Optimization>Disabled</Optimization>
Jan Tattermuschdf744bd2015-12-11 14:57:28 -080070 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
jtattermusch97fb3f62014-12-08 15:13:41 -080071 <SDLCheck>true</SDLCheck>
Nicolas Noble563b8a22015-07-30 15:39:43 -070072 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -070073 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -070074 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Jan Tattermuschec59bc72015-12-17 14:49:40 -080075 <MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild>
jtattermusch97fb3f62014-12-08 15:13:41 -080076 </ClCompile>
77 <Link>
78 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -070079 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
80 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
jtattermusch97fb3f62014-12-08 15:13:41 -080081 </Link>
82 </ItemDefinitionGroup>
Craig Tiller77fc4d32015-12-22 12:51:27 -080083
84 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
zeliard292adfe2015-04-22 15:08:36 +090085 <ClCompile>
86 <PrecompiledHeader>NotUsing</PrecompiledHeader>
87 <WarningLevel>Level3</WarningLevel>
88 <Optimization>Disabled</Optimization>
89 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
90 <SDLCheck>true</SDLCheck>
Nicolas Noble563b8a22015-07-30 15:39:43 -070091 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -070092 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -070093 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Jan Tattermuschec59bc72015-12-17 14:49:40 -080094 <MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild>
zeliard292adfe2015-04-22 15:08:36 +090095 </ClCompile>
96 <Link>
97 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -070098 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
99 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
zeliard292adfe2015-04-22 15:08:36 +0900100 </Link>
101 </ItemDefinitionGroup>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800102
103 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
jtattermusch97fb3f62014-12-08 15:13:41 -0800104 <ClCompile>
jtattermusch97fb3f62014-12-08 15:13:41 -0800105 <PrecompiledHeader>NotUsing</PrecompiledHeader>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800106 <WarningLevel>Level3</WarningLevel>
jtattermusch97fb3f62014-12-08 15:13:41 -0800107 <Optimization>MaxSpeed</Optimization>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800108 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
jtattermusch97fb3f62014-12-08 15:13:41 -0800109 <FunctionLevelLinking>true</FunctionLevelLinking>
110 <IntrinsicFunctions>true</IntrinsicFunctions>
jtattermusch97fb3f62014-12-08 15:13:41 -0800111 <SDLCheck>true</SDLCheck>
Nicolas Noble563b8a22015-07-30 15:39:43 -0700112 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700113 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700114 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Jan Tattermuschec59bc72015-12-17 14:49:40 -0800115 <MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild>
jtattermusch97fb3f62014-12-08 15:13:41 -0800116 </ClCompile>
117 <Link>
118 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700119 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
120 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
jtattermusch97fb3f62014-12-08 15:13:41 -0800121 <EnableCOMDATFolding>true</EnableCOMDATFolding>
122 <OptimizeReferences>true</OptimizeReferences>
123 </Link>
124 </ItemDefinitionGroup>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800125
126 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
zeliard292adfe2015-04-22 15:08:36 +0900127 <ClCompile>
zeliard292adfe2015-04-22 15:08:36 +0900128 <PrecompiledHeader>NotUsing</PrecompiledHeader>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800129 <WarningLevel>Level3</WarningLevel>
zeliard292adfe2015-04-22 15:08:36 +0900130 <Optimization>MaxSpeed</Optimization>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800131 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
zeliard292adfe2015-04-22 15:08:36 +0900132 <FunctionLevelLinking>true</FunctionLevelLinking>
133 <IntrinsicFunctions>true</IntrinsicFunctions>
zeliard292adfe2015-04-22 15:08:36 +0900134 <SDLCheck>true</SDLCheck>
Nicolas Noble563b8a22015-07-30 15:39:43 -0700135 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700136 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700137 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Jan Tattermuschec59bc72015-12-17 14:49:40 -0800138 <MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild>
zeliard292adfe2015-04-22 15:08:36 +0900139 </ClCompile>
140 <Link>
141 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700142 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
143 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
zeliard292adfe2015-04-22 15:08:36 +0900144 <EnableCOMDATFolding>true</EnableCOMDATFolding>
145 <OptimizeReferences>true</OptimizeReferences>
146 </Link>
147 </ItemDefinitionGroup>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800148
jtattermusch97fb3f62014-12-08 15:13:41 -0800149 <ItemGroup>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800150 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\client.h" />
151 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\driver.h" />
152 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\histogram.h" />
153 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\interarrival.h" />
vjpaic8034422016-01-19 15:32:42 -0800154 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\limit_cores.h" />
Craig Tiller77fc4d32015-12-22 12:51:27 -0800155 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\perf_db_client.h" />
156 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\qps_worker.h" />
157 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\report.h" />
158 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\server.h" />
159 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\stats.h" />
Craig Tiller521423c2016-02-22 22:22:22 -0800160 <ClInclude Include="$(SolutionDir)\..\test\cpp\qps\usage_timer.h" />
Craig Tiller77fc4d32015-12-22 12:51:27 -0800161 <ClInclude Include="$(SolutionDir)\..\test\cpp\util\benchmark_config.h" />
Craig Tillerf75fc122015-06-25 06:58:00 -0700162 </ItemGroup>
163 <ItemGroup>
Craig Tiller00f87022015-12-22 14:23:51 -0800164 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\messages.pb.cc">
ctiller2bbb6c42014-12-17 09:44:44 -0800165 </ClCompile>
Craig Tiller00f87022015-12-22 14:23:51 -0800166 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\messages.pb.h">
Craig Tiller02a7bed2015-08-31 15:54:05 -0700167 </ClInclude>
Craig Tiller00f87022015-12-22 14:23:51 -0800168 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\messages.grpc.pb.cc">
ctiller2bbb6c42014-12-17 09:44:44 -0800169 </ClCompile>
Craig Tiller00f87022015-12-22 14:23:51 -0800170 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\messages.grpc.pb.h">
vjpai52bfb252015-10-21 07:50:49 -0700171 </ClInclude>
Craig Tiller00f87022015-12-22 14:23:51 -0800172 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\payloads.pb.cc">
vjpai780a7f22015-11-04 00:19:09 -0800173 </ClCompile>
Craig Tiller00f87022015-12-22 14:23:51 -0800174 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\payloads.pb.h">
vjpai780a7f22015-11-04 00:19:09 -0800175 </ClInclude>
Craig Tiller00f87022015-12-22 14:23:51 -0800176 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\payloads.grpc.pb.cc">
vjpai780a7f22015-11-04 00:19:09 -0800177 </ClCompile>
Craig Tiller00f87022015-12-22 14:23:51 -0800178 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\payloads.grpc.pb.h">
vjpai780a7f22015-11-04 00:19:09 -0800179 </ClInclude>
Craig Tiller00f87022015-12-22 14:23:51 -0800180 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\stats.pb.cc">
vjpai52bfb252015-10-21 07:50:49 -0700181 </ClCompile>
Craig Tiller00f87022015-12-22 14:23:51 -0800182 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\stats.pb.h">
vjpai52bfb252015-10-21 07:50:49 -0700183 </ClInclude>
Craig Tiller00f87022015-12-22 14:23:51 -0800184 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\stats.grpc.pb.cc">
vjpai52bfb252015-10-21 07:50:49 -0700185 </ClCompile>
Craig Tiller00f87022015-12-22 14:23:51 -0800186 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\stats.grpc.pb.h">
Craig Tiller02a7bed2015-08-31 15:54:05 -0700187 </ClInclude>
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800188 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\control.pb.cc">
Nicolas "Pixel" Noble69dcff52016-01-14 00:33:55 +0100189 </ClCompile>
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800190 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\control.pb.h">
Nicolas "Pixel" Noble69dcff52016-01-14 00:33:55 +0100191 </ClInclude>
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800192 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\control.grpc.pb.cc">
Nicolas "Pixel" Noble69dcff52016-01-14 00:33:55 +0100193 </ClCompile>
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800194 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\control.grpc.pb.h">
Nicolas "Pixel" Noble69dcff52016-01-14 00:33:55 +0100195 </ClInclude>
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800196 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\services.pb.cc">
Nicolas "Pixel" Noble69dcff52016-01-14 00:33:55 +0100197 </ClCompile>
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800198 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\services.pb.h">
Nicolas "Pixel" Noble69dcff52016-01-14 00:33:55 +0100199 </ClInclude>
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800200 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\services.grpc.pb.cc">
Nicolas "Pixel" Noble69dcff52016-01-14 00:33:55 +0100201 </ClCompile>
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800202 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\services.grpc.pb.h">
Nicolas "Pixel" Noble69dcff52016-01-14 00:33:55 +0100203 </ClInclude>
Craig Tiller00f87022015-12-22 14:23:51 -0800204 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\perf_db.pb.cc">
Craig Tiller17ec5f92015-01-18 11:30:41 -0800205 </ClCompile>
Craig Tiller00f87022015-12-22 14:23:51 -0800206 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\perf_db.pb.h">
Craig Tiller02a7bed2015-08-31 15:54:05 -0700207 </ClInclude>
Craig Tiller00f87022015-12-22 14:23:51 -0800208 <ClCompile Include="$(SolutionDir)\..\src\proto\grpc\testing\perf_db.grpc.pb.cc">
Nicolas "Pixel" Noble010f1e72015-04-23 02:23:49 +0200209 </ClCompile>
Craig Tiller00f87022015-12-22 14:23:51 -0800210 <ClInclude Include="$(SolutionDir)\..\src\proto\grpc\testing\perf_db.grpc.pb.h">
Craig Tiller02a7bed2015-08-31 15:54:05 -0700211 </ClInclude>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800212 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\client_async.cc">
Craig Tiller17effab2015-08-04 08:19:36 -0700213 </ClCompile>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800214 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\client_sync.cc">
ctiller2bbb6c42014-12-17 09:44:44 -0800215 </ClCompile>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800216 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\driver.cc">
yang-gbe5f0592015-07-13 11:11:50 -0700217 </ClCompile>
vjpaic8034422016-01-19 15:32:42 -0800218 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\limit_cores.cc">
219 </ClCompile>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800220 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\perf_db_client.cc">
jtattermusch97fb3f62014-12-08 15:13:41 -0800221 </ClCompile>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800222 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\qps_worker.cc">
jtattermusch97fb3f62014-12-08 15:13:41 -0800223 </ClCompile>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800224 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\report.cc">
Craig Tiller17ec5f92015-01-18 11:30:41 -0800225 </ClCompile>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800226 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\server_async.cc">
Craig Tiller34cf2f32015-04-08 16:10:00 -0700227 </ClCompile>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800228 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\server_sync.cc">
Craig Tiller02a7bed2015-08-31 15:54:05 -0700229 </ClCompile>
Craig Tiller521423c2016-02-22 22:22:22 -0800230 <ClCompile Include="$(SolutionDir)\..\test\cpp\qps\usage_timer.cc">
Craig Tiller02a7bed2015-08-31 15:54:05 -0700231 </ClCompile>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800232 <ClCompile Include="$(SolutionDir)\..\test\cpp\util\benchmark_config.cc">
jtattermusch97fb3f62014-12-08 15:13:41 -0800233 </ClCompile>
jtattermusch97fb3f62014-12-08 15:13:41 -0800234 </ItemGroup>
Jan Tattermuschadeaf632015-02-12 17:23:13 -0800235 <ItemGroup>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800236 <ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\grpc_test_util\grpc_test_util.vcxproj">
Craig Tiller02a7bed2015-08-31 15:54:05 -0700237 <Project>{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}</Project>
Jan Tattermuschadeaf632015-02-12 17:23:13 -0800238 </ProjectReference>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800239 <ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\grpc++_test_util\grpc++_test_util.vcxproj">
Craig Tiller02a7bed2015-08-31 15:54:05 -0700240 <Project>{0BE77741-552A-929B-A497-4EF7ECE17A64}</Project>
Yang Gao7eb76cc2015-04-01 15:52:08 -0700241 </ProjectReference>
Craig Tiller77fc4d32015-12-22 12:51:27 -0800242 <ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\grpc++\grpc++.vcxproj">
Craig Tiller02a7bed2015-08-31 15:54:05 -0700243 <Project>{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}</Project>
Jan Tattermuschadeaf632015-02-12 17:23:13 -0800244 </ProjectReference>
245 </ItemGroup>
jtattermusch97fb3f62014-12-08 15:13:41 -0800246 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
247 <ImportGroup Label="ExtensionTargets">
248 </ImportGroup>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700249 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
250 <PropertyGroup>
251 <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
252 </PropertyGroup>
253 </Target>
jtattermusch97fb3f62014-12-08 15:13:41 -0800254</Project>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700255