Skip to content

Commit 75a3618

Browse files
committed
Move WorkspaceHelpers back to Helpers
Now that two assemblies are used, separation of the namespaces is no longer required.
1 parent c635313 commit 75a3618

79 files changed

Lines changed: 72 additions & 124 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/DocumentationRules/FileHeaderCodeFixProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ namespace StyleCop.Analyzers.DocumentationRules
1818
using Microsoft.CodeAnalysis.Formatting;
1919
using StyleCop.Analyzers.Helpers;
2020
using StyleCop.Analyzers.Settings.ObjectModel;
21-
using WorkspaceHelpers;
2221

2322
/// <summary>
2423
/// Implements a code fix for file header diagnostics.

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/DocumentationRules/InheritdocCodeFixProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ namespace StyleCop.Analyzers.DocumentationRules
1414
using Microsoft.CodeAnalysis.CSharp;
1515
using Microsoft.CodeAnalysis.CSharp.Syntax;
1616
using Microsoft.CodeAnalysis.Formatting;
17-
using WorkspaceHelpers;
1817

1918
/// <summary>
2019
/// Implements a code fix that will generate a documentation comment comprised of an empty

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/DocumentationRules/SA1609SA1610CodeFixProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ namespace StyleCop.Analyzers.DocumentationRules
1616
using Microsoft.CodeAnalysis.CSharp.Syntax;
1717
using Microsoft.CodeAnalysis.Formatting;
1818
using StyleCop.Analyzers.Helpers;
19-
using WorkspaceHelpers;
2019

2120
/// <summary>
2221
/// Implements a code fix for <see cref="SA1609PropertyDocumentationMustHaveValue"/> and

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/DocumentationRules/SA1615SA1616CodeFixProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ namespace StyleCop.Analyzers.DocumentationRules
1717
using Microsoft.CodeAnalysis.Formatting;
1818
using Microsoft.CodeAnalysis.Simplification;
1919
using StyleCop.Analyzers.Helpers;
20-
using WorkspaceHelpers;
2120

2221
/// <summary>
2322
/// Implements a code fix for <see cref="SA1615ElementReturnValueMustBeDocumented"/> and

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/DocumentationRules/SA1617CodeFixProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ namespace StyleCop.Analyzers.DocumentationRules
1313
using Microsoft.CodeAnalysis.CodeFixes;
1414
using Microsoft.CodeAnalysis.CSharp.Syntax;
1515
using StyleCop.Analyzers.Helpers;
16-
using WorkspaceHelpers;
1716

1817
/// <summary>
1918
/// Implements a code fix for <see cref="SA1617VoidReturnValueMustNotBeDocumented"/>.

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/DocumentationRules/SA1626CodeFixProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ namespace StyleCop.Analyzers.DocumentationRules
1313
using Microsoft.CodeAnalysis.CodeFixes;
1414
using Microsoft.CodeAnalysis.Text;
1515
using StyleCop.Analyzers.Helpers;
16-
using WorkspaceHelpers;
1716

1817
/// <summary>
1918
/// Implements a code fix for <see cref="SA1626CodeFixProvider"/>.

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/DocumentationRules/SA1642SA1643CodeFixProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ namespace StyleCop.Analyzers.DocumentationRules
1616
using Microsoft.CodeAnalysis.CSharp;
1717
using Microsoft.CodeAnalysis.CSharp.Syntax;
1818
using Microsoft.CodeAnalysis.Formatting;
19-
using WorkspaceHelpers;
2019

2120
/// <summary>
2221
/// Implements a code fix for <see cref="SA1642ConstructorSummaryDocumentationMustBeginWithStandardText"/>

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/DocumentationRules/SA1651CodeFixProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ namespace StyleCop.Analyzers.DocumentationRules
77
using System.Composition;
88
using System.Threading;
99
using System.Threading.Tasks;
10+
using Helpers;
1011
using Microsoft.CodeAnalysis;
1112
using Microsoft.CodeAnalysis.CodeActions;
1213
using Microsoft.CodeAnalysis.CodeFixes;
1314
using Microsoft.CodeAnalysis.CSharp.Syntax;
14-
using WorkspaceHelpers;
1515

1616
/// <summary>
1717
/// Implements a code fix for <see cref="SA1651DoNotUsePlaceholderElements"/>.

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/WorkspaceHelpers/CustomBatchFixAllProvider.cs renamed to StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/Helpers/CustomBatchFixAllProvider.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
namespace StyleCop.Analyzers.WorkspaceHelpers
4+
namespace StyleCop.Analyzers.Helpers
55
{
66
using System;
77
using System.Collections.Concurrent;
@@ -11,7 +11,6 @@ namespace StyleCop.Analyzers.WorkspaceHelpers
1111
using System.Linq;
1212
using System.Threading;
1313
using System.Threading.Tasks;
14-
using Helpers;
1514
using Microsoft.CodeAnalysis;
1615
using Microsoft.CodeAnalysis.CodeActions;
1716
using Microsoft.CodeAnalysis.CodeFixes;

StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/WorkspaceHelpers/CustomFixAllProviders.cs renamed to StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/Helpers/CustomFixAllProviders.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
namespace StyleCop.Analyzers.WorkspaceHelpers
4+
namespace StyleCop.Analyzers.Helpers
55
{
66
using Microsoft.CodeAnalysis.CodeActions;
77
using Microsoft.CodeAnalysis.CodeFixes;

0 commit comments

Comments
 (0)