From e45a78956991d36df3ae263d6f156dc760020ef3 Mon Sep 17 00:00:00 2001 From: walon Date: Wed, 21 Jun 2023 11:07:00 +0800 Subject: [PATCH] =?UTF-8?q?[change]=20=E4=B8=BAAnaylizer=E5=8A=A0=E4=B8=8A?= =?UTF-8?q?using=20=E9=99=90=E5=AE=9A=EF=BC=8C=E8=A7=A3=E5=86=B3=E6=9F=90?= =?UTF-8?q?=E4=BA=9B=E6=83=85=E5=86=B5=E4=B8=8B=E4=B8=8E=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E7=9A=84=E7=B1=BB=E5=9E=8B=E5=90=8C=E5=90=8D=E8=80=8C=E4=BA=A7?= =?UTF-8?q?=E7=94=9F=E7=BC=96=E8=AF=91=E5=86=B2=E7=AA=81=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Editor/Commands/AOTReferenceGeneratorCommand.cs | 1 + Editor/Commands/LinkGeneratorCommand.cs | 1 + Editor/Commands/MethodBridgeGeneratorCommand.cs | 1 + 3 files changed, 3 insertions(+) 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 {