Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Collections.Immutable;

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency with the established project style, consider making this a global using. Both the source project (ANcpLua.Roslyn.Utilities) and the destination project (ANcpLua.Roslyn.Utilities.Testing) use global usings. Instead of adding an explicit using here, you could add <Using Include="System.Collections.Immutable"/> to ANcpLua.Roslyn.Utilities.Testing.csproj. This would maintain a consistent approach to dependency management across projects and keep the code cleaner.

using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CodeActions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.HashCode"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp"/>
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common"/>
</ItemGroup>

<ItemGroup>
Expand Down
Loading