File tree 4 files changed +29
-4
lines changed
PowerShellEditorServices.Hosting
4 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 13
13
<PackageVersion Include =" OmniSharp.Extensions.LanguageClient" Version =" 0.19.9" />
14
14
<PackageVersion Include =" OmniSharp.Extensions.LanguageServer" Version =" 0.19.9" />
15
15
<PackageVersion Include =" PowerShellStandard.Library" Version =" 5.1.1" />
16
+ <PackageVersion Include =" Roslynator.Analyzers" Version =" 4.12.9" >
17
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
18
+ <PrivateAssets >all</PrivateAssets >
19
+ </PackageVersion >
20
+ <PackageVersion Include =" Roslynator.CodeAnalysis.Analyzers" Version =" 4.12.9" >
21
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
22
+ <PrivateAssets >all</PrivateAssets >
23
+ </PackageVersion >
24
+ <PackageVersion Include =" Roslynator.Formatting.Analyzers" Version =" 4.12.9" >
25
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
26
+ <PrivateAssets >all</PrivateAssets >
27
+ </PackageVersion >
16
28
<PackageVersion Include =" System.IO.Pipes.AccessControl" Version =" 5.0.0" />
17
29
<PackageVersion Include =" System.Runtime.InteropServices.RuntimeInformation" Version =" 4.3.0" />
18
30
<PackageVersion Include =" System.Security.Principal" Version =" 4.3.0" />
22
34
<PackageVersion Include =" xunit.runner.visualstudio" Version =" 2.8.2" />
23
35
<PackageVersion Include =" Xunit.SkippableFact" Version =" 1.4.13" />
24
36
</ItemGroup >
25
- </Project >
37
+ </Project >
Original file line number Diff line number Diff line change @@ -214,7 +214,6 @@ public void LogException(
214
214
/// <param name="ui">The PowerShell host user interface object to log output to.</param>
215
215
internal class PSHostLogger ( PSHostUserInterface ui ) : IObserver < ( PsesLogLevel logLevel , string message ) >
216
216
{
217
-
218
217
public void OnCompleted ( )
219
218
{
220
219
// No-op since there's nothing to close or dispose,
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
- <Import Project =" $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), PowerShellEditorServices.Common.props))\PowerShellEditorServices.Common.props" />
2
+ <Import
3
+ Project =" $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), PowerShellEditorServices.Common.props))\PowerShellEditorServices.Common.props" />
3
4
4
5
<PropertyGroup >
5
6
<TargetFrameworks >net8.0;net462</TargetFrameworks >
16
17
<PackageReference Include =" System.Runtime.InteropServices.RuntimeInformation" />
17
18
</ItemGroup >
18
19
20
+ <ItemGroup Label =" Roslynator" >
21
+ <PackageReference Include =" Roslynator.Analyzers" />
22
+ <PackageReference Include =" Roslynator.CodeAnalysis.Analyzers" />
23
+ <PackageReference Include =" Roslynator.Formatting.Analyzers" />
24
+ </ItemGroup >
25
+
19
26
<ItemGroup >
20
27
<ProjectReference Include =" ..\PowerShellEditorServices\PowerShellEditorServices.csproj" PrivateAssets =" all" />
21
28
</ItemGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
- <Import Project =" $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), PowerShellEditorServices.Common.props))\PowerShellEditorServices.Common.props" />
2
+ <Import
3
+ Project =" $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), PowerShellEditorServices.Common.props))\PowerShellEditorServices.Common.props" />
3
4
4
5
<PropertyGroup >
5
6
<AssemblyTitle >PowerShell Editor Services</AssemblyTitle >
41
42
<PackageReference Include =" System.Security.Principal.Windows" />
42
43
</ItemGroup >
43
44
45
+ <ItemGroup Label =" Roslynator" >
46
+ <PackageReference Include =" Roslynator.Analyzers" />
47
+ <PackageReference Include =" Roslynator.CodeAnalysis.Analyzers" />
48
+ <PackageReference Include =" Roslynator.Formatting.Analyzers" />
49
+ </ItemGroup >
50
+
44
51
<Choose >
45
52
<When Condition =" '$(LocalOmniSharp)' == 'true' " >
46
53
<ItemGroup >
You can’t perform that action at this time.
0 commit comments