Skip to content

Commit

Permalink
[change] 为Anaylizer加上using 限定,解决某些情况下与项目的类型同名而产生编译冲突的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
walon committed Jun 21, 2023
1 parent 0a82b0d commit e45a789
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Editor/Commands/AOTReferenceGeneratorCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

namespace HybridCLR.Editor.Commands
{
using Analyzer = HybridCLR.Editor.AOT.Analyzer;
public static class AOTReferenceGeneratorCommand
{

Expand Down
1 change: 1 addition & 0 deletions Editor/Commands/LinkGeneratorCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

namespace HybridCLR.Editor.Commands
{
using Analyzer = HybridCLR.Editor.Link.Analyzer;

public static class LinkGeneratorCommand
{
Expand Down
1 change: 1 addition & 0 deletions Editor/Commands/MethodBridgeGeneratorCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

namespace HybridCLR.Editor.Commands
{
using Analyzer = HybridCLR.Editor.MethodBridge.Analyzer;
public class MethodBridgeGeneratorCommand
{

Expand Down

0 comments on commit e45a789

Please sign in to comment.