Skip to content

Commit

Permalink
[c# grpc] Fix Bond.IO references in grpc_pingpong
Browse files Browse the repository at this point in the history
The example incorrectly had a hard-coded reference to the debug version
of Bond.IO.dll. Additionally, the solution-level project dependencies
were underspecified. Both of these have been fixed.
  • Loading branch information
chwarr committed Apr 12, 2017
1 parent b0e490f commit aed576e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions cs/cs.sln
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "output-no-slash", "test\cod
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "grpc_pingpong", "..\examples\cs\comm\grpc_pingpong\grpc_pingpong.csproj", "{618420F1-6465-4DF4-BD1B-747765F481FF}"
ProjectSection(ProjectDependencies) = postProject
{2E6E238C-9017-445C-9611-66DA780609BE} = {2E6E238C-9017-445C-9611-66DA780609BE}
{43CBBA9B-C4BC-4E64-8733-7B72562D2E91} = {43CBBA9B-C4BC-4E64-8733-7B72562D2E91}
{21E175D5-BBDD-4B63-8FB7-38899BF2F9D1} = {21E175D5-BBDD-4B63-8FB7-38899BF2F9D1}
{92915BD9-8AB1-4E4D-A2AC-95BBF4F82D89} = {92915BD9-8AB1-4E4D-A2AC-95BBF4F82D89}
{AF03BAE6-2470-4E1B-A683-3EBDCDC595FA} = {AF03BAE6-2470-4E1B-A683-3EBDCDC595FA}
EndProjectSection
EndProject
Expand Down
6 changes: 3 additions & 3 deletions examples/cs/comm/grpc_pingpong/grpc_pingpong.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Bond.IO">
<HintPath>..\..\..\..\cs\bin\debug\net45\Bond.IO.dll</HintPath>
</Reference>
<Reference Include="Grpc.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d754f35622e28bad, processorArchitecture=MSIL">
<HintPath>..\..\..\..\cs\packages\Grpc.Core.1.1.0\lib\net45\Grpc.Core.dll</HintPath>
</Reference>
Expand Down Expand Up @@ -60,6 +57,9 @@
<Reference Include="Bond">
<HintPath>$(BOND_BINARY_PATH)\net45\Bond.dll</HintPath>
</Reference>
<Reference Include="Bond.IO">
<HintPath>$(BOND_BINARY_PATH)\net45\Bond.IO.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
Expand Down

0 comments on commit aed576e

Please sign in to comment.