| File: InternalUtilities\RoslynExperiments.cs | Web Access |
| Project: src\roslyn\src\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj (Microsoft.CodeAnalysis) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.CodeAnalysis; /// <summary> /// Defines diagnostic info for Roslyn experimental APIs. /// </summary> internal static class RoslynExperiments { internal const string NullableDisabledSemanticModel = "RSEXPERIMENTAL001"; internal const string NullableDisabledSemanticModel_Url = "https://github.com/dotnet/roslyn/issues/70609"; internal const string GeneratorHostOutputs = "RSEXPERIMENTAL004"; internal const string GeneratorHostOutputs_Url = "https://github.com/dotnet/roslyn/issues/74753"; // The UrlFormat property is customized per-api to point at a public API tracking issue for the feature, not a single general issue. internal const string PreviewLanguageFeatureApi = "RSEXPERIMENTAL006"; internal const string PreCompilationSourceOutput = "RSEXPERIMENTAL007"; internal const string PreCompilationSourceOutput_Url = "https://github.com/dotnet/roslyn/issues/83089"; // Previously taken: RSEXPERIMENTAL003 - https://github.com/dotnet/roslyn/issues/73002 (SyntaxTokenParser) // Previously taken: RSEXPERIMENTAL005 - https://github.com/dotnet/roslyn/issues/77697 }