File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
PowerShellEditorServices.Hosting
Services/PowerShell/Context Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1414 <!-- See: https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/overview -->
1515 <EnableNETAnalyzers >true</EnableNETAnalyzers >
1616 <EnforceCodeStyleInBuild >true</EnforceCodeStyleInBuild >
17+ <!-- Required to enable IDE0005 as error -->
18+ <GenerateDocumentationFile >true</GenerateDocumentationFile >
1719 <!-- TODO: Enable <AnalysisMode>All</AnalysisMode> -->
1820 <!-- See: https://docs.microsoft.com/en-us/dotnet/core/compatibility/sdk/6.0/implicit-namespaces -->
1921 <DisableImplicitNamespaceImports >true</DisableImplicitNamespaceImports >
Original file line number Diff line number Diff line change 22// Licensed under the MIT License.
33
44using System ;
5- using System . Diagnostics ;
65using System . IO ;
76using System . Reflection ;
87using System . Threading . Tasks ;
1312using System . Management . Automation ;
1413using System . Management . Automation . Runspaces ;
1514
15+ #if DEBUG
16+ using System . Diagnostics ;
17+ #endif
18+
1619#if CoreCLR
1720using System . Runtime . Loader ;
1821#else
Original file line number Diff line number Diff line change 22// Licensed under the MIT License.
33
44using System ;
5- using System . Diagnostics ;
65using System . IO ;
76using Microsoft . Extensions . DependencyInjection ;
87using Microsoft . Extensions . Logging ;
1413using Microsoft . PowerShell . EditorServices . Services . Extension ;
1514
1615#if DEBUG
16+ using System . Diagnostics ;
1717using Serilog . Debugging ;
1818#endif
1919
Original file line number Diff line number Diff line change 33
44using System ;
55using System . Diagnostics ;
6- using System . Text ;
76using Microsoft . Extensions . Logging ;
87using Microsoft . PowerShell . EditorServices . Services . PowerShell . Runspace ;
98using Microsoft . PowerShell . EditorServices . Services . PowerShell . Utility ;
109using SMA = System . Management . Automation ;
1110
11+ #if DEBUG
12+ using System . Text ;
13+ #endif
14+
1215namespace Microsoft . PowerShell . EditorServices . Services . PowerShell . Context
1316{
1417 [ DebuggerDisplay ( "{ToDebuggerDisplayString()}" ) ]
You can’t perform that action at this time.
0 commit comments