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>{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> 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 <Externalconsole>true</Externalconsole> 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 <Externalconsole>true</Externalconsole> 33 </PropertyGroup> 34 <ItemGroup> 35 <Reference Include="Google.Protobuf, Version=3.8.0.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 36 <HintPath>..\packages\Google.Protobuf.3.8.0\lib\net45\Google.Protobuf.dll</HintPath> 37 </Reference> 38 <Reference Include="Grpc.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=d754f35622e28bad, processorArchitecture=MSIL"> 39 <HintPath>..\packages\Grpc.Core.2.23.0\lib\net45\Grpc.Core.dll</HintPath> 40 </Reference> 41 <Reference Include="Grpc.Core.Api, Version=2.0.0.0, Culture=neutral, PublicKeyToken=d754f35622e28bad, processorArchitecture=MSIL"> 42 <HintPath>..\packages\Grpc.Core.Api.2.23.0\lib\net45\Grpc.Core.Api.dll</HintPath> 43 </Reference> 44 <Reference Include="System" /> 45 <Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 46 <HintPath>..\packages\System.Buffers.4.4.0\lib\netstandard1.1\System.Buffers.dll</HintPath> 47 </Reference> 48 <Reference Include="Microsoft.CSharp" /> 49 <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 50 <HintPath>..\packages\System.Memory.4.5.3\lib\netstandard1.1\System.Memory.dll</HintPath> 51 </Reference> 52 <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> 53 <HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath> 54 </Reference> 55 </ItemGroup> 56 <ItemGroup> 57 <Compile Include="Program.cs" /> 58 <Compile Include="Properties\AssemblyInfo.cs" /> 59 </ItemGroup> 60 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 61 <ItemGroup> 62 <ProjectReference Include="..\Greeter\Greeter.csproj"> 63 <Project>{724DFC8C-4B57-4C3F-811C-0463BE2A2829}</Project> 64 <Name>Greeter</Name> 65 </ProjectReference> 66 </ItemGroup> 67 <ItemGroup> 68 <None Include="packages.config" /> 69 </ItemGroup> 70 <Import Project="..\packages\Grpc.Core.2.23.0\build\net45\Grpc.Core.targets" Condition="Exists('..\packages\Grpc.Core.2.23.0\build\net45\Grpc.Core.targets')" /> 71 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> 72 <PropertyGroup> 73 <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> 74 </PropertyGroup> 75 <Error Condition="!Exists('..\packages\Grpc.Core.2.23.0\build\net45\Grpc.Core.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Grpc.Core.2.23.0\build\net45\Grpc.Core.targets'))" /> 76 </Target> 77</Project>