|
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.NET.Sdk.Razor.SourceGenerators
{
internal static class DiagnosticIds
{
public const string InvalidRazorLangVersionRuleId = "RZ3600";
public const string InvalidRazorWarningLevelRuleId = "RZ3601";
public const string ReComputingTagHelpersRuleId = "RSG001";
public const string TargetPathNotProvidedRuleId = "RSG002";
public const string GeneratedOutputFullPathNotProvidedRuleId = "RSG003";
public const string CurrentCompilationReferenceNotFoundId = "RSG004";
public const string SkippingGeneratedFileWriteId = "RSG005";
public const string SourceTextNotFoundId = "RSG006";
public const string UnexpectedProjectItemReadCallId = "RSG007";
public const string InvalidRazorContextComputedId = "RSG008";
public const string MetadataReferenceNotProvidedId = "RSG009";
}
}
|