File: test\Generators\Microsoft.Gen.Metrics\TestClasses\MetricConstants.cs
Web Access
Project: src\test\Generators\Microsoft.Gen.Metrics\Generated\Microsoft.Gen.Metrics.Generated.Tests.csproj (Microsoft.Gen.Metrics.Generated.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace TestClasses
{
    internal static class MetricConstants
    {
        public const string D1 = "Dim1";
 
        public const string D2 = "Dim_2"; // dots are not supported in dimension names
 
        public const string D3 = "Dim_3"; // dashes are not supported in dimension names
 
        /// <summary>
        /// Dim4 description.
        /// </summary>
        public const string DimWithXmlComment = "Dim4";
    }
}