diff --git a/Editor/Commands/AOTReferenceGeneratorCommand.cs b/Editor/Commands/AOTReferenceGeneratorCommand.cs index 032d1c9..c426f1d 100644 --- a/Editor/Commands/AOTReferenceGeneratorCommand.cs +++ b/Editor/Commands/AOTReferenceGeneratorCommand.cs @@ -10,6 +10,7 @@ using UnityEngine; namespace HybridCLR.Editor.Commands { + using Analyzer = HybridCLR.Editor.AOT.Analyzer; public static class AOTReferenceGeneratorCommand { diff --git a/Editor/Commands/LinkGeneratorCommand.cs b/Editor/Commands/LinkGeneratorCommand.cs index 99b815a..c545ff5 100644 --- a/Editor/Commands/LinkGeneratorCommand.cs +++ b/Editor/Commands/LinkGeneratorCommand.cs @@ -8,6 +8,7 @@ using UnityEngine; namespace HybridCLR.Editor.Commands { + using Analyzer = HybridCLR.Editor.Link.Analyzer; public static class LinkGeneratorCommand { diff --git a/Editor/Commands/MethodBridgeGeneratorCommand.cs b/Editor/Commands/MethodBridgeGeneratorCommand.cs index 2c7d3e5..47877e7 100644 --- a/Editor/Commands/MethodBridgeGeneratorCommand.cs +++ b/Editor/Commands/MethodBridgeGeneratorCommand.cs @@ -14,6 +14,7 @@ using UnityEngine; namespace HybridCLR.Editor.Commands { + using Analyzer = HybridCLR.Editor.MethodBridge.Analyzer; public class MethodBridgeGeneratorCommand {