1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.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>{724DFC8C-4B57-4C3F-811C-0463BE2A2829}</ProjectGuid> 9 <OutputType>Library</OutputType> 10 <RootNamespace>Greeter</RootNamespace> 11 <AssemblyName>Greeter</AssemblyName> 12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 13 <NuGetPackageImportStamp> 14 </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;</DefineConstants> 22 <ErrorReport>prompt</ErrorReport> 23 <WarningLevel>4</WarningLevel> 24 <ConsolePause>false</ConsolePause> 25 </PropertyGroup> 26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 27 <DebugType>full</DebugType> 28 <Optimize>true</Optimize> 29 <OutputPath>bin\Release</OutputPath> 30 <ErrorReport>prompt</ErrorReport> 31 <WarningLevel>4</WarningLevel> 32 <ConsolePause>false</ConsolePause> 33 </PropertyGroup> 34 <ItemGroup> 35 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 36 <HintPath>..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 37 </Reference> 38 <Reference Include="Grpc.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d754f35622e28bad, processorArchitecture=MSIL"> 39 <HintPath>..\packages\Grpc.Core.1.14.1\lib\net45\Grpc.Core.dll</HintPath> 40 </Reference> 41 <Reference Include="System" /> 42 <Reference Include="System.Interactive.Async, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"> 43 <HintPath>..\packages\System.Interactive.Async.3.1.1\lib\net45\System.Interactive.Async.dll</HintPath> 44 <Private>True</Private> 45 </Reference> 46 <Reference Include="Microsoft.CSharp" /> 47 </ItemGroup> 48 <ItemGroup> 49 <Compile Include="Properties\AssemblyInfo.cs" /> 50 <Compile Include="Helloworld.cs" /> 51 <Compile Include="HelloworldGrpc.cs" /> 52 </ItemGroup> 53 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 54 <ItemGroup> 55 <None Include="..\..\..\protos\helloworld.proto"> 56 <Link>protos\helloworld.proto</Link> 57 </None> 58 <None Include="..\generate_protos.bat"> 59 <Link>generate_protos.bat</Link> 60 </None> 61 <None Include="packages.config" /> 62 </ItemGroup> 63 <ItemGroup /> 64 <Import Project="..\packages\Grpc.Core.1.14.1\build\net45\Grpc.Core.targets" Condition="Exists('..\packages\Grpc.Core.1.14.1\build\net45\Grpc.Core.targets')" /> 65 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> 66 <PropertyGroup> 67 <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> 68 </PropertyGroup> 69 <Error Condition="!Exists('..\packages\Grpc.Core.1.14.1\build\net45\Grpc.Core.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Grpc.Core.1.14.1\build\net45\Grpc.Core.targets'))" /> 70 </Target> 71</Project>