Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: third_party/grpc/src/csharp/Grpc.Examples.Tests/Grpc.Examples.Tests.csproj

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso ft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>10.0.0</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{143B1C29-C442-4BE0-BF3F-A8F92288AC9F}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <RootNamespace>Grpc.Examples.Tests</RootNamespace>
11 <AssemblyName>Grpc.Examples.Tests</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 </PropertyGroup>
14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
15 <DebugSymbols>true</DebugSymbols>
16 <DebugType>full</DebugType>
17 <Optimize>false</Optimize>
18 <OutputPath>bin\Debug</OutputPath>
19 <DefineConstants>DEBUG;</DefineConstants>
20 <ErrorReport>prompt</ErrorReport>
21 <WarningLevel>4</WarningLevel>
22 </PropertyGroup>
23 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
24 <DebugType>pdbonly</DebugType>
25 <Optimize>true</Optimize>
26 <OutputPath>bin\Release</OutputPath>
27 <ErrorReport>prompt</ErrorReport>
28 <WarningLevel>4</WarningLevel>
29 </PropertyGroup>
30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseSigned|An yCPU' ">
31 <DebugType>pdbonly</DebugType>
32 <Optimize>true</Optimize>
33 <OutputPath>bin\ReleaseSigned</OutputPath>
34 <ErrorReport>prompt</ErrorReport>
35 <WarningLevel>4</WarningLevel>
36 <SignAssembly>True</SignAssembly>
37 <AssemblyOriginatorKeyFile>..\keys\Grpc.snk</AssemblyOriginatorKeyFile>
38 </PropertyGroup>
39 <ItemGroup>
40 <Reference Include="Google.Protobuf, Version=3.0.0.0, Culture=neutral, Publi cKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
41 <SpecificVersion>False</SpecificVersion>
42 <HintPath>..\packages\Google.Protobuf.3.0.0-beta2\lib\portable-net45+netco re45+wpa81+wp8\Google.Protobuf.dll</HintPath>
43 </Reference>
44 <Reference Include="nunit.framework">
45 <HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
46 </Reference>
47 <Reference Include="System" />
48 <Reference Include="System.Interactive.Async, Version=1.2.0.0, Culture=neutr al, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
49 <SpecificVersion>False</SpecificVersion>
50 <HintPath>..\packages\Ix-Async.1.2.5\lib\net45\System.Interactive.Async.dl l</HintPath>
51 </Reference>
52 </ItemGroup>
53 <ItemGroup>
54 <Compile Include="..\Grpc.Core\Version.cs">
55 <Link>Version.cs</Link>
56 </Compile>
57 <Compile Include="Properties\AssemblyInfo.cs" />
58 <Compile Include="MathClientServerTests.cs" />
59 </ItemGroup>
60 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
61 <ItemGroup>
62 <ProjectReference Include="..\Grpc.Core\Grpc.Core.csproj">
63 <Project>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</Project>
64 <Name>Grpc.Core</Name>
65 </ProjectReference>
66 <ProjectReference Include="..\Grpc.Examples\Grpc.Examples.csproj">
67 <Project>{7DC1433E-3225-42C7-B7EA-546D56E27A4B}</Project>
68 <Name>Grpc.Examples</Name>
69 </ProjectReference>
70 </ItemGroup>
71 <ItemGroup>
72 <None Include="packages.config" />
73 </ItemGroup>
74 <ItemGroup>
75 <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
76 </ItemGroup>
77 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698