// 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.VisualStudio.LanguageServices.DocumentOutline
{
internal static class DocumentOutlineStrings
{
public static string Document_Outline_Search
=> ServicesVSResources.Document_Outline_Search;
public static string Document_Outline_Expand_All
=> ServicesVSResources.Document_Outline_Expand_All;
public static string Document_Outline_Collapse_All
=> ServicesVSResources.Document_Outline_Collapse_All;
public static string Document_Outline_Sort_Name
=> ServicesVSResources.Document_Outline_Sort_Name;
public static string Document_Outline_Sort_Order
=> ServicesVSResources.Document_Outline_Sort_Order;
public static string Document_Outline_Sort_Type
=> ServicesVSResources.Document_Outline_Sort_Type;
}
}
|