| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | <?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)' == '' ">x86</Platform>    <ProductVersion>10.0.0</ProductVersion>    <SchemaVersion>2.0</SchemaVersion>    <ProjectGuid>{C61154BA-DD4A-4838-8420-0162A28925E0}</ProjectGuid>    <OutputType>Exe</OutputType>    <RootNamespace>InteropClient</RootNamespace>    <AssemblyName>InteropClient</AssemblyName>    <StartupObject>Google.GRPC.Interop.Client</StartupObject>    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">    <DebugSymbols>true</DebugSymbols>    <DebugType>full</DebugType>    <Optimize>false</Optimize>    <OutputPath>bin\Debug</OutputPath>    <DefineConstants>DEBUG;</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>    <Externalconsole>true</Externalconsole>    <PlatformTarget>x86</PlatformTarget>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">    <DebugType>full</DebugType>    <Optimize>true</Optimize>    <OutputPath>bin\Release</OutputPath>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>    <Externalconsole>true</Externalconsole>    <PlatformTarget>x86</PlatformTarget>  </PropertyGroup>  <ItemGroup>    <Reference Include="Google.ProtocolBuffers, Version=2.4.1.521, Culture=neutral, PublicKeyToken=55f7125234beb589, processorArchitecture=MSIL">      <SpecificVersion>False</SpecificVersion>      <HintPath>..\packages\Google.ProtocolBuffers.2.4.1.521\lib\net40\Google.ProtocolBuffers.dll</HintPath>    </Reference>    <Reference Include="nunit.framework">      <HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>    </Reference>    <Reference Include="System" />  </ItemGroup>  <ItemGroup>    <Compile Include="Properties\AssemblyInfo.cs" />    <Compile Include="Client.cs" />  </ItemGroup>  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />  <ItemGroup>    <ProjectReference Include="..\GrpcCore\GrpcCore.csproj">      <Project>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</Project>      <Name>GrpcCore</Name>    </ProjectReference>    <ProjectReference Include="..\GrpcApi\GrpcApi.csproj">      <Project>{7DC1433E-3225-42C7-B7EA-546D56E27A4B}</Project>      <Name>GrpcApi</Name>    </ProjectReference>  </ItemGroup>  <ItemGroup>    <None Include="packages.config" />  </ItemGroup></Project>
 |