| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | <?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>Library</OutputType>    <RootNamespace>Grpc.IntegrationTesting</RootNamespace>    <AssemblyName>Grpc.IntegrationTesting</AssemblyName>    <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="nunit.framework">      <HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>    </Reference>    <Reference Include="System" />    <Reference Include="Google.ProtocolBuffers">      <HintPath>..\packages\Google.ProtocolBuffers.2.4.1.521\lib\net40\Google.ProtocolBuffers.dll</HintPath>    </Reference>  </ItemGroup>  <ItemGroup>    <Compile Include="Properties\AssemblyInfo.cs" />    <Compile Include="TestServiceGrpc.cs" />    <Compile Include="Empty.cs" />    <Compile Include="Messages.cs" />    <Compile Include="InteropClientServerTest.cs" />    <Compile Include="TestServiceImpl.cs" />    <Compile Include="InteropServer.cs" />    <Compile Include="InteropClient.cs" />    <Compile Include="TestCredentials.cs" />  </ItemGroup>  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />  <ItemGroup>    <ProjectReference Include="..\Grpc.Core\Grpc.Core.csproj">      <Project>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</Project>      <Name>Grpc.Core</Name>    </ProjectReference>  </ItemGroup>  <ItemGroup>    <None Include="packages.config" />    <None Include="proto\test.proto" />    <None Include="proto\empty.proto" />    <None Include="proto\messages.proto" />    <None Include="data\README">      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>    </None>    <None Include="data\ca.pem">      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>    </None>    <None Include="data\server1.key">      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>    </None>    <None Include="data\server1.pem">      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>    </None>  </ItemGroup>  <ItemGroup>    <Folder Include="proto\" />    <Folder Include="data\" />  </ItemGroup></Project>
 |