dotnet-installer/src/Microsoft.DotNet.Cli.Sln.Internal/LocalizableStrings.cs

20 lines
717 B
C#
Raw Normal View History

2016-12-16 21:45:55 -08:00
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";
}
}