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.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="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.Core.1.14.1\build\net45\Grpc.Core.targets" Condition="Exists('..\packages\Grpc.Core.1.14.1\build\net45\Grpc.Core.targets')" /> 63 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> 64 <PropertyGroup> 65 <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> 66 </PropertyGroup> 67 <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'))" /> 68 </Target> 69</Project>