Unity.Model.csproj 84.5 KB
Newer Older
1 2
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <PropertyGroup>
T
tanghai 已提交
4
    <LangVersion>7.3</LangVersion>
5
    <ProjectTypeGuids>{E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
T
tanghai 已提交
6 7 8
    <_TargetFrameworkDirectories>non_empty_path_generated_by_rider_editor_plugin</_TargetFrameworkDirectories>
    <_FullFrameworkReferenceAssemblyPaths>non_empty_path_generated_by_rider_editor_plugin</_FullFrameworkReferenceAssemblyPaths>
    <DisableHandlePackageFileConflicts>true</DisableHandlePackageFileConflicts>
9
  </PropertyGroup>
10 11 12 13 14
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>10.0.20506</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
15
    <RootNamespace></RootNamespace>
16
    <ProjectGuid>{B4BF9894-F5D9-41C4-13E3-3F26F7700E29}</ProjectGuid>
17
    <OutputType>Library</OutputType>
18
    <AppDesignerFolder>Properties</AppDesignerFolder>
19
    <AssemblyName>Unity.Model</AssemblyName>
T
tanghai 已提交
20
    <TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
21
    <FileAlignment>512</FileAlignment>
22
    <BaseDirectory>.</BaseDirectory>
23 24
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
25 26
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
27
    <Optimize>false</Optimize>
28
    <OutputPath>Temp\bin\Debug\</OutputPath>
T
tanghai 已提交
29
    <DefineConstants>DEBUG;TRACE;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_3_6;UNITY_2018_3;UNITY_2018;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITES;ENABLE_GRID;ENABLE_TILEMAP;ENABLE_TERRAIN;ENABLE_TEXTURE_STREAMING;ENABLE_DIRECTOR;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_TIMELINE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;INCLUDE_DYNAMIC_GI;INCLUDE_GI;ENABLE_MONO_BDWGC;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_VIDEO;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_LOCALIZATION;PLATFORM_STANDALONE_OSX;PLATFORM_STANDALONE;UNITY_STANDALONE_OSX;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_GAMECENTER;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_VR;ENABLE_AR;ENABLE_SPATIALTRACKING;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_OSX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;NET452;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
30 31
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
32
    <NoWarn>0169</NoWarn>
33
    <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
34 35 36
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
37 38
    <Optimize>true</Optimize>
    <OutputPath>Temp\bin\Release\</OutputPath>
39 40
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
41
    <NoWarn>0169</NoWarn>
42 43 44 45 46 47 48 49
    <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  </PropertyGroup>
  <PropertyGroup>
    <NoConfig>true</NoConfig>
    <NoStdLib>true</NoStdLib>
    <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
    <ImplicitlyExpandNETStandardFacades>false</ImplicitlyExpandNETStandardFacades>
    <ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
50 51 52
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="UnityEngine">
T
tanghai 已提交
53
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll</HintPath>
54
    </Reference>
55
    <Reference Include="UnityEditor">
T
tanghai 已提交
56 57 58 59
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEditor.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.CSharp">
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll</HintPath>
60 61 62
    </Reference>
  </ItemGroup>
  <ItemGroup>
63 64
    <Compile Include="Assets\Model\Base\Async\AsyncETTaskMethodBuilder.cs" />
    <Compile Include="Assets\Model\Base\Async\AsyncETVoidMethodBuilder.cs" />
65 66 67 68
    <Compile Include="Assets\Model\Base\Async\AsyncMethodBuilderAttribute.cs" />
    <Compile Include="Assets\Model\Base\Async\ETTask.cs" />
    <Compile Include="Assets\Model\Base\Async\ETTaskCompletionSource.cs" />
    <Compile Include="Assets\Model\Base\Async\ETTaskFactory.cs" />
69
    <Compile Include="Assets\Model\Base\Async\ETVoid.cs" />
70 71
    <Compile Include="Assets\Model\Base\Async\IAwaiter.cs" />
    <Compile Include="Assets\Model\Base\Async\MoveNextRunner.cs" />
72 73 74 75 76 77 78
    <Compile Include="Assets\Model\Base\DoubleMap.cs" />
    <Compile Include="Assets\Model\Base\Event\Env.cs" />
    <Compile Include="Assets\Model\Base\Event\EnvKey.cs" />
    <Compile Include="Assets\Model\Base\Event\EventAttribute.cs" />
    <Compile Include="Assets\Model\Base\Event\EventIdType.cs" />
    <Compile Include="Assets\Model\Base\Event\IEvent.cs" />
    <Compile Include="Assets\Model\Base\Helper\ByteHelper.cs" />
79
    <Compile Include="Assets\Model\Base\Helper\Dumper.cs" />
80 81 82 83 84 85
    <Compile Include="Assets\Model\Base\Helper\EnumHelper.cs" />
    <Compile Include="Assets\Model\Base\Helper\FileHelper.cs" />
    <Compile Include="Assets\Model\Base\Helper\IdGenerater.cs" />
    <Compile Include="Assets\Model\Base\Helper\JsonHelper.cs" />
    <Compile Include="Assets\Model\Base\Helper\MD5Helper.cs" />
    <Compile Include="Assets\Model\Base\Helper\MethodInfoHelper.cs" />
86
    <Compile Include="Assets\Model\Base\Helper\MongoHelper.cs" />
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    <Compile Include="Assets\Model\Base\Helper\NetHelper.cs" />
    <Compile Include="Assets\Model\Base\Helper\ObjectHelper.cs" />
    <Compile Include="Assets\Model\Base\Helper\RandomHelper.cs" />
    <Compile Include="Assets\Model\Base\Helper\StringHelper.cs" />
    <Compile Include="Assets\Model\Base\Helper\TimeHelper.cs" />
    <Compile Include="Assets\Model\Base\Helper\ZipHelper.cs" />
    <Compile Include="Assets\Model\Base\IL\Adapt_IMessage.cs" />
    <Compile Include="Assets\Model\Base\IL\IAsyncStateMachineAdaptor.cs" />
    <Compile Include="Assets\Model\Base\IL\IDisposableAdaptor.cs" />
    <Compile Include="Assets\Model\Base\IL\ILAdapterAttribute.cs" />
    <Compile Include="Assets\Model\Base\IL\ILBindingAttribute.cs" />
    <Compile Include="Assets\Model\Base\Log.cs" />
    <Compile Include="Assets\Model\Base\LogType.cs" />
    <Compile Include="Assets\Model\Base\MultiMap.cs" />
    <Compile Include="Assets\Model\Base\Object\BaseAttribute.cs" />
    <Compile Include="Assets\Model\Base\Object\Component.cs" />
    <Compile Include="Assets\Model\Base\Object\ComponentFactory.cs" />
104
    <Compile Include="Assets\Model\Base\Object\ComponentView.cs" />
105 106 107 108 109
    <Compile Include="Assets\Model\Base\Object\ComponentWithId.cs" />
    <Compile Include="Assets\Model\Base\Object\Entity.cs" />
    <Compile Include="Assets\Model\Base\Object\EntityEventAttribute.cs" />
    <Compile Include="Assets\Model\Base\Object\EventProxy.cs" />
    <Compile Include="Assets\Model\Base\Object\EventSystem.cs" />
110
    <Compile Include="Assets\Model\Base\Object\HideInHierarchy.cs" />
111 112
    <Compile Include="Assets\Model\Base\Object\IAwakeSystem.cs" />
    <Compile Include="Assets\Model\Base\Object\IChangeSystem.cs" />
113
    <Compile Include="Assets\Model\Base\Object\IDeserializeSystem.cs" />
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
    <Compile Include="Assets\Model\Base\Object\IDestroySystem.cs" />
    <Compile Include="Assets\Model\Base\Object\ILateUpdateSystem.cs" />
    <Compile Include="Assets\Model\Base\Object\ILoadSystem.cs" />
    <Compile Include="Assets\Model\Base\Object\ISerializeToEntity.cs" />
    <Compile Include="Assets\Model\Base\Object\IStartSystem.cs" />
    <Compile Include="Assets\Model\Base\Object\IUpdateSystem.cs" />
    <Compile Include="Assets\Model\Base\Object\Object.cs" />
    <Compile Include="Assets\Model\Base\Object\ObjectPool.cs" />
    <Compile Include="Assets\Model\Base\Object\ObjectSystemAttribute.cs" />
    <Compile Include="Assets\Model\Base\OneThreadSynchronizationContext.cs" />
    <Compile Include="Assets\Model\Base\QueueDictionary.cs" />
    <Compile Include="Assets\Model\Base\RecyclableMemoryStream\Events.cs" />
    <Compile Include="Assets\Model\Base\RecyclableMemoryStream\RecyclableMemoryStream.cs" />
    <Compile Include="Assets\Model\Base\RecyclableMemoryStream\RecyclableMemoryStreamManager.cs" />
    <Compile Include="Assets\Model\Base\TryLocker.cs" />
    <Compile Include="Assets\Model\Base\UnOrderMultiMap.cs" />
    <Compile Include="Assets\Model\Component\Config\ClientConfig.cs" />
    <Compile Include="Assets\Model\Component\Config\DBConfig.cs" />
    <Compile Include="Assets\Model\Component\Config\GlobalProto.cs" />
    <Compile Include="Assets\Model\Component\Config\HttpConfig.cs" />
    <Compile Include="Assets\Model\Component\Config\InnerConfig.cs" />
    <Compile Include="Assets\Model\Component\Config\OuterConfig.cs" />
    <Compile Include="Assets\Model\Component\Config\RunServerConfig.cs" />
    <Compile Include="Assets\Model\Component\Config\StartConfig.cs" />
    <Compile Include="Assets\Model\Component\GlobalConfigComponent.cs" />
    <Compile Include="Assets\Model\Component\SceneChangeComponent.cs" />
    <Compile Include="Assets\Model\Component\TimerComponent.cs" />
    <Compile Include="Assets\Model\Entity\Game.cs" />
    <Compile Include="Assets\Model\Entity\Hotfix.cs" />
    <Compile Include="Assets\Model\Entity\Scene.cs" />
    <Compile Include="Assets\Model\Entity\UnityWebRequestAsync.cs" />
    <Compile Include="Assets\Model\Helper\ActionHelper.cs" />
    <Compile Include="Assets\Model\Helper\BundleHelper.cs" />
    <Compile Include="Assets\Model\Helper\GameObjectHelper.cs" />
    <Compile Include="Assets\Model\Helper\ILHelper.cs" />
    <Compile Include="Assets\Model\Helper\PathHelper.cs" />
    <Compile Include="Assets\Model\Helper\PositionHelper.cs" />
    <Compile Include="Assets\Model\Helper\ResourcesHelper.cs" />
152 153 154
    <Compile Include="Assets\Model\ILBinding\CLRBindings.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ActionHelper_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_Actor_Test_Binding.cs" />
T
tanghai 已提交
155 156 157 158 159
    <Compile Include="Assets\Model\ILBinding\ETModel_AnimatorComponent_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_AppTypeHelper_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_AssetBundleHelper_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_AsyncETVoidMethodBuilder_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ByteHelper_Binding.cs" />
160 161 162
    <Compile Include="Assets\Model\ILBinding\ETModel_C2G_EnterMap_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_Component_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ComponentFactory_Binding.cs" />
T
tanghai 已提交
163 164
    <Compile Include="Assets\Model\ILBinding\ETModel_ComponentView_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ConfigAttribute_Binding.cs" />
165
    <Compile Include="Assets\Model\ILBinding\ETModel_Define_Binding.cs" />
166 167 168
    <Compile Include="Assets\Model\ILBinding\ETModel_DoubleMap_2_UInt16_Type_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_Entity_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ErrorCode_Binding.cs" />
T
tanghai 已提交
169 170 171 172 173 174
    <Compile Include="Assets\Model\ILBinding\ETModel_ETTask_1_Google_Protobuf_Adapt_IMessage_Binding_Adaptor_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ETTask_1_Google_Protobuf_Adapt_IMessage_Binding_Adaptor_Binding_Await_t.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ETTask_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ETTask_Binding_Awaiter_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ETTaskCompletionSource_1_Google_Protobuf_Adapt_IMessage_Binding_Adapt_t.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ETVoid_Binding.cs" />
175 176 177
    <Compile Include="Assets\Model\ILBinding\ETModel_EventAttribute_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_EventProxy_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_EventSystem_Binding.cs" />
T
tanghai 已提交
178 179
    <Compile Include="Assets\Model\ILBinding\ETModel_Frame_ClickMap_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_G2C_EnterMap_Binding.cs" />
180 181
    <Compile Include="Assets\Model\ILBinding\ETModel_Game_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_GameObjectHelper_Binding.cs" />
T
tanghai 已提交
182
    <Compile Include="Assets\Model\ILBinding\ETModel_GizmosDebug_Binding.cs" />
183 184 185 186 187
    <Compile Include="Assets\Model\ILBinding\ETModel_GlobalConfigComponent_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_GlobalProto_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_Hotfix_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_IdGenerater_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_IMessagePacker_Binding.cs" />
T
tanghai 已提交
188
    <Compile Include="Assets\Model\ILBinding\ETModel_LayerNames_Binding.cs" />
189
    <Compile Include="Assets\Model\ILBinding\ETModel_Log_Binding.cs" />
T
tanghai 已提交
190 191
    <Compile Include="Assets\Model\ILBinding\ETModel_M2C_CreateUnits_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_M2C_PathfindingResult_Binding.cs" />
192
    <Compile Include="Assets\Model\ILBinding\ETModel_MessageAttribute_Binding.cs" />
T
tanghai 已提交
193
    <Compile Include="Assets\Model\ILBinding\ETModel_MessageDispatcherComponent_Binding.cs" />
194 195
    <Compile Include="Assets\Model\ILBinding\ETModel_MessageInfo_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_MessageProxy_Binding.cs" />
T
tanghai 已提交
196
    <Compile Include="Assets\Model\ILBinding\ETModel_MongoHelper_Binding.cs" />
197
    <Compile Include="Assets\Model\ILBinding\ETModel_NetworkComponent_Binding.cs" />
T
tanghai 已提交
198
    <Compile Include="Assets\Model\ILBinding\ETModel_OpcodeHelper_Binding.cs" />
199 200 201 202 203
    <Compile Include="Assets\Model\ILBinding\ETModel_OpcodeTypeComponent_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_Player_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_PlayerComponent_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_ResourcesComponent_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_RpcException_Binding.cs" />
T
tanghai 已提交
204
    <Compile Include="Assets\Model\ILBinding\ETModel_SceneChangeComponent_Binding.cs" />
205 206 207
    <Compile Include="Assets\Model\ILBinding\ETModel_Session_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_SessionCallbackComponent_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_SessionComponent_Binding.cs" />
T
tanghai 已提交
208
    <Compile Include="Assets\Model\ILBinding\ETModel_Unit_Binding.cs" />
209 210
    <Compile Include="Assets\Model\ILBinding\ETModel_UnitComponent_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_UnitFactory_Binding.cs" />
T
tanghai 已提交
211 212
    <Compile Include="Assets\Model\ILBinding\ETModel_UnitInfo_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ETModel_UnitPathComponent_Binding.cs" />
213
    <Compile Include="Assets\Model\ILBinding\ETModel_UnOrderMultiMap_2_Type_ILTypeInstance_Binding.cs" />
T
tanghai 已提交
214
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_ByteString_Binding.cs" />
215 216 217 218 219
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_CodedInputStream_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_CodedOutputStream_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_Collections_RepeatedField_1_Google_Protobuf_Adapt_IMessage_Bi_t.cs" />
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_Collections_RepeatedField_1_Int32_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_Collections_RepeatedField_1_Int64_Binding.cs" />
T
tanghai 已提交
220
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_Collections_RepeatedField_1_Single_Binding.cs" />
221 222 223 224 225 226 227 228 229
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_Collections_RepeatedField_1_String_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_Collections_RepeatedField_1_UnitInfo_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_FieldCodec_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_MessageParser_1_Google_Protobuf_Adapt_IMessage_Binding_Adapto_t.cs" />
    <Compile Include="Assets\Model\ILBinding\Google_Protobuf_ProtoPreconditions_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\LitJson_JsonMapper_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\ReferenceCollector_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Action_1_Google_Protobuf_Adapt_IMessage_Binding_Adaptor_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Activator_Binding.cs" />
T
tanghai 已提交
230
    <Compile Include="Assets\Model\ILBinding\System_Array_Binding.cs" />
231 232 233 234 235 236 237
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_Int32_Action_1_Google_Protobuf_Adapt__t.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_Int64_ILTypeInstance_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_String_ILTypeInstance_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_String_ILTypeInstance_Binding_ValueCo_t.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_String_ILTypeInstance_Binding_ValueCo_t_t.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_String_List_1_ILTypeInstance_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding.cs" />
238
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding_Enumerato_t.cs" />
239 240 241 242 243 244 245 246
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding_ValueColl_t.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding_ValueColl_t_t.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_Type_Queue_1_Object_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_UInt16_List_1_ILTypeInstance_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Dictionary_2_UInt16_Object_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_HashSet_1_ILTypeInstance_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_HashSet_1_ILTypeInstance_Binding_Enumerator_Bindin_t.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_IEnumerator_1_UnitInfo_Binding.cs" />
247
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_KeyValuePair_2_Type_ILTypeInstance_Binding.cs" />
248 249 250 251 252
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_List_1_ILTypeInstance_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_List_1_ILTypeInstance_Binding_Enumerator_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_List_1_Object_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_List_1_Type_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_List_1_Type_Binding_Enumerator_Binding.cs" />
T
tanghai 已提交
253
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_List_1_Vector3_Binding.cs" />
254 255 256 257
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Queue_1_ILTypeInstance_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Queue_1_Int64_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_Generic_Queue_1_Object_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Collections_IDictionary_Binding.cs" />
T
tanghai 已提交
258
    <Compile Include="Assets\Model\ILBinding\System_Collections_IEnumerable_Binding.cs" />
259 260 261 262 263 264 265
    <Compile Include="Assets\Model\ILBinding\System_Collections_IEnumerator_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Exception_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_IDisposable_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Linq_Enumerable_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_NotImplementedException_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Object_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Reflection_MemberInfo_Binding.cs" />
T
tanghai 已提交
266 267
    <Compile Include="Assets\Model\ILBinding\System_Reflection_MethodBase_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\System_Reflection_PropertyInfo_Binding.cs" />
268
    <Compile Include="Assets\Model\ILBinding\System_Runtime_CompilerServices_TaskAwaiter_1_IResponse_Binding.cs" />
269
    <Compile Include="Assets\Model\ILBinding\System_String_Binding.cs" />
T
tanghai 已提交
270
    <Compile Include="Assets\Model\ILBinding\System_Text_StringBuilder_Binding.cs" />
271
    <Compile Include="Assets\Model\ILBinding\System_Threading_CancellationToken_Binding.cs" />
272
    <Compile Include="Assets\Model\ILBinding\System_Threading_Tasks_Task_1_IResponse_Binding.cs" />
273 274
    <Compile Include="Assets\Model\ILBinding\System_Type_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_Camera_Binding.cs" />
T
tanghai 已提交
275
    <Compile Include="Assets\Model\ILBinding\UnityEngine_Canvas_Binding.cs" />
276
    <Compile Include="Assets\Model\ILBinding\UnityEngine_Component_Binding.cs" />
T
tanghai 已提交
277
    <Compile Include="Assets\Model\ILBinding\UnityEngine_Debug_Binding.cs" />
278 279 280 281 282 283 284 285 286 287 288
    <Compile Include="Assets\Model\ILBinding\UnityEngine_GameObject_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_Input_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_LayerMask_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_Object_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_Physics_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_RaycastHit_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_TextAsset_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_Transform_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_UI_Button_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_UI_InputField_Binding.cs" />
    <Compile Include="Assets\Model\ILBinding\UnityEngine_Vector3_Binding.cs" />
289
    <Compile Include="Assets\Model\Init.cs" />
290
    <Compile Include="Assets\Model\Module\Actor\IActorMessage.cs" />
291
    <Compile Include="Assets\Model\Module\ActorLocation\IActorLocationMessage.cs" />
292 293 294 295 296 297 298 299 300 301 302
    <Compile Include="Assets\Model\Module\AssetsBundle\AssetsBundleLoaderAsync.cs" />
    <Compile Include="Assets\Model\Module\AssetsBundle\AssetsLoaderAsync.cs" />
    <Compile Include="Assets\Model\Module\AssetsBundle\BundleDownloaderComponent.cs" />
    <Compile Include="Assets\Model\Module\AssetsBundle\ResourcesComponent.cs" />
    <Compile Include="Assets\Model\Module\AssetsBundle\VersionConfig.cs" />
    <Compile Include="Assets\Model\Module\Config\ACategory.cs" />
    <Compile Include="Assets\Model\Module\Config\AConfigComponent.cs" />
    <Compile Include="Assets\Model\Module\Config\ConfigAttribute.cs" />
    <Compile Include="Assets\Model\Module\Config\ConfigComponent.cs" />
    <Compile Include="Assets\Model\Module\Config\ConfigHelper.cs" />
    <Compile Include="Assets\Model\Module\Config\IConfig.cs" />
303 304 305 306 307 308 309
    <Compile Include="Assets\Model\Module\Demo\AnimatorComponent.cs" />
    <Compile Include="Assets\Model\Module\Demo\CameraComponent.cs" />
    <Compile Include="Assets\Model\Module\Demo\MoveComponent.cs" />
    <Compile Include="Assets\Model\Module\Demo\Player.cs" />
    <Compile Include="Assets\Model\Module\Demo\PlayerComponent.cs" />
    <Compile Include="Assets\Model\Module\Demo\PlayerFactory.cs" />
    <Compile Include="Assets\Model\Module\Demo\SessionComponent.cs" />
T
tanghai 已提交
310
    <Compile Include="Assets\Model\Module\Demo\TurnComponent.cs" />
311 312 313 314
    <Compile Include="Assets\Model\Module\Demo\UI\UILoading\Component\UILoadingComponent.cs" />
    <Compile Include="Assets\Model\Module\Demo\UI\UILoading\System\LoadingBeginEvent_CreateLoadingUI.cs" />
    <Compile Include="Assets\Model\Module\Demo\UI\UILoading\System\LoadingFinishEvent_RemoveLoadingUI.cs" />
    <Compile Include="Assets\Model\Module\Demo\UI\UILoading\System\UILoadingFactory.cs" />
315 316
    <Compile Include="Assets\Model\Module\Demo\Unit.cs" />
    <Compile Include="Assets\Model\Module\Demo\UnitComponent.cs" />
317
    <Compile Include="Assets\Model\Module\Demo\UnitConfig.cs" />
318 319
    <Compile Include="Assets\Model\Module\Demo\UnitFactory.cs" />
    <Compile Include="Assets\Model\Module\Demo\UnitPathComponent.cs" />
320 321 322 323 324 325 326 327 328 329 330
    <Compile Include="Assets\Model\Module\Filter\FilterAttribute.cs" />
    <Compile Include="Assets\Model\Module\Filter\FilterComponent.cs" />
    <Compile Include="Assets\Model\Module\Filter\FilterEntity.cs" />
    <Compile Include="Assets\Model\Module\Filter\IFilter.cs" />
    <Compile Include="Assets\Model\Module\Message\AMHandler.cs" />
    <Compile Include="Assets\Model\Module\Message\ErrorCode.cs" />
    <Compile Include="Assets\Model\Module\Message\IMessage.cs" />
    <Compile Include="Assets\Model\Module\Message\IMessageDispatcher.cs" />
    <Compile Include="Assets\Model\Module\Message\IMessagePacker.cs" />
    <Compile Include="Assets\Model\Module\Message\IMHandler.cs" />
    <Compile Include="Assets\Model\Module\Message\MessageAttribute.cs" />
331
    <Compile Include="Assets\Model\Module\Message\MessageDispatcherComponent.cs" />
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
    <Compile Include="Assets\Model\Module\Message\MessageHandlerAttribute.cs" />
    <Compile Include="Assets\Model\Module\Message\MessageInfo.cs" />
    <Compile Include="Assets\Model\Module\Message\MessagePool.cs" />
    <Compile Include="Assets\Model\Module\Message\MessageProxy.cs" />
    <Compile Include="Assets\Model\Module\Message\NetOuterComponent.cs" />
    <Compile Include="Assets\Model\Module\Message\NetOuterComponentSystem.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\AChannel.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\AService.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\Circularbuffer.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\KCP\KChannel.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\KCP\Kcp.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\KCP\KService.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\NetworkHelper.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\TCP\PacketParser.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\TCP\TChannel.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\TCP\TService.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\WebSocket\WChannel.cs" />
    <Compile Include="Assets\Model\Module\Message\Network\WebSocket\WService.cs" />
    <Compile Include="Assets\Model\Module\Message\NetworkComponent.cs" />
    <Compile Include="Assets\Model\Module\Message\Opcode.cs" />
    <Compile Include="Assets\Model\Module\Message\OpcodeHelper.cs" />
    <Compile Include="Assets\Model\Module\Message\OpcodeTypeComponent.cs" />
    <Compile Include="Assets\Model\Module\Message\OuterMessage.cs" />
    <Compile Include="Assets\Model\Module\Message\OuterMessageDispatcher.cs" />
    <Compile Include="Assets\Model\Module\Message\OuterOpcode.cs" />
    <Compile Include="Assets\Model\Module\Message\ProtobufHelper.cs" />
    <Compile Include="Assets\Model\Module\Message\ProtobufPacker.cs" />
    <Compile Include="Assets\Model\Module\Message\RpcException.cs" />
    <Compile Include="Assets\Model\Module\Message\Session.cs" />
    <Compile Include="Assets\Model\Module\Message\SessionCallbackComponent.cs" />
    <Compile Include="Assets\Model\Module\Numeric\INumericWatcher.cs" />
    <Compile Include="Assets\Model\Module\Numeric\NumericChangeEvent_NotifyWatcher.cs" />
    <Compile Include="Assets\Model\Module\Numeric\NumericComponent.cs" />
    <Compile Include="Assets\Model\Module\Numeric\NumericType.cs" />
    <Compile Include="Assets\Model\Module\Numeric\NumericWatcher_Hp_ShowUI.cs" />
    <Compile Include="Assets\Model\Module\Numeric\NumericWatcherAttribute.cs" />
    <Compile Include="Assets\Model\Module\Numeric\NumericWatcherComponent.cs" />
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Behaviors\AIDestinationSetter.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Behaviors\Patrol.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\changelog.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\AI\AIBase.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\AI\AILerp.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\AI\AIPath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\AI\IAstarAI.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\AI\NavmeshController.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\AI\Seeker.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\AI\TurnBasedAI.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\astarclasses.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\AstarData.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\AstarPath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\GraphUpdateScene.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\GraphUpdateShape.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\AstarDebugger.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\Draw.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\EditorResourceHelper.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\GraphEditorBase.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\GraphModifier.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\GraphUpdateProcessor.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\GraphUtilities.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\MovementUtilities.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\NodeLink.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\PathInterpolator.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\StackPool.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\Misc\WorkItemProcessor.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\RVO\RVOAgent.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\RVO\RVOCoreObstacle.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\RVO\RVOCoreSimulator.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\RVO\RVOLine.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Core\RVO\RVOQuadtree.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\ExampleScenes\Example3_Recast_Navmesh1\MecanimBridge.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\ExampleScenes\ExampleScripts\MineBotAnimation.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\ExampleScenes\ExampleScripts\RecastTileUpdate.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\ExampleScenes\ExampleScripts\RecastTileUpdateHandler.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\ExampleScenes\ExampleScripts\TargetMover.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\ObjImporter.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\RecastBBTree.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\RecastMeshGatherer.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\RecastMeshObj.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\Voxels\VoxelClasses.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\Voxels\VoxelContour.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\Voxels\VoxelMesh.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\Voxels\VoxelPolygonClipper.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\Voxels\VoxelRasterization.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\Voxels\VoxelRegion.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Generators\Utilities\Voxels\VoxelUtility.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\MathHelper.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Modifiers\AdvancedSmooth.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Modifiers\AlternativePath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Modifiers\FunnelModifier.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Modifiers\Modifiers.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Modifiers\RadiusModifier.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Modifiers\RaycastModifier.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Modifiers\SimpleSmoothModifier.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Modifiers\StartEndModifier.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Navmesh\RelevantGraphSurface.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\PackageTools\EnumFlagAttribute.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\PackageTools\UniqueComponentAttribute.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\PackageTools\VersionedMonoBehaviour.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\RVO\RVOController.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\RVO\RVONavmesh.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\RVO\RVOObstacle.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\RVO\RVOSimulator.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\RVO\RVOSquareObstacle.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\TurnBased\BlockManager.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\TurnBased\SingleNodeBlocker.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\UnityHelper.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Utilities\AstarParallel.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Utilities\AstarProfiler.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Utilities\GraphGizmoHelper.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Utilities\GraphUpdateUtilities.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Utilities\PathUtilities.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Utilities\ProfileHelper.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Utilities\RetainedGizmos.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Utilities\UnityReferenceHelper.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\ArrayPool.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\AstarChecksum.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\AStarConfig.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\AstarDeserializer.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\AstarMath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\AstarMemory.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\BBTree.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\BinaryHeap.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\EuclideanEmbedding.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Funnel.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\GraphNode.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\GraphTransform.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Guid.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\INavmesh.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Int3.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\IntRect.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\ListPool.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\NavGraph.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\NavmeshBase.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\NavmeshTile.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\NN.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\ObjectPool.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Path.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Pathfinders\ABPath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Pathfinders\ConstantPath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Pathfinders\FleePath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Pathfinders\FloodPath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Pathfinders\FloodPathTracer.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Pathfinders\MultiTargetPath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Pathfinders\RandomPath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Pathfinders\XPath.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\PathFindHelper.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\PathHandler.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\PathPool.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\PathProcessor.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\PathReturnQueue.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\RecastGenerator.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Serialization\JsonSerializer.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Serialization\SimpleZipReplacement.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\Serialization\TinyJson.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\ThreadControlQueue.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\TriangleMeshNode.cs" />
    <Compile Include="Assets\Model\Module\Pathfinding\Recast\WindowsStoreCompatibility.cs" />
489 490 491 492 493 494 495 496
    <Compile Include="Assets\Model\Module\UI\CanvasConfig.cs" />
    <Compile Include="Assets\Model\Module\UI\LayerNames.cs" />
    <Compile Include="Assets\Model\Module\UI\UI.cs" />
    <Compile Include="Assets\Model\Module\UI\UIComponent.cs" />
    <Compile Include="Assets\Model\Module\UI\UIFactoryAttribute.cs" />
    <Compile Include="Assets\Model\Module\UI\UIType.cs" />
    <Compile Include="Assets\Model\Other\AppType.cs" />
    <Compile Include="Assets\Model\Other\Define.cs" />
497
    <Compile Include="Assets\Model\Other\GizmosDebug.cs" />
498
    <Compile Include="Assets\Model\Other\IInstanceMethod.cs" />
T
tanghai 已提交
499 500
    <Compile Include="Assets\Model\Other\ILStaticMethod.cs" />
    <Compile Include="Assets\Model\Other\MonoStaticMethod.cs" />
501 502
    <Compile Include="Assets\Model\Other\MotionType.cs" />
    <Compile Include="Assets\Model\Other\ReferenceCollector.cs" />
503 504 505 506 507 508 509
    <None Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\ExampleScenes\Materials\DiffuseAlwaysVisible.shader" />
    <None Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\ExampleScenes\_Example Scenes.txt" />
    <None Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Readme_upgrading.txt" />
    <None Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\ExampleScenes\Materials\Projector Light.shader" />
    <None Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\Readme.txt" />
    <None Include="Assets\Model\Unity.Model.asmdef" />
    <None Include="Assets\Model\Module\Pathfinding\AstarPathfindingProject\link.xml" />
510
    <Reference Include="UnityEngine.AIModule">
T
tanghai 已提交
511
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll</HintPath>
512 513
    </Reference>
    <Reference Include="UnityEngine.ARModule">
T
tanghai 已提交
514
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll</HintPath>
515 516
    </Reference>
    <Reference Include="UnityEngine.AccessibilityModule">
T
tanghai 已提交
517
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll</HintPath>
518
    </Reference>
519
    <Reference Include="UnityEngine.AnimationModule">
T
tanghai 已提交
520
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll</HintPath>
521
    </Reference>
522
    <Reference Include="UnityEngine.AssetBundleModule">
T
tanghai 已提交
523
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll</HintPath>
524
    </Reference>
525
    <Reference Include="UnityEngine.AudioModule">
T
tanghai 已提交
526
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll</HintPath>
527 528
    </Reference>
    <Reference Include="UnityEngine.BaselibModule">
T
tanghai 已提交
529
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.BaselibModule.dll</HintPath>
530 531
    </Reference>
    <Reference Include="UnityEngine.ClothModule">
T
tanghai 已提交
532
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll</HintPath>
T
tanghai 已提交
533 534
    </Reference>
    <Reference Include="UnityEngine.ClusterInputModule">
T
tanghai 已提交
535
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll</HintPath>
T
tanghai 已提交
536 537
    </Reference>
    <Reference Include="UnityEngine.ClusterRendererModule">
T
tanghai 已提交
538
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll</HintPath>
539
    </Reference>
540
    <Reference Include="UnityEngine.CoreModule">
T
tanghai 已提交
541
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll</HintPath>
542
    </Reference>
543
    <Reference Include="UnityEngine.CrashReportingModule">
T
tanghai 已提交
544
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll</HintPath>
545
    </Reference>
546
    <Reference Include="UnityEngine.DirectorModule">
T
tanghai 已提交
547
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll</HintPath>
548 549
    </Reference>
    <Reference Include="UnityEngine.FileSystemHttpModule">
T
tanghai 已提交
550
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.FileSystemHttpModule.dll</HintPath>
551 552
    </Reference>
    <Reference Include="UnityEngine.GameCenterModule">
T
tanghai 已提交
553
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll</HintPath>
554 555
    </Reference>
    <Reference Include="UnityEngine.GridModule">
T
tanghai 已提交
556
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll</HintPath>
557 558
    </Reference>
    <Reference Include="UnityEngine.HotReloadModule">
T
tanghai 已提交
559
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll</HintPath>
560 561
    </Reference>
    <Reference Include="UnityEngine.IMGUIModule">
T
tanghai 已提交
562
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll</HintPath>
563
    </Reference>
564
    <Reference Include="UnityEngine.ImageConversionModule">
T
tanghai 已提交
565
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll</HintPath>
566
    </Reference>
567
    <Reference Include="UnityEngine.InputModule">
T
tanghai 已提交
568
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll</HintPath>
569
    </Reference>
570
    <Reference Include="UnityEngine.JSONSerializeModule">
T
tanghai 已提交
571
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll</HintPath>
572
    </Reference>
573
    <Reference Include="UnityEngine.LocalizationModule">
T
tanghai 已提交
574
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll</HintPath>
575
    </Reference>
576
    <Reference Include="UnityEngine.ParticleSystemModule">
T
tanghai 已提交
577
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll</HintPath>
578 579
    </Reference>
    <Reference Include="UnityEngine.PerformanceReportingModule">
T
tanghai 已提交
580
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll</HintPath>
581
    </Reference>
582
    <Reference Include="UnityEngine.PhysicsModule">
T
tanghai 已提交
583
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll</HintPath>
584
    </Reference>
585
    <Reference Include="UnityEngine.Physics2DModule">
T
tanghai 已提交
586
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll</HintPath>
587
    </Reference>
588
    <Reference Include="UnityEngine.ProfilerModule">
T
tanghai 已提交
589
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll</HintPath>
590
    </Reference>
591
    <Reference Include="UnityEngine.ScreenCaptureModule">
T
tanghai 已提交
592
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll</HintPath>
593
    </Reference>
594
    <Reference Include="UnityEngine.SharedInternalsModule">
T
tanghai 已提交
595
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll</HintPath>
T
tanghai 已提交
596
    </Reference>
597
    <Reference Include="UnityEngine.SpatialTrackingModule">
T
tanghai 已提交
598
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpatialTrackingModule.dll</HintPath>
599
    </Reference>
600
    <Reference Include="UnityEngine.SpriteMaskModule">
T
tanghai 已提交
601
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll</HintPath>
602
    </Reference>
603
    <Reference Include="UnityEngine.SpriteShapeModule">
T
tanghai 已提交
604
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll</HintPath>
605
    </Reference>
606
    <Reference Include="UnityEngine.StreamingModule">
T
tanghai 已提交
607
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll</HintPath>
608
    </Reference>
609
    <Reference Include="UnityEngine.StyleSheetsModule">
T
tanghai 已提交
610
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StyleSheetsModule.dll</HintPath>
611
    </Reference>
612
    <Reference Include="UnityEngine.SubstanceModule">
T
tanghai 已提交
613
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll</HintPath>
614
    </Reference>
615
    <Reference Include="UnityEngine.TLSModule">
T
tanghai 已提交
616
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll</HintPath>
617
    </Reference>
618
    <Reference Include="UnityEngine.TerrainModule">
T
tanghai 已提交
619
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll</HintPath>
620
    </Reference>
621
    <Reference Include="UnityEngine.TerrainPhysicsModule">
T
tanghai 已提交
622
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll</HintPath>
623
    </Reference>
624
    <Reference Include="UnityEngine.TextCoreModule">
T
tanghai 已提交
625
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll</HintPath>
626
    </Reference>
627
    <Reference Include="UnityEngine.TextRenderingModule">
T
tanghai 已提交
628
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll</HintPath>
629
    </Reference>
630
    <Reference Include="UnityEngine.TilemapModule">
T
tanghai 已提交
631
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll</HintPath>
632
    </Reference>
633
    <Reference Include="UnityEngine.TimelineModule">
T
tanghai 已提交
634
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TimelineModule.dll</HintPath>
635
    </Reference>
636
    <Reference Include="UnityEngine.UIModule">
T
tanghai 已提交
637
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll</HintPath>
638
    </Reference>
639
    <Reference Include="UnityEngine.UIElementsModule">
T
tanghai 已提交
640
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll</HintPath>
641
    </Reference>
642
    <Reference Include="UnityEngine.UNETModule">
T
tanghai 已提交
643
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll</HintPath>
644
    </Reference>
645
    <Reference Include="UnityEngine.UmbraModule">
T
tanghai 已提交
646
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll</HintPath>
647
    </Reference>
648
    <Reference Include="UnityEngine.UnityConnectModule">
T
tanghai 已提交
649
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll</HintPath>
650 651
    </Reference>
    <Reference Include="UnityEngine.UnityTestProtocolModule">
T
tanghai 已提交
652
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll</HintPath>
653 654
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestModule">
T
tanghai 已提交
655
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll</HintPath>
656 657
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestAssetBundleModule">
T
tanghai 已提交
658
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
659 660
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestAudioModule">
T
tanghai 已提交
661
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
662 663
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestTextureModule">
T
tanghai 已提交
664
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
665 666
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestWWWModule">
T
tanghai 已提交
667
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
668 669
    </Reference>
    <Reference Include="UnityEngine.VFXModule">
T
tanghai 已提交
670
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll</HintPath>
671 672
    </Reference>
    <Reference Include="UnityEngine.VehiclesModule">
T
tanghai 已提交
673
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll</HintPath>
674 675
    </Reference>
    <Reference Include="UnityEngine.VideoModule">
T
tanghai 已提交
676
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll</HintPath>
677 678
    </Reference>
    <Reference Include="UnityEngine.WindModule">
T
tanghai 已提交
679
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll</HintPath>
680
    </Reference>
681
    <Reference Include="Unity.Locator">
T
tanghai 已提交
682
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/Unity.Locator.dll</HintPath>
683
    </Reference>
684
    <Reference Include="UnityEngine.UI">
T
tanghai 已提交
685
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll</HintPath>
686
    </Reference>
687
    <Reference Include="UnityEditor.UI">
T
tanghai 已提交
688
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/GUISystem/Editor/UnityEditor.UI.dll</HintPath>
689 690
    </Reference>
    <Reference Include="UnityEditor.TestRunner">
T
tanghai 已提交
691
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/TestRunner/Editor/UnityEditor.TestRunner.dll</HintPath>
692 693
    </Reference>
    <Reference Include="UnityEngine.TestRunner">
T
tanghai 已提交
694
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/TestRunner/UnityEngine.TestRunner.dll</HintPath>
695 696
    </Reference>
    <Reference Include="nunit.framework">
T
tanghai 已提交
697
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/TestRunner/net35/unity-custom/nunit.framework.dll</HintPath>
698 699
    </Reference>
    <Reference Include="UnityEngine.Timeline">
T
tanghai 已提交
700
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/Timeline/RuntimeEditor/UnityEngine.Timeline.dll</HintPath>
701 702
    </Reference>
    <Reference Include="UnityEditor.Timeline">
T
tanghai 已提交
703
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/Timeline/Editor/UnityEditor.Timeline.dll</HintPath>
704 705
    </Reference>
    <Reference Include="UnityEngine.Networking">
T
tanghai 已提交
706
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll</HintPath>
707 708
    </Reference>
    <Reference Include="UnityEditor.Networking">
T
tanghai 已提交
709
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/Networking/Editor/UnityEditor.Networking.dll</HintPath>
710 711
    </Reference>
    <Reference Include="UnityEditor.GoogleAudioSpatializer">
T
tanghai 已提交
712
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/UnityGoogleAudioSpatializer/Editor/UnityEditor.GoogleAudioSpatializer.dll</HintPath>
713 714
    </Reference>
    <Reference Include="UnityEngine.GoogleAudioSpatializer">
T
tanghai 已提交
715
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/UnityGoogleAudioSpatializer/RuntimeEditor/UnityEngine.GoogleAudioSpatializer.dll</HintPath>
716 717
    </Reference>
    <Reference Include="UnityEditor.SpatialTracking">
T
tanghai 已提交
718
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/UnitySpatialTracking/Editor/UnityEditor.SpatialTracking.dll</HintPath>
719 720
    </Reference>
    <Reference Include="UnityEngine.SpatialTracking">
T
tanghai 已提交
721
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/UnitySpatialTracking/RuntimeEditor/UnityEngine.SpatialTracking.dll</HintPath>
722 723
    </Reference>
    <Reference Include="UnityEditor.VR">
T
tanghai 已提交
724
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll</HintPath>
725 726
    </Reference>
    <Reference Include="UnityEditor.Graphs">
T
tanghai 已提交
727
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/Managed/UnityEditor.Graphs.dll</HintPath>
728
    </Reference>
T
tanghai 已提交
729
    <Reference Include="UnityEditor.OSXStandalone.Extensions">
T
tanghai 已提交
730
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll</HintPath>
731
    </Reference>
T
tanghai 已提交
732 733
    <Reference Include="ICSharpCode.SharpZipLib">
      <HintPath>/Users/tanghai/Source/ET/Unity/Assets/Plugins/ICSharpCode.SharpZipLib.dll</HintPath>
734 735
    </Reference>
    <Reference Include="Pathfinding.Ionic.Zip.Reduced">
T
tanghai 已提交
736 737 738 739
      <HintPath>/Users/tanghai/Source/ET/Unity/Assets/Plugins/AstarPathfindingProject/DotNetZip/Pathfinding.Ionic.Zip.Reduced.dll</HintPath>
    </Reference>
    <Reference Include="Pathfinding.ClipperLib">
      <HintPath>/Users/tanghai/Source/ET/Unity/Assets/Plugins/AstarPathfindingProject/Clipper/Pathfinding.ClipperLib.dll</HintPath>
740 741
    </Reference>
    <Reference Include="Pathfinding.Poly2Tri">
T
tanghai 已提交
742
      <HintPath>/Users/tanghai/Source/ET/Unity/Assets/Plugins/AstarPathfindingProject/Poly2Tri/Pathfinding.Poly2Tri.dll</HintPath>
743
    </Reference>
744
    <Reference Include="JetBrains.Rider.Unity.Editor.Plugin.Repacked">
T
tanghai 已提交
745
      <HintPath>/Users/tanghai/Source/ET/Unity/Assets/Plugins/Editor/JetBrains/JetBrains.Rider.Unity.Editor.Plugin.Repacked.dll</HintPath>
746 747
    </Reference>
    <Reference Include="NPOI.OOXML">
T
tanghai 已提交
748
      <HintPath>/Users/tanghai/Source/ET/Unity/Assets/Plugins/Editor/npoi/NPOI.OOXML.dll</HintPath>
749 750
    </Reference>
    <Reference Include="NPOI.OpenXml4Net">
T
tanghai 已提交
751
      <HintPath>/Users/tanghai/Source/ET/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXml4Net.dll</HintPath>
752 753
    </Reference>
    <Reference Include="NPOI.OpenXmlFormats">
T
tanghai 已提交
754 755 756 757
      <HintPath>/Users/tanghai/Source/ET/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXmlFormats.dll</HintPath>
    </Reference>
    <Reference Include="NPOI">
      <HintPath>/Users/tanghai/Source/ET/Unity/Assets/Plugins/Editor/npoi/NPOI.dll</HintPath>
758
    </Reference>
759
    <Reference Include="mscorlib">
T
tanghai 已提交
760
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll</HintPath>
761 762
    </Reference>
    <Reference Include="System">
T
tanghai 已提交
763
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll</HintPath>
764 765
    </Reference>
    <Reference Include="System.Core">
T
tanghai 已提交
766
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll</HintPath>
767 768
    </Reference>
    <Reference Include="System.Runtime.Serialization">
T
tanghai 已提交
769
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll</HintPath>
770 771
    </Reference>
    <Reference Include="System.Xml">
T
tanghai 已提交
772
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll</HintPath>
773 774
    </Reference>
    <Reference Include="System.Xml.Linq">
T
tanghai 已提交
775
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll</HintPath>
776 777
    </Reference>
    <Reference Include="System.Numerics">
T
tanghai 已提交
778
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll</HintPath>
779 780
    </Reference>
    <Reference Include="System.Numerics.Vectors">
T
tanghai 已提交
781
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll</HintPath>
782 783
    </Reference>
    <Reference Include="System.Net.Http">
T
tanghai 已提交
784
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll</HintPath>
785 786
    </Reference>
    <Reference Include="Microsoft.CSharp">
T
tanghai 已提交
787
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll</HintPath>
788 789
    </Reference>
    <Reference Include="System.Data">
T
tanghai 已提交
790
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll</HintPath>
791 792
    </Reference>
    <Reference Include="Microsoft.Win32.Primitives">
T
tanghai 已提交
793
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll</HintPath>
794 795
    </Reference>
    <Reference Include="System.AppContext">
T
tanghai 已提交
796
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll</HintPath>
797 798
    </Reference>
    <Reference Include="System.Collections.Concurrent">
T
tanghai 已提交
799
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll</HintPath>
800 801
    </Reference>
    <Reference Include="System.Collections.NonGeneric">
T
tanghai 已提交
802
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll</HintPath>
803 804
    </Reference>
    <Reference Include="System.Collections.Specialized">
T
tanghai 已提交
805
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll</HintPath>
806
    </Reference>
T
tanghai 已提交
807
    <Reference Include="System.Collections">
T
tanghai 已提交
808
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll</HintPath>
809
    </Reference>
T
tanghai 已提交
810
    <Reference Include="System.ComponentModel.Annotations">
T
tanghai 已提交
811
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll</HintPath>
812 813
    </Reference>
    <Reference Include="System.ComponentModel.EventBasedAsync">
T
tanghai 已提交
814
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll</HintPath>
815 816
    </Reference>
    <Reference Include="System.ComponentModel.Primitives">
T
tanghai 已提交
817
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll</HintPath>
818 819
    </Reference>
    <Reference Include="System.ComponentModel.TypeConverter">
T
tanghai 已提交
820
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll</HintPath>
T
tanghai 已提交
821 822
    </Reference>
    <Reference Include="System.ComponentModel">
T
tanghai 已提交
823
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll</HintPath>
824
    </Reference>
825
    <Reference Include="System.Console">
T
tanghai 已提交
826
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll</HintPath>
827 828
    </Reference>
    <Reference Include="System.Data.Common">
T
tanghai 已提交
829
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll</HintPath>
830 831
    </Reference>
    <Reference Include="System.Diagnostics.Contracts">
T
tanghai 已提交
832
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll</HintPath>
833 834
    </Reference>
    <Reference Include="System.Diagnostics.Debug">
T
tanghai 已提交
835
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll</HintPath>
836 837
    </Reference>
    <Reference Include="System.Diagnostics.FileVersionInfo">
T
tanghai 已提交
838
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll</HintPath>
839 840
    </Reference>
    <Reference Include="System.Diagnostics.Process">
T
tanghai 已提交
841
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll</HintPath>
842 843
    </Reference>
    <Reference Include="System.Diagnostics.StackTrace">
T
tanghai 已提交
844
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll</HintPath>
845 846
    </Reference>
    <Reference Include="System.Diagnostics.TextWriterTraceListener">
T
tanghai 已提交
847
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll</HintPath>
848 849
    </Reference>
    <Reference Include="System.Diagnostics.Tools">
T
tanghai 已提交
850
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll</HintPath>
851 852
    </Reference>
    <Reference Include="System.Diagnostics.TraceSource">
T
tanghai 已提交
853
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll</HintPath>
854 855
    </Reference>
    <Reference Include="System.Drawing.Primitives">
T
tanghai 已提交
856
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll</HintPath>
857 858
    </Reference>
    <Reference Include="System.Dynamic.Runtime">
T
tanghai 已提交
859
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll</HintPath>
860 861
    </Reference>
    <Reference Include="System.Globalization.Calendars">
T
tanghai 已提交
862
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll</HintPath>
863 864
    </Reference>
    <Reference Include="System.Globalization.Extensions">
T
tanghai 已提交
865
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll</HintPath>
866
    </Reference>
T
tanghai 已提交
867
    <Reference Include="System.Globalization">
T
tanghai 已提交
868
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll</HintPath>
869
    </Reference>
T
tanghai 已提交
870
    <Reference Include="System.IO.Compression.ZipFile">
T
tanghai 已提交
871
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll</HintPath>
872 873
    </Reference>
    <Reference Include="System.IO.FileSystem.DriveInfo">
T
tanghai 已提交
874
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll</HintPath>
875 876
    </Reference>
    <Reference Include="System.IO.FileSystem.Primitives">
T
tanghai 已提交
877
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll</HintPath>
878 879
    </Reference>
    <Reference Include="System.IO.FileSystem.Watcher">
T
tanghai 已提交
880
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll</HintPath>
T
tanghai 已提交
881 882
    </Reference>
    <Reference Include="System.IO.FileSystem">
T
tanghai 已提交
883
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll</HintPath>
884 885
    </Reference>
    <Reference Include="System.IO.IsolatedStorage">
T
tanghai 已提交
886
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll</HintPath>
887 888
    </Reference>
    <Reference Include="System.IO.MemoryMappedFiles">
T
tanghai 已提交
889
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll</HintPath>
890 891
    </Reference>
    <Reference Include="System.IO.Pipes">
T
tanghai 已提交
892
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll</HintPath>
893 894
    </Reference>
    <Reference Include="System.IO.UnmanagedMemoryStream">
T
tanghai 已提交
895
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll</HintPath>
896
    </Reference>
T
tanghai 已提交
897
    <Reference Include="System.IO">
T
tanghai 已提交
898
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll</HintPath>
899 900
    </Reference>
    <Reference Include="System.Linq.Expressions">
T
tanghai 已提交
901
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll</HintPath>
902 903
    </Reference>
    <Reference Include="System.Linq.Parallel">
T
tanghai 已提交
904
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll</HintPath>
905 906
    </Reference>
    <Reference Include="System.Linq.Queryable">
T
tanghai 已提交
907
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll</HintPath>
T
tanghai 已提交
908 909
    </Reference>
    <Reference Include="System.Linq">
T
tanghai 已提交
910
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll</HintPath>
911
    </Reference>
912
    <Reference Include="System.Net.Http.Rtc">
T
tanghai 已提交
913
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll</HintPath>
914 915
    </Reference>
    <Reference Include="System.Net.NameResolution">
T
tanghai 已提交
916
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll</HintPath>
917 918
    </Reference>
    <Reference Include="System.Net.NetworkInformation">
T
tanghai 已提交
919
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll</HintPath>
920 921
    </Reference>
    <Reference Include="System.Net.Ping">
T
tanghai 已提交
922
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll</HintPath>
923 924
    </Reference>
    <Reference Include="System.Net.Primitives">
T
tanghai 已提交
925
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll</HintPath>
926 927
    </Reference>
    <Reference Include="System.Net.Requests">
T
tanghai 已提交
928
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll</HintPath>
929 930
    </Reference>
    <Reference Include="System.Net.Security">
T
tanghai 已提交
931
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll</HintPath>
932 933
    </Reference>
    <Reference Include="System.Net.Sockets">
T
tanghai 已提交
934
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll</HintPath>
935 936
    </Reference>
    <Reference Include="System.Net.WebHeaderCollection">
T
tanghai 已提交
937
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll</HintPath>
938 939
    </Reference>
    <Reference Include="System.Net.WebSockets.Client">
T
tanghai 已提交
940
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll</HintPath>
941 942
    </Reference>
    <Reference Include="System.Net.WebSockets">
T
tanghai 已提交
943
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll</HintPath>
944 945
    </Reference>
    <Reference Include="System.ObjectModel">
T
tanghai 已提交
946
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll</HintPath>
947 948
    </Reference>
    <Reference Include="System.Reflection.Emit.ILGeneration">
T
tanghai 已提交
949
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll</HintPath>
950 951
    </Reference>
    <Reference Include="System.Reflection.Emit.Lightweight">
T
tanghai 已提交
952
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll</HintPath>
T
tanghai 已提交
953 954
    </Reference>
    <Reference Include="System.Reflection.Emit">
T
tanghai 已提交
955
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll</HintPath>
956 957
    </Reference>
    <Reference Include="System.Reflection.Extensions">
T
tanghai 已提交
958
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll</HintPath>
959 960
    </Reference>
    <Reference Include="System.Reflection.Primitives">
T
tanghai 已提交
961
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll</HintPath>
T
tanghai 已提交
962 963
    </Reference>
    <Reference Include="System.Reflection">
T
tanghai 已提交
964
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll</HintPath>
965 966
    </Reference>
    <Reference Include="System.Resources.Reader">
T
tanghai 已提交
967
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll</HintPath>
968 969
    </Reference>
    <Reference Include="System.Resources.ResourceManager">
T
tanghai 已提交
970
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll</HintPath>
971 972
    </Reference>
    <Reference Include="System.Resources.Writer">
T
tanghai 已提交
973
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll</HintPath>
974 975
    </Reference>
    <Reference Include="System.Runtime.CompilerServices.VisualC">
T
tanghai 已提交
976
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll</HintPath>
977 978
    </Reference>
    <Reference Include="System.Runtime.Extensions">
T
tanghai 已提交
979
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll</HintPath>
980 981
    </Reference>
    <Reference Include="System.Runtime.Handles">
T
tanghai 已提交
982
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll</HintPath>
983 984
    </Reference>
    <Reference Include="System.Runtime.InteropServices.RuntimeInformation">
T
tanghai 已提交
985
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
986 987
    </Reference>
    <Reference Include="System.Runtime.InteropServices.WindowsRuntime">
T
tanghai 已提交
988
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll</HintPath>
T
tanghai 已提交
989 990
    </Reference>
    <Reference Include="System.Runtime.InteropServices">
T
tanghai 已提交
991
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll</HintPath>
992 993
    </Reference>
    <Reference Include="System.Runtime.Numerics">
T
tanghai 已提交
994
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll</HintPath>
995 996
    </Reference>
    <Reference Include="System.Runtime.Serialization.Formatters">
T
tanghai 已提交
997
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll</HintPath>
998 999
    </Reference>
    <Reference Include="System.Runtime.Serialization.Json">
T
tanghai 已提交
1000
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll</HintPath>
1001 1002
    </Reference>
    <Reference Include="System.Runtime.Serialization.Primitives">
T
tanghai 已提交
1003
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll</HintPath>
1004 1005
    </Reference>
    <Reference Include="System.Runtime.Serialization.Xml">
T
tanghai 已提交
1006
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll</HintPath>
T
tanghai 已提交
1007 1008
    </Reference>
    <Reference Include="System.Runtime">
T
tanghai 已提交
1009
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll</HintPath>
1010 1011
    </Reference>
    <Reference Include="System.Security.Claims">
T
tanghai 已提交
1012
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll</HintPath>
1013 1014
    </Reference>
    <Reference Include="System.Security.Cryptography.Algorithms">
T
tanghai 已提交
1015
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll</HintPath>
1016 1017
    </Reference>
    <Reference Include="System.Security.Cryptography.Csp">
T
tanghai 已提交
1018
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll</HintPath>
1019 1020
    </Reference>
    <Reference Include="System.Security.Cryptography.Encoding">
T
tanghai 已提交
1021
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll</HintPath>
1022 1023
    </Reference>
    <Reference Include="System.Security.Cryptography.Primitives">
T
tanghai 已提交
1024
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll</HintPath>
1025 1026
    </Reference>
    <Reference Include="System.Security.Cryptography.X509Certificates">
T
tanghai 已提交
1027
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll</HintPath>
1028 1029
    </Reference>
    <Reference Include="System.Security.Principal">
T
tanghai 已提交
1030
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll</HintPath>
1031 1032
    </Reference>
    <Reference Include="System.Security.SecureString">
T
tanghai 已提交
1033
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll</HintPath>
1034 1035
    </Reference>
    <Reference Include="System.ServiceModel.Duplex">
T
tanghai 已提交
1036
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll</HintPath>
1037 1038
    </Reference>
    <Reference Include="System.ServiceModel.Http">
T
tanghai 已提交
1039
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll</HintPath>
1040 1041
    </Reference>
    <Reference Include="System.ServiceModel.NetTcp">
T
tanghai 已提交
1042
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll</HintPath>
1043 1044
    </Reference>
    <Reference Include="System.ServiceModel.Primitives">
T
tanghai 已提交
1045
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll</HintPath>
1046 1047
    </Reference>
    <Reference Include="System.ServiceModel.Security">
T
tanghai 已提交
1048
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll</HintPath>
1049 1050
    </Reference>
    <Reference Include="System.Text.Encoding.Extensions">
T
tanghai 已提交
1051
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll</HintPath>
1052
    </Reference>
T
tanghai 已提交
1053
    <Reference Include="System.Text.Encoding">
T
tanghai 已提交
1054
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll</HintPath>
1055
    </Reference>
T
tanghai 已提交
1056
    <Reference Include="System.Text.RegularExpressions">
T
tanghai 已提交
1057
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll</HintPath>
1058 1059
    </Reference>
    <Reference Include="System.Threading.Overlapped">
T
tanghai 已提交
1060
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll</HintPath>
1061 1062
    </Reference>
    <Reference Include="System.Threading.Tasks.Parallel">
T
tanghai 已提交
1063
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll</HintPath>
T
tanghai 已提交
1064 1065
    </Reference>
    <Reference Include="System.Threading.Tasks">
T
tanghai 已提交
1066
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll</HintPath>
1067 1068
    </Reference>
    <Reference Include="System.Threading.Thread">
T
tanghai 已提交
1069
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll</HintPath>
1070 1071
    </Reference>
    <Reference Include="System.Threading.ThreadPool">
T
tanghai 已提交
1072
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll</HintPath>
1073 1074
    </Reference>
    <Reference Include="System.Threading.Timer">
T
tanghai 已提交
1075
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll</HintPath>
T
tanghai 已提交
1076 1077
    </Reference>
    <Reference Include="System.Threading">
T
tanghai 已提交
1078
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll</HintPath>
1079 1080
    </Reference>
    <Reference Include="System.ValueTuple">
T
tanghai 已提交
1081
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll</HintPath>
1082 1083
    </Reference>
    <Reference Include="System.Xml.ReaderWriter">
T
tanghai 已提交
1084
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll</HintPath>
1085 1086
    </Reference>
    <Reference Include="System.Xml.XDocument">
T
tanghai 已提交
1087
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll</HintPath>
T
tanghai 已提交
1088 1089
    </Reference>
    <Reference Include="System.Xml.XPath.XDocument">
T
tanghai 已提交
1090
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll</HintPath>
T
tanghai 已提交
1091 1092
    </Reference>
    <Reference Include="System.Xml.XPath">
T
tanghai 已提交
1093
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll</HintPath>
1094 1095
    </Reference>
    <Reference Include="System.Xml.XmlDocument">
T
tanghai 已提交
1096
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll</HintPath>
1097 1098
    </Reference>
    <Reference Include="System.Xml.XmlSerializer">
T
tanghai 已提交
1099
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll</HintPath>
1100
    </Reference>
T
tanghai 已提交
1101
    <Reference Include="netstandard">
T
tanghai 已提交
1102
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll</HintPath>
1103
    </Reference>
1104
    <Reference Include="UnityScript">
T
tanghai 已提交
1105
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll</HintPath>
1106
    </Reference>
1107
    <Reference Include="UnityScript.Lang">
T
tanghai 已提交
1108
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll</HintPath>
1109
    </Reference>
1110
    <Reference Include="Boo.Lang">
T
tanghai 已提交
1111
      <HintPath>/Applications/Unity/2018.3.6f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll</HintPath>
1112
    </Reference>
1113 1114
  </ItemGroup>
  <ItemGroup>
1115 1116 1117 1118
    <ProjectReference Include="Unity.ThirdParty.csproj">
      <Project>{E15BADD2-3A26-309A-AB0F-DC5B08044350}</Project>
      <Name>Unity.ThirdParty</Name>
    </ProjectReference>
1119 1120
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1121 1122 1123 1124 1125 1126 1127
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
1128
</Project>