| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 | <?xml version="1.0" encoding="utf-8"?><Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">  <PropertyGroup>    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>    <ProjectGuid>{3D166931-BA2D-416E-95A3-D36E8F6E90B9}</ProjectGuid>    <OutputType>Exe</OutputType>    <RootNamespace>Grpc.IntegrationTesting.Client</RootNamespace>    <AssemblyName>Grpc.IntegrationTesting.Client</AssemblyName>    <StartupObject>Grpc.IntegrationTesting.Client.Program</StartupObject>    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>    <NuGetPackageImportStamp>dfa56e6c</NuGetPackageImportStamp>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">    <DebugSymbols>true</DebugSymbols>    <DebugType>full</DebugType>    <Optimize>false</Optimize>    <OutputPath>bin\Debug</OutputPath>    <DefineConstants>DEBUG;</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>    <PlatformTarget>AnyCPU</PlatformTarget>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">    <DebugType>pdbonly</DebugType>    <Optimize>true</Optimize>    <OutputPath>bin\Release</OutputPath>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>    <PlatformTarget>AnyCPU</PlatformTarget>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseSigned|AnyCPU' ">    <DebugType>pdbonly</DebugType>    <Optimize>true</Optimize>    <OutputPath>bin\ReleaseSigned</OutputPath>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>    <SignAssembly>True</SignAssembly>    <AssemblyOriginatorKeyFile>..\keys\Grpc.snk</AssemblyOriginatorKeyFile>  </PropertyGroup>  <ItemGroup>    <Reference Include="System" />    <Reference Include="System.Net" />    <Reference Include="System.Net.Http" />    <Reference Include="System.Net.Http.WebRequest" />    <Reference Include="BouncyCastle.Crypto">      <HintPath>..\packages\BouncyCastle.1.7.0\lib\Net40-Client\BouncyCastle.Crypto.dll</HintPath>    </Reference>    <Reference Include="Newtonsoft.Json">      <HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>    </Reference>    <Reference Include="log4net">      <HintPath>..\packages\log4net.2.0.3\lib\net40-full\log4net.dll</HintPath>    </Reference>    <Reference Include="Google.Apis.Core">      <HintPath>..\packages\Google.Apis.Core.1.16.0\lib\net45\Google.Apis.Core.dll</HintPath>    </Reference>    <Reference Include="Zlib.Portable">      <HintPath>..\packages\Zlib.Portable.Signed.1.11.0\lib\portable-net4+sl5+wp8+win8+wpa81+MonoTouch+MonoAndroid\Zlib.Portable.dll</HintPath>    </Reference>    <Reference Include="Google.Apis">      <HintPath>..\packages\Google.Apis.1.16.0\lib\net45\Google.Apis.dll</HintPath>    </Reference>    <Reference Include="Google.Apis.PlatformServices">      <HintPath>..\packages\Google.Apis.1.16.0\lib\net45\Google.Apis.PlatformServices.dll</HintPath>    </Reference>    <Reference Include="Google.Apis.Auth">      <HintPath>..\packages\Google.Apis.Auth.1.16.0\lib\net45\Google.Apis.Auth.dll</HintPath>    </Reference>    <Reference Include="Google.Apis.Auth.PlatformServices">      <HintPath>..\packages\Google.Apis.Auth.1.16.0\lib\net45\Google.Apis.Auth.PlatformServices.dll</HintPath>    </Reference>  </ItemGroup>  <ItemGroup>    <Compile Include="..\Grpc.Core\Version.cs">      <Link>Version.cs</Link>    </Compile>    <Compile Include="Program.cs" />    <Compile Include="Properties\AssemblyInfo.cs" />  </ItemGroup>  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />  <ItemGroup>    <ProjectReference Include="..\Grpc.IntegrationTesting\Grpc.IntegrationTesting.csproj">      <Project>{C61154BA-DD4A-4838-8420-0162A28925E0}</Project>      <Name>Grpc.IntegrationTesting</Name>    </ProjectReference>    <ProjectReference Include="..\Grpc.Core\Grpc.Core.csproj">      <Project>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</Project>      <Name>Grpc.Core</Name>    </ProjectReference>  </ItemGroup>  <ItemGroup>    <None Include="Grpc.IntegrationTesting.Client.project.json" />    <None Include="packages.config" />  </ItemGroup></Project>
 |