aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/VersionInfo.cs
blob: 656a3d47bbe0e4e81b445a89830a10be7d7b5a70 (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.0";
    }
}