20 lines
717 B
C#
20 lines
717 B
C#
![]() |
namespace Microsoft.DotNet.Cli.Sln.Internal
|
|||
|
{
|
|||
|
internal class LocalizableStrings
|
|||
|
{
|
|||
|
public const string GlobalSectionMoreThanOnceError = "Global section specified more than once";
|
|||
|
|
|||
|
public const string GlobalSectionNotClosedError = "Global section not closed";
|
|||
|
|
|||
|
public const string FileHeaderMissingError = "File header is missing";
|
|||
|
|
|||
|
public const string ProjectSectionNotClosedError = "Project section not closed";
|
|||
|
|
|||
|
public const string InvalidSectionTypeError = "Invalid section type: {0}";
|
|||
|
|
|||
|
public const string SectionIdMissingError = "Section id missing";
|
|||
|
|
|||
|
public const string ClosingSectionTagNotFoundError = "Closing section tag not found";
|
|||
|
}
|
|||
|
}
|