File: EnumValuesPrefixTrigger.cs | Web Access |
Project: ..\..\..\src\Microsoft.CodeAnalysis.NetAnalyzers\tests\Test.Utilities\Test.Utilities.csproj (Test.Utilities) |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. namespace Analyzer.Utilities.Options { public enum EnumValuesPrefixTrigger { // NOTE: Below fields names are used in the .editorconfig specification. // Hence the names should *not* be modified, as that would be a breaking // change for .editorconfig specification. AnyEnumValue, AllEnumValues, Heuristic, } } |