Index: third_party/grpc/src/csharp/Grpc.Core/VersionInfo.cs |
diff --git a/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs b/third_party/grpc/src/csharp/Grpc.Core/VersionInfo.cs |
similarity index 75% |
copy from third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs |
copy to third_party/grpc/src/csharp/Grpc.Core/VersionInfo.cs |
index 9f620eb4012e35421383ce544f51d7087f4100a1..e610d982f9c38b64d6681bc66c804bef6e26de58 100644 |
--- a/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs |
+++ b/third_party/grpc/src/csharp/Grpc.Core/VersionInfo.cs |
@@ -1,7 +1,7 @@ |
-#region Copyright notice and license |
-// Protocol Buffers - Google's data interchange format |
-// Copyright 2008 Google Inc. All rights reserved. |
-// https://developers.google.com/protocol-buffers/ |
+#region Copyright notice and license |
+ |
+// Copyright 2015-2016, Google Inc. |
+// All rights reserved. |
// |
// Redistribution and use in source and binary forms, with or without |
// modification, are permitted provided that the following conditions are |
@@ -28,15 +28,24 @@ |
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
+ |
#endregion |
-namespace Google.Protobuf.WellKnownTypes |
+namespace Grpc.Core |
{ |
- public static partial class WrappersReflection |
+ /// <summary> |
+ /// Provides info about current version of gRPC. |
+ /// </summary> |
+ public static class VersionInfo |
{ |
/// <summary> |
- /// Field number for the single "value" field in all wrapper types. |
+ /// Current version of gRPC C# assemblies |
+ /// </summary> |
+ public const string CurrentAssemblyVersion = "0.13.1.0"; |
+ |
+ /// <summary> |
+ /// Current version of gRPC C# |
/// </summary> |
- internal const int WrapperValueFieldNumber = Int32Value.ValueFieldNumber; |
+ public const string CurrentVersion = "0.13.1"; |
} |
} |