浏览代码

1.解决客户端HybridCLR报错;2.优化服务端代码目录结构

johnclot69 1 年之前
父节点
当前提交
401bb7a021

+ 5 - 6
DotNet/Hotfix/Module/Router/RouterComponentSystem.cs

@@ -12,19 +12,18 @@ namespace ET.Server
         [ObjectSystem]
         public class RouterComponentAwakeSystem: AwakeSystem<RouterComponent, IPEndPoint, string>
         {
-            protected override void Awake(RouterComponent self, IPEndPoint outerAddress, string innerIP)
+            protected override void Awake(RouterComponent self, IPEndPoint ipEndPoint, string innerIP)
             {
-                self.OuterSocket = new Socket(outerAddress.AddressFamily, SocketType.Dgram, ProtocolType.Udp);
-                self.OuterSocket.Bind(outerAddress);
+                self.OuterSocket = new Socket(ipEndPoint.AddressFamily, SocketType.Dgram, ProtocolType.Udp);
+                self.OuterSocket.Bind(new IPEndPoint(IPAddress.Any, ipEndPoint.Port));
                 if (!RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
                 {
                     self.OuterSocket.SendBufferSize = 16 * Kcp.OneM;
                     self.OuterSocket.ReceiveBufferSize = 16 * Kcp.OneM;
                 }
 
-                self.InnerSocket = new Socket(outerAddress.AddressFamily, SocketType.Dgram, ProtocolType.Udp);
-                self.InnerSocket.Bind(new IPEndPoint(IPAddress.Parse(innerIP), 0));
-
+                self.InnerSocket = new Socket(ipEndPoint.AddressFamily, SocketType.Dgram, ProtocolType.Udp);
+                self.InnerSocket.Bind(new IPEndPoint(IPAddress.Any, 0));
                 if (!RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
                 {
                     self.InnerSocket.SendBufferSize = 16 * Kcp.OneM;

+ 0 - 0
DotNet/Hotfix/EntryEvent2_InitServer.cs → DotNet/Hotfix/Scenes/EntryEvent2_InitServer.cs


+ 0 - 0
DotNet/Hotfix/EntryLoadCfg_Server.cs → DotNet/Hotfix/Scenes/EntryLoadCfg_Server.cs


+ 0 - 11
Unity/Assets/Scripts/Codes/Hotfix/Share/Module/Message/SessionIdleCheckerComponentSystem.cs.meta

@@ -1,11 +0,0 @@
-fileFormatVersion: 2
-guid: a68abadd37d72f14393cf250c23e1164
-MonoImporter:
-  externalObjects: {}
-  serializedVersion: 2
-  defaultReferences: []
-  executionOrder: 0
-  icon: {instanceID: 0}
-  userData: 
-  assetBundleName: 
-  assetBundleVariant: 

+ 0 - 11
Unity/Assets/Scripts/Codes/Model/Share/Module/Message/SessionIdleCheckerComponent.cs.meta

@@ -1,11 +0,0 @@
-fileFormatVersion: 2
-guid: 1d309c1ef46c0eb4bb58c14b6716c032
-MonoImporter:
-  externalObjects: {}
-  serializedVersion: 2
-  defaultReferences: []
-  executionOrder: 0
-  icon: {instanceID: 0}
-  userData: 
-  assetBundleName: 
-  assetBundleVariant: 

+ 57 - 57
Unity/HybridCLR.Editor.csproj

@@ -41,74 +41,74 @@
     <ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
   </PropertyGroup>
   <ItemGroup>
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\PlatformABI.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\MethodBridgeGeneratorCommand.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\MsvcStdextWorkaround.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\GenericClass.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\SettingsPresetReceiver.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\StripAOTDllCommand.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HybridCLRHooks\CopyStrippedAOTAssembliesHook.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\GenericArgumentContext.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HybridCLRHooks\PatchScriptingAssembliesJsonHook.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\PathAssemblyResolver.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\ScriptingAssembliesJsonPatcher.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Il2CppDef\Il2CppDefGenerator.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Template\FileRegionReplace.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\CodePatcher.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\MethodBridge\Analyzer.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\MetaUtil.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\Il2CppDefGeneratorCommand.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\AddLil2cppSourceCodeToXcodeproj2021OrOlder.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\LDasm.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\AddLil2cppSourceCodeToXcodeproj2022OrNewer.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\ParamInfo.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\Il2CppDefGeneratorCommand.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HookPool.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HybridCLRHooks\GetIl2CppFolderHook.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\TypeInfo.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\ABIUtil.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\AOT\GenericReferenceWriter.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\ScriptingAssembliesJsonPatcher.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Il2CppDef\Il2CppDefGenerator.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\MethodBridge\Analyzer.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\SettingsPresetReceiver.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\MenuProvider.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\MethodBridge\Generator.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HybridCLRHooks\CopyStrippedAOTAssembliesHook.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\MethodHook.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\ParamOrReturnType.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HookUtils.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\HybridCLRSettings.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\HybridCLRSettingProvider.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\CopyStrippedAOTAssemblies.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\FixedSetAssemblyResolver.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\AOTReferenceGeneratorCommand.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\PatchScriptingAssemblyList.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\GenericClass.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\CodePatcher.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HybridCLRHooks\GetIl2CppFolderHook.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\TypeCreator.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\MethodDesc.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\EditorStatusWatcher.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\HybridCLRSettings.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\AssemblyResolverBase.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Installer\InstallerWindow.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\ReversePInvokeWrapperGeneratorCommand.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\MethodReferenceAnalyzer.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\GenericMethod.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\ScriptableSignleton.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ReversePInvokeWrap\Analyzer.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\HashUtil.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\IAssemblyResolver.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\MsvcStdextWorkaround.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\AOT\Analyzer.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HybridCLRHooks\PatchScriptingAssembliesJsonHook.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Installer\BashUtil.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\ParamOrReturnType.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Link\LinkXmlWriter.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\CompileDllCommand.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\ReversePInvokeWrapperGeneratorCommand.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HookUtils_OSX.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\ABIUtil.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\HookUtils.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\FilterHotFixAssemblies.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\ValueTypeSizeAligmentCalculator.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\CheckSettings.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\MethodReferenceAnalyzer.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\AOT\GenericReferenceWriter.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\MethodBridge\Generator.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\SettingsUtil.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\StripAOTDllCommand.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\AssemblyResolverBase.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\AssemblyCache.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\AddLil2cppSourceCodeToXcodeproj2021OrOlder.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Link\LinkXmlWriter.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\AssemblyReferenceDeepCollector.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\3rds\UnityHook\MethodHook.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\TypeInfo.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\FixedSetAssemblyResolver.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\CombinedAssemblyResolver.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\LinkGeneratorCommand.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\GenericMethod.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\CompileDllCommand.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\PrebuildCommand.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\MenuProvider.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\AddLil2cppSourceCodeToXcodeproj2022OrNewer.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\ScriptableSignleton.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\HybridCLRSettingProvider.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\PlatformABI.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\MetaUtil.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\MethodBridgeGeneratorCommand.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\MethodDesc.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Link\Analyzer.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ReversePInvokeWrap\Generator.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\AOT\ConstraintContext.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\SettingsUtil.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\CopyStrippedAOTAssemblies.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\IAssemblyResolver.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\LinkGeneratorCommand.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Installer\InstallerController.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\AssemblyCacheBase.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ReversePInvokeWrap\Analyzer.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\ParamInfo.cs" />
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\PatchScriptingAssemblyList.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Installer\InstallerWindow.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ABI\ValueTypeSizeAligmentCalculator.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Commands\PrebuildCommand.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\GenericArgumentContext.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\PathAssemblyResolver.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Settings\EditorStatusWatcher.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\FilterHotFixAssemblies.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\BuildProcessors\CheckSettings.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\Meta\CombinedAssemblyResolver.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\AOT\ConstraintContext.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\ReversePInvokeWrap\Generator.cs" />
     <None Include="Packages\com.focus-creative-games.hybridclr_unity\Editor\HybridCLR.Editor.asmdef" />
     <Reference Include="UnityEngine">
       <HintPath>C:\Program Files\Unity\Hub\Editor\2021.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>
@@ -404,6 +404,9 @@
     <Reference Include="NLog">
       <HintPath>D:\kimoji\ET-release7.2\Unity\Assets\Plugins\NLog.dll</HintPath>
     </Reference>
+    <Reference Include="dnlib">
+      <HintPath>D:\kimoji\ET-release7.2\Unity\Packages\com.focus-creative-games.hybridclr_unity\Plugins\dnlib.dll</HintPath>
+    </Reference>
     <Reference Include="DnsClient">
       <HintPath>D:\kimoji\ET-release7.2\Unity\Assets\Plugins\MongoDB\DnsClient.dll</HintPath>
     </Reference>
@@ -425,9 +428,6 @@
     <Reference Include="MongoDB.Bson">
       <HintPath>D:\kimoji\ET-release7.2\Unity\Assets\Plugins\MongoDB\MongoDB.Bson.dll</HintPath>
     </Reference>
-    <Reference Include="dnlib">
-      <HintPath>D:\kimoji\ET-release7.2\Unity\Packages\com.focus-creative-games.hybridclr_unity\Plugins\dnlib.dll</HintPath>
-    </Reference>
     <Reference Include="nunit.framework">
       <HintPath>D:\kimoji\ET-release7.2\Unity\Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll</HintPath>
     </Reference>

+ 4 - 4
Unity/HybridCLR.Runtime.csproj

@@ -41,10 +41,10 @@
     <ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
   </PropertyGroup>
   <ItemGroup>
-    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Runtime\LoadImageErrorCode.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Runtime\ReversePInvokeWrapperGenerationAttribute.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Runtime\RuntimeApi.cs" />
     <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Runtime\HomologousImageMode.cs" />
+    <Compile Include="Packages\com.focus-creative-games.hybridclr_unity\Runtime\LoadImageErrorCode.cs" />
     <None Include="Packages\com.focus-creative-games.hybridclr_unity\Runtime\HybridCLR.Runtime.asmdef" />
     <Reference Include="UnityEngine">
       <HintPath>C:\Program Files\Unity\Hub\Editor\2021.3.16f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>
@@ -325,6 +325,9 @@
     <Reference Include="NLog">
       <HintPath>D:\kimoji\ET-release7.2\Unity\Assets\Plugins\NLog.dll</HintPath>
     </Reference>
+    <Reference Include="dnlib">
+      <HintPath>D:\kimoji\ET-release7.2\Unity\Packages\com.focus-creative-games.hybridclr_unity\Plugins\dnlib.dll</HintPath>
+    </Reference>
     <Reference Include="DnsClient">
       <HintPath>D:\kimoji\ET-release7.2\Unity\Assets\Plugins\MongoDB\DnsClient.dll</HintPath>
     </Reference>
@@ -346,9 +349,6 @@
     <Reference Include="MongoDB.Bson">
       <HintPath>D:\kimoji\ET-release7.2\Unity\Assets\Plugins\MongoDB\MongoDB.Bson.dll</HintPath>
     </Reference>
-    <Reference Include="dnlib">
-      <HintPath>D:\kimoji\ET-release7.2\Unity\Packages\com.focus-creative-games.hybridclr_unity\Plugins\dnlib.dll</HintPath>
-    </Reference>
     <Reference Include="UnityEditor.iOS.Extensions.Xcode">
       <HintPath>C:\Program Files\Unity\Hub\Editor\2021.3.16f1c1\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll</HintPath>
     </Reference>

+ 0 - 1
Unity/Packages/manifest.json

@@ -1,6 +1,5 @@
 {
   "dependencies": {
-    "com.focus-creative-games.hybridclr_unity": "https://gitee.com/focus-creative-games/hybridclr_unity.git",
     "com.unity.ide.rider": "3.0.27",
     "com.unity.ide.visualstudio": "2.0.22",
     "com.unity.ide.vscode": "1.2.5",

+ 0 - 7
Unity/Packages/packages-lock.json

@@ -6,13 +6,6 @@
       "source": "embedded",
       "dependencies": {}
     },
-    "com.focus-creative-games.hybridclr_unity": {
-      "version": "https://gitee.com/focus-creative-games/hybridclr_unity.git",
-      "depth": 0,
-      "source": "git",
-      "dependencies": {},
-      "hash": "00cedc166f7ca58cfb9a9ad645bd4a0ffc9b8fc9"
-    },
     "com.unity.burst": {
       "version": "1.8.2",
       "depth": 1,