Skip to content

Commit 79a586b

Browse files
authored
Merge pull request #1580 from rjmholt/pt-fix-headers
2 parents ccc2fc2 + de18309 commit 79a586b

File tree

75 files changed

+229
-262
lines changed

Some content is hidden

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

75 files changed

+229
-262
lines changed

src/PowerShellEditorServices/Extensions/Api/EditorExtensionServiceProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System.Linq.Expressions;
66
using System.Reflection;
77
using Microsoft.Extensions.DependencyInjection;
8-
using Microsoft.PowerShell.EditorServices.Services;
98
using Microsoft.PowerShell.EditorServices.Services.Extension;
109
using Microsoft.PowerShell.EditorServices.Utility;
1110
using OmniSharp.Extensions.LanguageServer.Protocol.Server;

src/PowerShellEditorServices/Extensions/Api/ExtensionCommandService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

4-
using Microsoft.PowerShell.EditorServices.Services;
54
using Microsoft.PowerShell.EditorServices.Services.Extension;
65
using System;
76
using System.Collections.Generic;

src/PowerShellEditorServices/Extensions/Api/LanguageServerService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

4-
using MediatR;
54
using OmniSharp.Extensions.LanguageServer.Protocol.Server;
65
using System.Threading;
76
using System.Threading.Tasks;

src/PowerShellEditorServices/Extensions/Api/WorkspaceService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System;
66
using System.Collections.Generic;
77
using System.Management.Automation.Language;
8-
using System.Threading.Tasks;
98

109
namespace Microsoft.PowerShell.EditorServices.Extensions.Services
1110
{

src/PowerShellEditorServices/Extensions/EditorContext.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

4-
using System;
54
using Microsoft.PowerShell.EditorServices.Services.TextDocument;
65

76
namespace Microsoft.PowerShell.EditorServices.Extensions

src/PowerShellEditorServices/Extensions/EditorWorkspace.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

4-
using System.Threading.Tasks;
5-
64
namespace Microsoft.PowerShell.EditorServices.Extensions
75
{
86
/// <summary>

src/PowerShellEditorServices/Hosting/EditorServicesServerFactory.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using Microsoft.Extensions.Logging;
99
using Microsoft.PowerShell.EditorServices.Logging;
1010
using Microsoft.PowerShell.EditorServices.Server;
11-
using Microsoft.PowerShell.EditorServices.Services;
1211
using Serilog;
1312
using Serilog.Events;
1413
using OmniSharp.Extensions.LanguageServer.Protocol.Server;

src/PowerShellEditorServices/Logging/HostLoggerAdapter.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
using Microsoft.Extensions.Logging;
55
using System;
6-
using System.Collections.Generic;
7-
using System.Text;
86

97
namespace Microsoft.PowerShell.EditorServices.Logging
108
{

src/PowerShellEditorServices/Server/PsesDebugServer.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,13 @@
33

44
using System;
55
using System.IO;
6-
using System.Management.Automation;
7-
using System.Threading;
86
using System.Threading.Tasks;
97
using Microsoft.Extensions.DependencyInjection;
108
using Microsoft.Extensions.Logging;
119
using Microsoft.PowerShell.EditorServices.Handlers;
1210
using Microsoft.PowerShell.EditorServices.Services;
13-
using Microsoft.PowerShell.EditorServices.Services.PowerShell;
1411
using Microsoft.PowerShell.EditorServices.Services.PowerShell.Debugging;
1512
using Microsoft.PowerShell.EditorServices.Services.PowerShell.Host;
16-
using Microsoft.PowerShell.EditorServices.Services.PowerShell.Runspace;
17-
using Microsoft.PowerShell.EditorServices.Utility;
1813
using OmniSharp.Extensions.DebugAdapter.Server;
1914
using OmniSharp.Extensions.LanguageServer.Server;
2015

src/PowerShellEditorServices/Server/PsesLanguageServer.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@
33

44
using System;
55
using System.IO;
6-
using System.Management.Automation;
76
using System.Threading.Tasks;
87
using Microsoft.Extensions.DependencyInjection;
98
using Microsoft.Extensions.Logging;
109
using Microsoft.PowerShell.EditorServices.Handlers;
1110
using Microsoft.PowerShell.EditorServices.Hosting;
1211
using Microsoft.PowerShell.EditorServices.Services;
1312
using Microsoft.PowerShell.EditorServices.Services.Extension;
14-
using Microsoft.PowerShell.EditorServices.Services.PowerShell;
15-
using Microsoft.PowerShell.EditorServices.Services.PowerShell.Execution;
1613
using Microsoft.PowerShell.EditorServices.Services.Template;
1714
using OmniSharp.Extensions.LanguageServer.Protocol.Server;
1815
using OmniSharp.Extensions.LanguageServer.Server;

0 commit comments

Comments
 (0)