[change] 为Anaylizer加上using 限定,解决某些情况下与项目的类型同名而产生编译冲突的问题
parent
0a82b0d339
commit
e45a789569
|
@ -10,6 +10,7 @@ using UnityEngine;
|
|||
|
||||
namespace HybridCLR.Editor.Commands
|
||||
{
|
||||
using Analyzer = HybridCLR.Editor.AOT.Analyzer;
|
||||
public static class AOTReferenceGeneratorCommand
|
||||
{
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ using UnityEngine;
|
|||
|
||||
namespace HybridCLR.Editor.Commands
|
||||
{
|
||||
using Analyzer = HybridCLR.Editor.Link.Analyzer;
|
||||
|
||||
public static class LinkGeneratorCommand
|
||||
{
|
||||
|
|
|
@ -14,6 +14,7 @@ using UnityEngine;
|
|||
|
||||
namespace HybridCLR.Editor.Commands
|
||||
{
|
||||
using Analyzer = HybridCLR.Editor.MethodBridge.Analyzer;
|
||||
public class MethodBridgeGeneratorCommand
|
||||
{
|
||||
|
||||
|
|
Loading…
Reference in New Issue