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

Side by Side Diff: third_party/grpc/examples/csharp/route_guide/RouteGuide/RouteGuide.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 ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.micros oft.com/developer/msbuild/2003">
3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Com mon.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Mi crosoft.Common.props')" />
4 <PropertyGroup>
5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7 <ProjectGuid>{49954D9C-5F17-4662-96B2-73BE833DD81A}</ProjectGuid>
8 <OutputType>Library</OutputType>
9 <AppDesignerFolder>Properties</AppDesignerFolder>
10 <RootNamespace>RouteGuide</RootNamespace>
11 <AssemblyName>RouteGuide</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 <FileAlignment>512</FileAlignment>
14 <NuGetPackageImportStamp>5b6d924a</NuGetPackageImportStamp>
15 </PropertyGroup>
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17 <DebugSymbols>true</DebugSymbols>
18 <DebugType>full</DebugType>
19 <Optimize>false</Optimize>
20 <OutputPath>bin\Debug\</OutputPath>
21 <DefineConstants>DEBUG;TRACE</DefineConstants>
22 <ErrorReport>prompt</ErrorReport>
23 <WarningLevel>4</WarningLevel>
24 </PropertyGroup>
25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26 <DebugType>pdbonly</DebugType>
27 <Optimize>true</Optimize>
28 <OutputPath>bin\Release\</OutputPath>
29 <DefineConstants>TRACE</DefineConstants>
30 <ErrorReport>prompt</ErrorReport>
31 <WarningLevel>4</WarningLevel>
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.12.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="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, Publi cKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
43 <SpecificVersion>False</SpecificVersion>
44 <HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll< /HintPath>
45 </Reference>
46 <Reference Include="System" />
47 <Reference Include="System.Core" />
48 <Reference Include="System.Interactive.Async">
49 <HintPath>..\packages\Ix-Async.1.2.3\lib\net45\System.Interactive.Async.dl l</HintPath>
50 </Reference>
51 <Reference Include="System.Xml.Linq" />
52 <Reference Include="System.Data.DataSetExtensions" />
53 <Reference Include="Microsoft.CSharp" />
54 <Reference Include="System.Data" />
55 <Reference Include="System.Xml" />
56 </ItemGroup>
57 <ItemGroup>
58 <Compile Include="Properties\AssemblyInfo.cs" />
59 <Compile Include="RouteGuide.cs" />
60 <Compile Include="RouteGuideGrpc.cs" />
61 <Compile Include="RouteGuideUtil.cs" />
62 </ItemGroup>
63 <ItemGroup>
64 <None Include="packages.config" />
65 <None Include="route_guide_db.json">
66 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
67 </None>
68 </ItemGroup>
69 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
70 <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')" />
71 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
72 <PropertyGroup>
73 <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>
74 </PropertyGroup>
75 <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'))" />
76 </Target>
77 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.
78 Other similar extension points exist, see Microsoft.Common.targets.
79 <Target Name="BeforeBuild">
80 </Target>
81 <Target Name="AfterBuild">
82 </Target>
83 -->
84 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698