Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Def/Internal/TextLogic/TagAggregatorOptions2.cs')
-rw-r--r--src/Text/Def/Internal/TextLogic/TagAggregatorOptions2.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Def/Internal/TextLogic/TagAggregatorOptions2.cs b/src/Text/Def/Internal/TextLogic/TagAggregatorOptions2.cs
index 77476d3..80d4351 100644
--- a/src/Text/Def/Internal/TextLogic/TagAggregatorOptions2.cs
+++ b/src/Text/Def/Internal/TextLogic/TagAggregatorOptions2.cs
@@ -14,7 +14,9 @@ namespace Microsoft.VisualStudio.Text.Tagging
/// Tag Aggregator options.
/// </summary>
[Flags]
+#pragma warning disable CA1714 // Flags enums should have plural names
public enum TagAggregatorOptions2
+#pragma warning restore CA1714 // Flags enums should have plural names
{
/// <summary>
/// Default behavior. The tag aggregator will map up and down through all projection buffers.
@@ -56,4 +58,4 @@ namespace Microsoft.VisualStudio.Text.Tagging
/// </remarks>
NoProjection = 0x04
}
-} \ No newline at end of file
+}