[change] 为Anaylizer加上using 限定,解决某些情况下与项目的类型同名而产生编译冲突的问题

main
walon 2023-06-21 11:07:00 +08:00
parent 0a82b0d339
commit e45a789569
3 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,7 @@ using UnityEngine;
namespace HybridCLR.Editor.Commands
{
using Analyzer = HybridCLR.Editor.AOT.Analyzer;
public static class AOTReferenceGeneratorCommand
{

View File

@ -8,6 +8,7 @@ using UnityEngine;
namespace HybridCLR.Editor.Commands
{
using Analyzer = HybridCLR.Editor.Link.Analyzer;
public static class LinkGeneratorCommand
{

View File

@ -14,6 +14,7 @@ using UnityEngine;
namespace HybridCLR.Editor.Commands
{
using Analyzer = HybridCLR.Editor.MethodBridge.Analyzer;
public class MethodBridgeGeneratorCommand
{