diff --git a/Assets/GameAssets/Models/装饰模型/树木.meta b/Assets/GameAssets/Models/装饰模型/树木.meta new file mode 100644 index 00000000..c323ff99 --- /dev/null +++ b/Assets/GameAssets/Models/装饰模型/树木.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d174948813452c644abed14232cddd9a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/StreamingAssets.meta b/Assets/StreamingAssets.meta new file mode 100644 index 00000000..809ab66b --- /dev/null +++ b/Assets/StreamingAssets.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2867c644cac2f7b488d4acbc11bd2ea4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Temp/Scripts/Scenariopage.cs b/Assets/Temp/Scripts/Scenariopage.cs index 256c3204..c7207c5f 100644 --- a/Assets/Temp/Scripts/Scenariopage.cs +++ b/Assets/Temp/Scripts/Scenariopage.cs @@ -426,7 +426,6 @@ public class Scenariopage : MonoBehaviour private void Uavparametermodification() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=updatedevicepara"; List aircrafts = new List(); if (uavnamelist2.Count > 0) { @@ -460,7 +459,7 @@ public class Scenariopage : MonoBehaviour Debug.Log(str); Dictionary dic = new Dictionary(); dic.Add("data", str); - StartCoroutine(PostData2(url, dic, Two20)); + StartCoroutine(PostData2(Url_Updatedevicepara, dic, Two20)); } public void Two20(bool bol, string str) { @@ -469,7 +468,7 @@ public class Scenariopage : MonoBehaviour } private void Droneretrieval() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevicepara&"; + string url = Url_Querydevicepara; url += "think_device_id="; url += strlist[2]; StartCoroutine(Post1(url, (bol, str) => @@ -637,7 +636,6 @@ public class Scenariopage : MonoBehaviour private void Wirelessmodification() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=updatedevicepara"; List aircrafts = new List(); if (wirelesslist2.Count > 0) { @@ -668,7 +666,7 @@ public class Scenariopage : MonoBehaviour Debug.Log(str); Dictionary dic = new Dictionary(); dic.Add("data", str); - StartCoroutine(PostData2(url, dic, One4)); + StartCoroutine(PostData2(Url_Updatedevicepara, dic, One4)); } public void One4(bool bol, string str) { @@ -678,7 +676,7 @@ public class Scenariopage : MonoBehaviour private void Wirelesssearch() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevicepara&"; + string url = Url_Querydevicepara; url += "think_device_id="; url += strlist[1]; StartCoroutine(Post1(url, (bol, str) => @@ -789,7 +787,7 @@ public class Scenariopage : MonoBehaviour private void Modifyequipment() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=updatedevicepara"; + List aircrafts = new List(); for (int i = 0; i < Rettalist.Count; i++) { @@ -811,7 +809,7 @@ public class Scenariopage : MonoBehaviour Debug.Log(str); Dictionary dic = new Dictionary(); dic.Add("data", str); - StartCoroutine(PostData2(url, dic, getInfo5)); + StartCoroutine(PostData2(Url_Updatedevicepara, dic, getInfo5)); } public void getInfo5(bool bol, string str) { @@ -820,7 +818,7 @@ public class Scenariopage : MonoBehaviour } private void Aircraftparameters() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevicepara&"; + string url = Url_Querydevicepara; url += "think_device_id="; url += strlist[0]; StartCoroutine(Post1(url, (bol, str) => @@ -876,7 +874,6 @@ public class Scenariopage : MonoBehaviour private void Lasermodification() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=updatedevicepara"; List aircrafts = new List(); for (int i = 0; i < laserlist.Count; i++) { @@ -896,7 +893,7 @@ public class Scenariopage : MonoBehaviour Debug.Log(str); Dictionary dic = new Dictionary(); dic.Add("data", str); - StartCoroutine(PostData2(url, dic, Two1)); + StartCoroutine(PostData2(Url_Updatedevicepara, dic, Two1)); } public void Two1(bool bol, string str) { @@ -905,7 +902,7 @@ public class Scenariopage : MonoBehaviour } private void Laserviewing() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevicepara&"; + string url = Url_Querydevicepara; url += "think_device_id="; url += strlist[3]; StartCoroutine(Post1(url, (bol, str) => @@ -1122,7 +1119,7 @@ public class Scenariopage : MonoBehaviour private void Laserid() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevicepara&"; + string url = Url_Querydevicepara; url += "think_device_id="; url += strlist[3]; StartCoroutine(Post1(url, (bol, str) => @@ -1151,7 +1148,7 @@ public class Scenariopage : MonoBehaviour } private void Droneid() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevicepara&"; + string url = Url_Querydevicepara; url += "think_device_id="; url += strlist[2]; StartCoroutine(Post1(url, (bol, str) => @@ -1180,7 +1177,7 @@ public class Scenariopage : MonoBehaviour } private void Wirelessid() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevicepara&"; + string url = Url_Querydevicepara; url += "think_device_id="; url += strlist[1]; StartCoroutine(Post1(url, (bol, str) => @@ -1209,7 +1206,7 @@ public class Scenariopage : MonoBehaviour } private void Radarid() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevicepara&"; + string url = Url_Querydevicepara; url += "think_device_id="; url += strlist[0]; StartCoroutine(Post1(url, (bol, str) => @@ -1446,7 +1443,7 @@ public class Scenariopage : MonoBehaviour private void View() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevice&"; + string url = Url_Querydevice; url += "think_id="; url += "" + Id + ""; StartCoroutine(Post1(url, (bol, str) => @@ -1515,7 +1512,7 @@ public class Scenariopage : MonoBehaviour } private void Chaxun() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevice&"; + string url = Url_Querydevice; url += "think_id="; url += "" + Id + ""; StartCoroutine(Post1(url, (bol, str) => @@ -1985,7 +1982,7 @@ public class Scenariopage : MonoBehaviour } private void Inquire() { - string url = "http://172.16.1.254:48888/Handler/Thinkingfile.ashx?action=querydevice&"; + string url = Url_Querydevice; url += "think_id="; url += "" + Id + ""; StartCoroutine(Post1(url, (bol, str) => diff --git a/Assets/Zion/Scenes/InitConnect.unity b/Assets/Zion/Scenes/InitConnect.unity index 0c9ee084..91675510 100644 --- a/Assets/Zion/Scenes/InitConnect.unity +++ b/Assets/Zion/Scenes/InitConnect.unity @@ -236,7 +236,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: isLinkAgain: 0 - serverIP: 172.20.10.5 + serverIP: 192.168.6.15 port: 12345 --- !u!4 &2132962759 Transform: diff --git a/Assets/Zion/Scripts/InterfaceManager.cs b/Assets/Zion/Scripts/InterfaceManager.cs index 54eaadf7..cca9a406 100644 --- a/Assets/Zion/Scripts/InterfaceManager.cs +++ b/Assets/Zion/Scripts/InterfaceManager.cs @@ -23,10 +23,18 @@ public static class InterfaceManager /// public static string Url_Action { get => IpAddress + "/Handler/Thinkingfile.ashx?action=all"; } /// - /// + /// 修改想定设备参数 /// public static string Url_Updatedevicepara { get => IpAddress + "/Handler/Thinkingfile.ashx?action=updatedevicepara"; } - + /// + /// 查询想定设备参数 + /// + public static string Url_Querydevicepara { get => IpAddress + "/Handler/Thinkingfile.ashx?action=querydevicepara&"; } + /// + /// 查询想定设备 + /// + public static string Url_Querydevice { get => IpAddress + "/Handler/Thinkingfile.ashx?action=querydevice&"; } + #endregion public static string GetLocalTxt(string path) diff --git a/UniTask.Addressables.csproj b/UniTask.Addressables.csproj index dd55293d..4853acda 100644 --- a/UniTask.Addressables.csproj +++ b/UniTask.Addressables.csproj @@ -2,7 +2,7 @@ latest - E:\Unity\2019.4.9f1\Unity\Editor\Data\Tools\RoslynScripts + D:\un\Unity\Editor\Data\Tools\RoslynScripts unity_csc.bat @@ -24,7 +24,7 @@ full false Temp\bin\Debug\ - DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -48,599 +48,599 @@ - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll + D:\un\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEditor.dll + D:\un\Unity\Editor\Data\Managed/UnityEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll + D:/un/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll + D:/un/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll diff --git a/UniTask.DOTween.csproj b/UniTask.DOTween.csproj index a74f31d0..84d11cdc 100644 --- a/UniTask.DOTween.csproj +++ b/UniTask.DOTween.csproj @@ -2,7 +2,7 @@ latest - E:\Unity\2019.4.9f1\Unity\Editor\Data\Tools\RoslynScripts + D:\un\Unity\Editor\Data\Tools\RoslynScripts unity_csc.bat @@ -24,7 +24,7 @@ full false Temp\bin\Debug\ - DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -48,599 +48,599 @@ - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll + D:\un\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEditor.dll + D:\un\Unity\Editor\Data\Managed/UnityEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll + D:/un/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll + D:/un/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll diff --git a/UniTask.Editor.csproj b/UniTask.Editor.csproj index 9b8dd1e6..f9b0aac0 100644 --- a/UniTask.Editor.csproj +++ b/UniTask.Editor.csproj @@ -2,7 +2,7 @@ latest - E:\Unity\2019.4.9f1\Unity\Editor\Data\Tools\RoslynScripts + D:\un\Unity\Editor\Data\Tools\RoslynScripts unity_csc.bat @@ -24,7 +24,7 @@ full false Temp\bin\Debug\ - DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -48,10 +48,10 @@ - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll + D:\un\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEditor.dll + D:\un\Unity\Editor\Data\Managed/UnityEditor.dll @@ -60,607 +60,607 @@ - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll + D:/un/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll + E:/gocheng/New/NewN_UAVPlane/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll + D:/un/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.TestRunner.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.TestRunner.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.TestRunner.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.TestRunner.dll diff --git a/UniTask.Linq.csproj b/UniTask.Linq.csproj index 2cc5864b..7319e3a7 100644 --- a/UniTask.Linq.csproj +++ b/UniTask.Linq.csproj @@ -2,7 +2,7 @@ latest - E:\Unity\2019.4.9f1\Unity\Editor\Data\Tools\RoslynScripts + D:\un\Unity\Editor\Data\Tools\RoslynScripts unity_csc.bat @@ -24,7 +24,7 @@ full false Temp\bin\Debug\ - DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -48,10 +48,10 @@ - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll + D:\un\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEditor.dll + D:\un\Unity\Editor\Data\Managed/UnityEditor.dll @@ -129,589 +129,589 @@ - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll + D:/un/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll + D:/un/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll diff --git a/UniTask.TextMeshPro.csproj b/UniTask.TextMeshPro.csproj index 18d69bd7..2d7a409f 100644 --- a/UniTask.TextMeshPro.csproj +++ b/UniTask.TextMeshPro.csproj @@ -2,7 +2,7 @@ latest - E:\Unity\2019.4.9f1\Unity\Editor\Data\Tools\RoslynScripts + D:\un\Unity\Editor\Data\Tools\RoslynScripts unity_csc.bat @@ -24,7 +24,7 @@ full false Temp\bin\Debug\ - DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;UNITASK_TEXTMESHPRO_SUPPORT;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;UNITASK_TEXTMESHPRO_SUPPORT;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -48,10 +48,10 @@ - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll + D:\un\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEditor.dll + D:\un\Unity\Editor\Data\Managed/UnityEditor.dll @@ -59,592 +59,592 @@ - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll + D:/un/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll + D:/un/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/Unity.TextMeshPro.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/Unity.TextMeshPro.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll diff --git a/UniTask.csproj b/UniTask.csproj index 4d857d09..1351f4f3 100644 --- a/UniTask.csproj +++ b/UniTask.csproj @@ -2,7 +2,7 @@ latest - E:\Unity\2019.4.9f1\Unity\Editor\Data\Tools\RoslynScripts + D:\un\Unity\Editor\Data\Tools\RoslynScripts unity_csc.bat @@ -24,7 +24,7 @@ full false Temp\bin\Debug\ - DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;UNITASK_ASSETBUNDLE_SUPPORT;UNITASK_PHYSICS_SUPPORT;UNITASK_PHYSICS2D_SUPPORT;UNITASK_PARTICLESYSTEM_SUPPORT;UNITASK_UGUI_SUPPORT;UNITASK_WEBREQUEST_SUPPORT;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + DEBUG;TRACE;UNITY_2019_4_9;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;UNITY_POST_PROCESSING_STACK_V2;UNITASK_ASSETBUNDLE_SUPPORT;UNITASK_PHYSICS_SUPPORT;UNITASK_PHYSICS2D_SUPPORT;UNITASK_PARTICLESYSTEM_SUPPORT;UNITASK_UGUI_SUPPORT;UNITASK_WEBREQUEST_SUPPORT;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER prompt 4 0169 @@ -48,10 +48,10 @@ - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll + D:\un\Unity\Editor\Data\Managed/UnityEngine/UnityEngine.dll - E:\Unity\2019.4.9f1\Unity\Editor\Data\Managed/UnityEditor.dll + D:\un\Unity\Editor\Data\Managed/UnityEditor.dll @@ -129,589 +129,589 @@ - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll + D:/un/Unity/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll + D:/un/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll + D:/un/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll + D:/un/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/AsyncIO.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/ExtensionTools.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LGZN.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/LitJson.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/NetMQ.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Newtonsoft.Json.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/DemiLib.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DemiLib/Core/Editor/DemiEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/DOTween.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll + E:/gocheng/New/NewN_UAVPlane/Assets/Plugins/Demigiant/DOTweenPro/Editor/DOTweenProEditor.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll + D:/un/Unity/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll + D:/un/Unity/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll - E:/Unity/2019.4.9f1/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll + D:/un/Unity/Editor/Data/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEditor.UI.dll - E:/UnityProjects/LGZN/Unity2019.4.9/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll + E:/gocheng/New/NewN_UAVPlane/Library/ScriptAssemblies/UnityEngine.UI.dll