forked from hunter-packages/grpc
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redo C# examples to use new Grpc.Tools
* No pre-compilation of proto files required; * Tested under Windows and Linux dotnet and mono; * But not tested on Mac/mono; * README updated.
- Loading branch information
kkm
committed
Oct 14, 2018
1 parent
d0cb61e
commit 6fcb5b2
Showing
28 changed files
with
83 additions
and
2,428 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
.vs/ | ||
bin/ | ||
obj/ | ||
packages/ | ||
*.suo | ||
*.user | ||
*.userprefs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>Greeter</AssemblyTitle> | ||
<TargetFrameworks>netcoreapp2.1</TargetFrameworks> | ||
<DebugType>portable</DebugType> | ||
<AssemblyName>Greeter</AssemblyName> | ||
<PackageId>Greeter</PackageId> | ||
<TargetFramework>netstandard1.5</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Google.Protobuf" Version="3.6.1" /> | ||
<PackageReference Include="Google.Protobuf.Tools" Version="3.6.1" /> | ||
<PackageReference Include="Grpc" Version="1.14.1" /> | ||
<PackageReference Include="Grpc.Tools" Version="1.14.1" /> | ||
<PackageReference Include="Grpc" Version="1.17.0" /> | ||
<PackageReference Include="Grpc.Tools" Version="1.17.0" PrivateAssets="All" /> | ||
|
||
<Protobuf Include="../../../protos/helloworld.proto" Link="helloworld.proto" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.