aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/VersionInfo.cs
blob: 939372e2370f2b1faa316297a88b288d71348e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Reflection;
using System.Runtime.CompilerServices;

namespace Grpc.Core
{
    public static class VersionInfo
    {
        /// <summary>
        /// Current version of gRPC
        /// </summary>
        public const string CurrentVersion = "0.6.1";
    }
}