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

Side by Side Diff: third_party/grpc/examples/csharp/helloworld/GreeterServer/GreeterServer.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>{A7706C84-92D2-4B7A-B779-76B64D2950EC}</ProjectGuid>
9 <OutputType>Exe</OutputType>
10 <RootNamespace>GreeterServer</RootNamespace>
11 <AssemblyName>GreeterServer</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 <NuGetPackageImportStamp>2ea5dfd0</NuGetPackageImportStamp>
14 </PropertyGroup>
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16 <DebugSymbols>true</DebugSymbols>
17 <DebugType>full</DebugType>
18 <Optimize>false</Optimize>
19 <OutputPath>bin\Debug</OutputPath>
20 <DefineConstants>DEBUG;</DefineConstants>
21 <ErrorReport>prompt</ErrorReport>
22 <WarningLevel>4</WarningLevel>
23 <Externalconsole>true</Externalconsole>
24 </PropertyGroup>
25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26 <DebugType>full</DebugType>
27 <Optimize>true</Optimize>
28 <OutputPath>bin\Release</OutputPath>
29 <ErrorReport>prompt</ErrorReport>
30 <WarningLevel>4</WarningLevel>
31 <Externalconsole>true</Externalconsole>
32 </PropertyGroup>
33 <ItemGroup>
34 <Reference Include="Google.Protobuf, Version=3.0.0.0, Culture=neutral, Publi cKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
35 <SpecificVersion>False</SpecificVersion>
36 <HintPath>..\packages\Google.Protobuf.3.0.0-beta2\lib\portable-net45+netco re45+wpa81+wp8\Google.Protobuf.dll</HintPath>
37 </Reference>
38 <Reference Include="Grpc.Core, Version=0.13.0.0, Culture=neutral, PublicKeyT oken=d754f35622e28bad, processorArchitecture=MSIL">
39 <SpecificVersion>False</SpecificVersion>
40 <HintPath>..\packages\Grpc.Core.0.13.0\lib\net45\Grpc.Core.dll</HintPath>
41 </Reference>
42 <Reference Include="System" />
43 <Reference Include="System.Interactive.Async, Version=1.2.0.0, Culture=neutr al, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
44 <SpecificVersion>False</SpecificVersion>
45 <HintPath>..\packages\Ix-Async.1.2.5\lib\net45\System.Interactive.Async.dl l</HintPath>
46 </Reference>
47 </ItemGroup>
48 <ItemGroup>
49 <Compile Include="Program.cs" />
50 <Compile Include="Properties\AssemblyInfo.cs" />
51 </ItemGroup>
52 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
53 <ItemGroup>
54 <ProjectReference Include="..\Greeter\Greeter.csproj">
55 <Project>{724DFC8C-4B57-4C3F-811C-0463BE2A2829}</Project>
56 <Name>Greeter</Name>
57 </ProjectReference>
58 </ItemGroup>
59 <ItemGroup>
60 <None Include="packages.config" />
61 </ItemGroup>
62 <Import Project="..\packages\grpc.native.csharp.0.13.0\build\portable-net45+ne tcore45+wpa81+wp8\grpc.native.csharp.targets" Condition="Exists('..\packages\grp c.native.csharp.0.13.0\build\portable-net45+netcore45+wpa81+wp8\grpc.native.csha rp.targets')" />
63 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
64 <PropertyGroup>
65 <ErrorText>This project references NuGet package(s) that are missing on th is computer. Enable NuGet Package Restore to download them. For more informatio n, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ ErrorText>
66 </PropertyGroup>
67 <Error Condition="!Exists('..\packages\grpc.native.csharp.0.13.0\build\porta ble-net45+netcore45+wpa81+wp8\grpc.native.csharp.targets')" Text="$([System.Stri ng]::Format('$(ErrorText)', '..\packages\grpc.native.csharp.0.13.0\build\portabl e-net45+netcore45+wpa81+wp8\grpc.native.csharp.targets'))" />
68 </Target>
69 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698