Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/version.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<PropertyGroup>

<!-- package version of grpc-dotnet -->
<GrpcDotnetVersion>2.50.0-dev</GrpcDotnetVersion>
<GrpcDotnetVersion>2.51.0-dev</GrpcDotnetVersion>

<!-- assembly version of grpc-dotnet -->
<GrpcDotnetAssemblyVersion>2.0.0.0</GrpcDotnetAssemblyVersion>

<!-- file version of all grpc-dotnet -->
<GrpcDotnetAssemblyFileVersion>2.50.0.0</GrpcDotnetAssemblyFileVersion>
<GrpcDotnetAssemblyFileVersion>2.51.0.0</GrpcDotnetAssemblyFileVersion>

</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions src/Grpc.Core.Api/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public static class VersionInfo
/// <summary>
/// Current <c>AssemblyFileVersion</c> of gRPC C# assemblies
/// </summary>
public const string CurrentAssemblyFileVersion = "2.50.0.0";
public const string CurrentAssemblyFileVersion = "2.51.0.0";

/// <summary>
/// Current version of gRPC C#
/// </summary>
public const string CurrentVersion = "2.50.0-dev";
public const string CurrentVersion = "2.51.0-dev";
}