Skip to content
Snippets Groups Projects
Grpc.Core.csproj 7.12 KiB
Newer Older
<?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>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Grpc.Core</RootNamespace>
    <AssemblyName>Grpc.Core</AssemblyName>
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    <NuGetPackageImportStamp>c0512805</NuGetPackageImportStamp>
    <DocumentationFile>bin\$(Configuration)\Grpc.Core.Xml</DocumentationFile>
  </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>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseSigned|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\ReleaseSigned</OutputPath>
    <DefineConstants>SIGNED</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <SignAssembly>True</SignAssembly>
    <AssemblyOriginatorKeyFile>..\keys\Grpc.snk</AssemblyOriginatorKeyFile>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Interactive.Async">
      <HintPath>..\packages\System.Interactive.Async.3.0.0\lib\net45\System.Interactive.Async.dll</HintPath>
    <Compile Include="AsyncDuplexStreamingCall.cs" />
    <Compile Include="AsyncServerStreamingCall.cs" />
    <Compile Include="AsyncAuthInterceptor.cs" />
    <Compile Include="CallCredentials.cs" />
    <Compile Include="IClientStreamWriter.cs" />
    <Compile Include="Internal\NativeMethods.cs" />
    <Compile Include="Internal\PlatformApis.cs" />
    <Compile Include="Internal\NativeExtension.cs" />
    <Compile Include="Internal\UnmanagedLibrary.cs" />
    <Compile Include="Internal\NativeMetadataCredentialsPlugin.cs" />
    <Compile Include="Internal\INativeCall.cs" />
    <Compile Include="IServerStreamWriter.cs" />
    <Compile Include="IAsyncStreamWriter.cs" />
    <Compile Include="IAsyncStreamReader.cs" />
Jan Tattermusch's avatar
Jan Tattermusch committed
    <Compile Include="Logging\TextWriterLogger.cs" />
    <Compile Include="Logging\NullLogger.cs" />
    <Compile Include="ServerPort.cs" />
    <Compile Include="Version.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="RpcException.cs" />
    <Compile Include="Calls.cs" />
    <Compile Include="AsyncClientStreamingCall.cs" />
    <Compile Include="GrpcEnvironment.cs" />
    <Compile Include="Status.cs" />
    <Compile Include="StatusCode.cs" />
    <Compile Include="Server.cs" />
    <Compile Include="Channel.cs" />
    <Compile Include="Internal\CallSafeHandle.cs" />
    <Compile Include="Internal\ChannelSafeHandle.cs" />
    <Compile Include="Internal\CompletionQueueSafeHandle.cs" />
    <Compile Include="Internal\SafeHandleZeroIsInvalid.cs" />
    <Compile Include="Internal\Timespec.cs" />
    <Compile Include="Internal\GrpcThreadPool.cs" />
    <Compile Include="Internal\ServerSafeHandle.cs" />
    <Compile Include="Internal\ServerCallHandler.cs" />
    <Compile Include="Marshaller.cs" />
    <Compile Include="ServerServiceDefinition.cs" />
    <Compile Include="Utils\AsyncStreamExtensions.cs" />
    <Compile Include="Utils\BenchmarkUtil.cs" />
    <Compile Include="ChannelCredentials.cs" />
    <Compile Include="Internal\ChannelArgsSafeHandle.cs" />
    <Compile Include="Internal\AsyncCallBase.cs" />
    <Compile Include="Internal\AsyncCallServer.cs" />
    <Compile Include="Internal\AsyncCall.cs" />
    <Compile Include="Internal\ServerCredentialsSafeHandle.cs" />
    <Compile Include="ServerCredentials.cs" />
    <Compile Include="Metadata.cs" />
    <Compile Include="Internal\MetadataArraySafeHandle.cs" />
    <Compile Include="ClientBase.cs" />
    <Compile Include="Internal\ServerCalls.cs" />
    <Compile Include="ServerMethods.cs" />
    <Compile Include="Internal\ClientRequestStream.cs" />
    <Compile Include="Internal\ClientResponseStream.cs" />
    <Compile Include="Internal\ServerRequestStream.cs" />
    <Compile Include="Internal\ServerResponseStream.cs" />
    <Compile Include="Internal\AtomicCounter.cs" />
    <Compile Include="Internal\DebugStats.cs" />
    <Compile Include="ServerCallContext.cs" />
    <Compile Include="Internal\CompletionQueueEvent.cs" />
    <Compile Include="Internal\CompletionRegistry.cs" />
    <Compile Include="Internal\BatchContextSafeHandle.cs" />
    <Compile Include="ChannelOptions.cs" />
    <Compile Include="AsyncUnaryCall.cs" />
    <Compile Include="VersionInfo.cs" />
    <Compile Include="Internal\CStringSafeHandle.cs" />
    <Compile Include="KeyCertificatePair.cs" />
Jan Tattermusch's avatar
Jan Tattermusch committed
    <Compile Include="Logging\ILogger.cs" />
    <Compile Include="Logging\ConsoleLogger.cs" />
    <Compile Include="Internal\NativeLogRedirector.cs" />
    <Compile Include="ChannelState.cs" />
    <Compile Include="CallInvocationDetails.cs" />
    <Compile Include="CallOptions.cs" />
    <Compile Include="CompressionLevel.cs" />
    <Compile Include="WriteOptions.cs" />
    <Compile Include="ContextPropagationToken.cs" />
    <Compile Include="Internal\CallCredentialsSafeHandle.cs" />
    <Compile Include="Internal\ChannelCredentialsSafeHandle.cs" />
Jan Tattermusch's avatar
Jan Tattermusch committed
    <Compile Include="Profiling\ProfilerEntry.cs" />
    <Compile Include="Profiling\ProfilerScope.cs" />
    <Compile Include="Profiling\IProfiler.cs" />
    <Compile Include="Profiling\Profilers.cs" />
    <Compile Include="Internal\DefaultSslRootsOverride.cs" />
    <Compile Include="Utils\GrpcPreconditions.cs" />
    <Compile Include="CallInvoker.cs" />
    <Compile Include="DefaultCallInvoker.cs" />
    <Compile Include="Internal\UnimplementedCallInvoker.cs" />
    <Compile Include="Internal\InterceptingCallInvoker.cs" />
    <Compile Include="Internal\ServerRpcNew.cs" />
    <Compile Include="Internal\ClientSideStatus.cs" />
    <Compile Include="Internal\ClockType.cs" />
    <Compile Include="Internal\CallError.cs" />
Jan Tattermusch's avatar
Jan Tattermusch committed
    <Compile Include="Logging\LogLevel.cs" />
    <Compile Include="Logging\LogLevelFilterLogger.cs" />
    <None Include="Grpc.Core.nuspec" />
    <None Include="Grpc.Core.project.json" />
    <None Include="packages.config" />
  </ItemGroup>
  <Import Project="NativeDeps.targets" />
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Jan Tattermusch's avatar
Jan Tattermusch committed
  <ItemGroup />
  <ItemGroup>
    <EmbeddedResource Include="..\..\..\etc\roots.pem">
      <Link>roots.pem</Link>
    </EmbeddedResource>
  </ItemGroup>