ContentTypeNames.cs 822 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.

namespace Microsoft.CodeAnalysis.Editor
{
    internal static class ContentTypeNames
    {
        public const string CSharpContentType = "CSharp";
        public const string CSharpSignatureHelpContentType = "CSharp Signature Help";
        public const string RoslynContentType = "Roslyn Languages";
        public const string VisualBasicContentType = "Basic";
        public const string VisualBasicSignatureHelpContentType = "Basic Signature Help";
M
Marco Goertz 已提交
12
        public const string XamlContentType = "XAML";
13 14
        public const string JavaScriptContentTypeName = "JavaScript";
        public const string TypeScriptContentTypeName = "TypeScript";
15 16
    }
}