File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/PowerShellEditorServices/Hosting Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 14
14
<!-- See: https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/overview -->
15
15
<EnableNETAnalyzers >true</EnableNETAnalyzers >
16
16
<EnforceCodeStyleInBuild >true</EnforceCodeStyleInBuild >
17
+ <!-- Required to enable IDE0005 as error -->
18
+ <GenerateDocumentationFile >true</GenerateDocumentationFile >
17
19
<!-- TODO: Enable <AnalysisMode>All</AnalysisMode> -->
18
20
<!-- See: https://docs.microsoft.com/en-us/dotnet/core/compatibility/sdk/6.0/implicit-namespaces -->
19
21
<DisableImplicitNamespaceImports >true</DisableImplicitNamespaceImports >
Original file line number Diff line number Diff line change 2
2
// Licensed under the MIT License.
3
3
4
4
using System ;
5
- using System . Diagnostics ;
6
5
using System . IO ;
7
6
using Microsoft . Extensions . DependencyInjection ;
8
7
using Microsoft . Extensions . Logging ;
14
13
using Microsoft . PowerShell . EditorServices . Services . Extension ;
15
14
16
15
#if DEBUG
16
+ using System . Diagnostics ;
17
17
using Serilog . Debugging ;
18
18
#endif
19
19
You can’t perform that action at this time.
0 commit comments