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

Side by Side Diff: third_party/grpc/src/csharp/Grpc.Core/Grpc.Core.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 <ProjectGuid>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</ProjectGuid>
7 <OutputType>Library</OutputType>
8 <RootNamespace>Grpc.Core</RootNamespace>
9 <AssemblyName>Grpc.Core</AssemblyName>
10 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
11 <NuGetPackageImportStamp>c0512805</NuGetPackageImportStamp>
12 <DocumentationFile>bin\$(Configuration)\Grpc.Core.Xml</DocumentationFile>
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 <DefineConstants>SIGNED</DefineConstants>
35 <ErrorReport>prompt</ErrorReport>
36 <WarningLevel>4</WarningLevel>
37 <SignAssembly>True</SignAssembly>
38 <AssemblyOriginatorKeyFile>..\keys\Grpc.snk</AssemblyOriginatorKeyFile>
39 </PropertyGroup>
40 <ItemGroup>
41 <Reference Include="System" />
42 <Reference Include="System.Interactive.Async">
43 <HintPath>..\packages\Ix-Async.1.2.5\lib\net45\System.Interactive.Async.dl l</HintPath>
44 </Reference>
45 </ItemGroup>
46 <ItemGroup>
47 <Compile Include="AsyncDuplexStreamingCall.cs" />
48 <Compile Include="AsyncServerStreamingCall.cs" />
49 <Compile Include="AsyncAuthInterceptor.cs" />
50 <Compile Include="CallCredentials.cs" />
51 <Compile Include="IClientStreamWriter.cs" />
52 <Compile Include="Internal\NativeMethods.cs" />
53 <Compile Include="Internal\PlatformApis.cs" />
54 <Compile Include="Internal\NativeExtension.cs" />
55 <Compile Include="Internal\UnmanagedLibrary.cs" />
56 <Compile Include="Internal\NativeMetadataCredentialsPlugin.cs" />
57 <Compile Include="Internal\INativeCall.cs" />
58 <Compile Include="IServerStreamWriter.cs" />
59 <Compile Include="IAsyncStreamWriter.cs" />
60 <Compile Include="IAsyncStreamReader.cs" />
61 <Compile Include="Logging\NullLogger.cs" />
62 <Compile Include="ServerPort.cs" />
63 <Compile Include="Version.cs" />
64 <Compile Include="Properties\AssemblyInfo.cs" />
65 <Compile Include="RpcException.cs" />
66 <Compile Include="Calls.cs" />
67 <Compile Include="AsyncClientStreamingCall.cs" />
68 <Compile Include="GrpcEnvironment.cs" />
69 <Compile Include="Status.cs" />
70 <Compile Include="StatusCode.cs" />
71 <Compile Include="Server.cs" />
72 <Compile Include="Channel.cs" />
73 <Compile Include="Internal\CallSafeHandle.cs" />
74 <Compile Include="Internal\ChannelSafeHandle.cs" />
75 <Compile Include="Internal\CompletionQueueSafeHandle.cs" />
76 <Compile Include="Internal\Enums.cs" />
77 <Compile Include="Internal\SafeHandleZeroIsInvalid.cs" />
78 <Compile Include="Internal\Timespec.cs" />
79 <Compile Include="Internal\GrpcThreadPool.cs" />
80 <Compile Include="Internal\ServerSafeHandle.cs" />
81 <Compile Include="Method.cs" />
82 <Compile Include="Internal\ServerCallHandler.cs" />
83 <Compile Include="Marshaller.cs" />
84 <Compile Include="ServerServiceDefinition.cs" />
85 <Compile Include="Utils\AsyncStreamExtensions.cs" />
86 <Compile Include="Utils\BenchmarkUtil.cs" />
87 <Compile Include="ChannelCredentials.cs" />
88 <Compile Include="Internal\ChannelArgsSafeHandle.cs" />
89 <Compile Include="Internal\AsyncCompletion.cs" />
90 <Compile Include="Internal\AsyncCallBase.cs" />
91 <Compile Include="Internal\AsyncCallServer.cs" />
92 <Compile Include="Internal\AsyncCall.cs" />
93 <Compile Include="Internal\ServerCredentialsSafeHandle.cs" />
94 <Compile Include="ServerCredentials.cs" />
95 <Compile Include="Metadata.cs" />
96 <Compile Include="Internal\MetadataArraySafeHandle.cs" />
97 <Compile Include="ClientBase.cs" />
98 <Compile Include="Internal\ServerCalls.cs" />
99 <Compile Include="ServerMethods.cs" />
100 <Compile Include="Internal\ClientRequestStream.cs" />
101 <Compile Include="Internal\ClientResponseStream.cs" />
102 <Compile Include="Internal\ServerRequestStream.cs" />
103 <Compile Include="Internal\ServerResponseStream.cs" />
104 <Compile Include="Internal\AtomicCounter.cs" />
105 <Compile Include="Internal\DebugStats.cs" />
106 <Compile Include="ServerCallContext.cs" />
107 <Compile Include="Internal\CompletionQueueEvent.cs" />
108 <Compile Include="Internal\CompletionRegistry.cs" />
109 <Compile Include="Internal\BatchContextSafeHandle.cs" />
110 <Compile Include="ChannelOptions.cs" />
111 <Compile Include="AsyncUnaryCall.cs" />
112 <Compile Include="VersionInfo.cs" />
113 <Compile Include="Internal\CStringSafeHandle.cs" />
114 <Compile Include="KeyCertificatePair.cs" />
115 <Compile Include="Logging\ILogger.cs" />
116 <Compile Include="Logging\ConsoleLogger.cs" />
117 <Compile Include="Internal\NativeLogRedirector.cs" />
118 <Compile Include="ChannelState.cs" />
119 <Compile Include="CallInvocationDetails.cs" />
120 <Compile Include="CallOptions.cs" />
121 <Compile Include="CompressionLevel.cs" />
122 <Compile Include="WriteOptions.cs" />
123 <Compile Include="ContextPropagationToken.cs" />
124 <Compile Include="Internal\CallCredentialsSafeHandle.cs" />
125 <Compile Include="Internal\ChannelCredentialsSafeHandle.cs" />
126 <Compile Include="Profiling\ProfilerEntry.cs" />
127 <Compile Include="Profiling\ProfilerScope.cs" />
128 <Compile Include="Profiling\IProfiler.cs" />
129 <Compile Include="Profiling\Profilers.cs" />
130 <Compile Include="Internal\DefaultSslRootsOverride.cs" />
131 <Compile Include="Utils\GrpcPreconditions.cs" />
132 </ItemGroup>
133 <ItemGroup>
134 <None Include="Grpc.Core.nuspec" />
135 <None Include="packages.config" />
136 </ItemGroup>
137 <Import Project="NativeDeps.targets" />
138 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
139 <ItemGroup>
140 <Folder Include="Resources\" />
141 </ItemGroup>
142 <ItemGroup>
143 <EmbeddedResource Include="..\..\..\etc\roots.pem">
144 <Link>Resources\roots.pem</Link>
145 </EmbeddedResource>
146 </ItemGroup>
147 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698