暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

XCharts.Runtime.csproj 86KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401
  1. <Project ToolsVersion="Current">
  2. <!-- Generated file, do not modify, your changes will be overwritten (use AssetPostprocessor.OnGeneratedCSProject) -->
  3. <PropertyGroup>
  4. <BaseIntermediateOutputPath>Temp\obj\$(Configuration)\$(MSBuildProjectName)</BaseIntermediateOutputPath>
  5. <IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath>
  6. </PropertyGroup>
  7. <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
  8. <ItemGroup>
  9. <ProjectCapability Include="Unity" />
  10. </ItemGroup>
  11. <PropertyGroup>
  12. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  13. <EnableDefaultItems>false</EnableDefaultItems>
  14. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  15. <LangVersion>9.0</LangVersion>
  16. <Configurations>Debug;Release</Configurations>
  17. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  18. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  19. <RootNamespace></RootNamespace>
  20. <OutputType>Library</OutputType>
  21. <AppDesignerFolder>Properties</AppDesignerFolder>
  22. <AssemblyName>XCharts.Runtime</AssemblyName>
  23. <TargetFramework>netstandard2.1</TargetFramework>
  24. <BaseDirectory>.</BaseDirectory>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  27. <DebugSymbols>true</DebugSymbols>
  28. <DebugType>full</DebugType>
  29. <Optimize>false</Optimize>
  30. <OutputPath>Temp\bin\Debug\</OutputPath>
  31. <DefineConstants>UNITY_6000_0_9;UNITY_6000_0;UNITY_6000;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;UNITY_2023_1_OR_NEWER;UNITY_2023_2_OR_NEWER;UNITY_2023_3_OR_NEWER;UNITY_6000_0_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_MARSHALLING_TESTS;ENABLE_VIDEO;ENABLE_NAVIGATION_OFFMESHLINK_TO_NAVMESHLINK;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_ACCESSIBILITY;TEXTCORE_1_0_OR_NEWER;EDITOR_ONLY_NAVMESH_BUILDER_DEPRECATED;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_ETC_COMPRESSION;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;PLATFORM_EXTENDS_VULKAN_PIPELINE_CACHE;PLATFORM_SUPPORTS_SPLIT_GRAPHICS_JOBS;PLATFORM_HAS_ADDITIONAL_API_CHECKS;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;NET_UNITY_4_8;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;TEXTCORE_TEXT_ENGINE_1_5_OR_NEWER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <NoWarn>0169;USG0001</NoWarn>
  35. <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
  36. </PropertyGroup>
  37. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  38. <DebugType>pdbonly</DebugType>
  39. <Optimize>true</Optimize>
  40. <OutputPath>Temp\bin\Release\</OutputPath>
  41. <ErrorReport>prompt</ErrorReport>
  42. <WarningLevel>4</WarningLevel>
  43. <NoWarn>0169;USG0001</NoWarn>
  44. <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
  45. </PropertyGroup>
  46. <PropertyGroup>
  47. <NoStandardLibraries>true</NoStandardLibraries>
  48. <NoStdLib>true</NoStdLib>
  49. <NoConfig>true</NoConfig>
  50. <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
  51. <MSBuildWarningsAsMessages>MSB3277</MSBuildWarningsAsMessages>
  52. </PropertyGroup>
  53. <PropertyGroup>
  54. <UnityProjectGenerator>Package</UnityProjectGenerator>
  55. <UnityProjectGeneratorVersion>2.0.22</UnityProjectGeneratorVersion>
  56. <UnityProjectGeneratorStyle>SDK</UnityProjectGeneratorStyle>
  57. <UnityProjectType>Game:1</UnityProjectType>
  58. <UnityBuildTarget>Android:13</UnityBuildTarget>
  59. <UnityVersion>6000.0.9f1</UnityVersion>
  60. </PropertyGroup>
  61. <ItemGroup>
  62. <Analyzer Include="C:\Users\tlton\.vscode\extensions\visualstudiotoolsforunity.vstuc-1.0.5\Analyzers\Microsoft.Unity.Analyzers.dll" />
  63. <Analyzer Include="D:\Unity\6000.0.9f1\Editor\Data\Tools\Unity.SourceGenerators\Unity.SourceGenerators.dll" />
  64. <Analyzer Include="D:\Unity\6000.0.9f1\Editor\Data\Tools\Unity.SourceGenerators\Unity.Properties.SourceGenerator.dll" />
  65. <Analyzer Include="D:\Unity\6000.0.9f1\Editor\Data\Tools\Unity.SourceGenerators\Unity.UIToolkit.SourceGenerator.dll" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="Assets\XCharts-master\Runtime\Serie\Candlestick\SimplifiedCandlestick.cs" />
  69. <Compile Include="Assets\XCharts-master\Runtime\Chart\ParallelChart.cs" />
  70. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\INeedSerieContainer.cs" />
  71. <Compile Include="Assets\XCharts-master\Runtime\Serie\Bar\BarHandler.PolarCoord.cs" />
  72. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\ArrowStyle.cs" />
  73. <Compile Include="Assets\XCharts-master\Runtime\Serie\SerieContext.cs" />
  74. <Compile Include="Assets\XCharts-master\Runtime\Internal\Pools\SerieLabelPool.cs" />
  75. <Compile Include="Assets\XCharts-master\Runtime\Component\Debug\DebugInfo.cs" />
  76. <Compile Include="Assets\XCharts-master\Runtime\Component\DataZoom\DataZoomHandler.cs" />
  77. <Compile Include="Assets\XCharts-master\Runtime\Component\Title\Title.cs" />
  78. <Compile Include="Assets\XCharts-master\Runtime\Coord\Calendar\CalendarCoordHandler.cs" />
  79. <Compile Include="Assets\XCharts-master\Runtime\Serie\Heatmap\Heatmap.cs" />
  80. <Compile Include="Assets\XCharts-master\Runtime\XUGL\UGLExample.cs" />
  81. <Compile Include="Assets\XCharts-master\Runtime\Component\Label\SerieLabelHelper.cs" />
  82. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\ISerieContainer.cs" />
  83. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\CoordOptionsAttribute.cs" />
  84. <Compile Include="Assets\XCharts-master\Runtime\Component\Radar\RadarCoordContext.cs" />
  85. <Compile Include="Assets\XCharts-master\Runtime\Component\VisualMap\VisualMapContext.cs" />
  86. <Compile Include="Assets\XCharts-master\Runtime\Coord\Grid\GridCoord.cs" />
  87. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisTick.cs" />
  88. <Compile Include="Assets\XCharts-master\Runtime\Coord\Parallel\ParallelCoordContext.cs" />
  89. <Compile Include="Assets\XCharts-master\Runtime\Component\Legend\LegendHandler.cs" />
  90. <Compile Include="Assets\XCharts-master\Runtime\Coord\Grid\GridCoordHandler.cs" />
  91. <Compile Include="Assets\XCharts-master\Runtime\Serie\SeriesHelper.cs" />
  92. <Compile Include="Assets\XCharts-master\Runtime\Serie\Scatter\BaseScatter.cs" />
  93. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\YAxis\YAxisHander.cs" />
  94. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\DefaultAnimationAttribute.cs" />
  95. <Compile Include="Assets\XCharts-master\Runtime\Internal\Utilities\ComponentHelper.cs" />
  96. <Compile Include="Assets\XCharts-master\Runtime\Internal\Basic\MainComponentContext.cs" />
  97. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\SerieConvertAttribute.cs" />
  98. <Compile Include="Assets\XCharts-master\Runtime\Internal\BaseChart.API.cs" />
  99. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\ItemStyle.cs" />
  100. <Compile Include="Assets\XCharts-master\Runtime\Internal\Utilities\ChartHelper.cs" />
  101. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\TextPadding.cs" />
  102. <Compile Include="Assets\XCharts-master\Runtime\Component\Legend\LegendContext.cs" />
  103. <Compile Include="Assets\XCharts-master\Runtime\Internal\Object\ChartLabel.cs" />
  104. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisName.cs" />
  105. <Compile Include="Assets\XCharts-master\Runtime\Chart\HeatmapChart.cs" />
  106. <Compile Include="Assets\XCharts-master\Runtime\Component\Tooltip\TooltipView.cs" />
  107. <Compile Include="Assets\XCharts-master\Runtime\I18n\Lang.cs" />
  108. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\ISerieExtraComponent.cs" />
  109. <Compile Include="Assets\XCharts-master\Runtime\Theme\LegendTheme.cs" />
  110. <Compile Include="Assets\XCharts-master\Runtime\Serie\Bar\BarHandler.cs" />
  111. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\SingleAxis\SingleAxis.cs" />
  112. <Compile Include="Assets\XCharts-master\Runtime\Serie\SerieDataContext.cs" />
  113. <Compile Include="Assets\XCharts-master\Runtime\Internal\XCThemeMgr.cs" />
  114. <Compile Include="Assets\XCharts-master\Runtime\Component\Background\Background.cs" />
  115. <Compile Include="Assets\XCharts-master\Runtime\Component\Comment\CommentItem.cs" />
  116. <Compile Include="Assets\XCharts-master\Runtime\Component\Label\LabelLine.cs" />
  117. <Compile Include="Assets\XCharts-master\Runtime\Component\Comment\CommentMarkStyle.cs" />
  118. <Compile Include="Assets\XCharts-master\Runtime\Theme\DataZoomTheme.cs" />
  119. <Compile Include="Assets\XCharts-master\Runtime\Component\Background\BackgroundHandler.cs" />
  120. <Compile Include="Assets\XCharts-master\Runtime\XUGL\UGLHelper.cs" />
  121. <Compile Include="Assets\XCharts-master\Runtime\Theme\Theme.cs" />
  122. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\YAxis\YAxis.cs" />
  123. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\Enums.cs" />
  124. <Compile Include="Assets\XCharts-master\Runtime\Serie\SerieHandler.cs" />
  125. <Compile Include="Assets\XCharts-master\Runtime\XUGL\UGL.cs" />
  126. <Compile Include="Assets\XCharts-master\Runtime\Serie\Line\LineHandler.cs" />
  127. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisSplitArea.cs" />
  128. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\ListForSerieAttribute.cs" />
  129. <Compile Include="Assets\XCharts-master\Runtime\Component\State\SelectStyle.cs" />
  130. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AngleAxis\AngleAxis.cs" />
  131. <Compile Include="Assets\XCharts-master\Runtime\Serie\Serie.ExtraComponent.cs" />
  132. <Compile Include="Assets\XCharts-master\Runtime\Serie\Parallel\Parallel.cs" />
  133. <Compile Include="Assets\XCharts-master\Runtime\Component\Tooltip\TooltipHandler.cs" />
  134. <Compile Include="Assets\XCharts-master\Runtime\Internal\Painter.cs" />
  135. <Compile Include="Assets\XCharts-master\Runtime\Internal\BaseGraph.cs" />
  136. <Compile Include="Assets\XCharts-master\Runtime\Component\DataZoom\DataZoomContext.cs" />
  137. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\Axis.cs" />
  138. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\RequireChartComponentAttribute.cs" />
  139. <Compile Include="Assets\XCharts-master\Runtime\Internal\Utilities\ChartConst.cs" />
  140. <Compile Include="Assets\XCharts-master\Runtime\Internal\Pools\ObjectPool.cs" />
  141. <Compile Include="Assets\XCharts-master\Runtime\Chart\ScatterChart.cs" />
  142. <Compile Include="Assets\XCharts-master\Runtime\Component\State\BlurStyle.cs" />
  143. <Compile Include="Assets\XCharts-master\Runtime\XUGL\SVG\SVGPathSegType.cs" />
  144. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\RadiusAxis\RadiusAxis.cs" />
  145. <Compile Include="Assets\XCharts-master\Runtime\Serie\Serie.cs" />
  146. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\AreaStyle.cs" />
  147. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisLabel.cs" />
  148. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\ITooltipView.cs" />
  149. <Compile Include="Assets\XCharts-master\Runtime\Utilities\RuntimeUtil.cs" />
  150. <Compile Include="Assets\XCharts-master\Runtime\Helper\FormatterHelper.cs" />
  151. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\ComponentHandlerAttribute.cs" />
  152. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\TextStyle.cs" />
  153. <Compile Include="Assets\XCharts-master\Runtime\Theme\TooltipTheme.cs" />
  154. <Compile Include="Assets\XCharts-master\Runtime\Internal\Basic\BaseSerie.cs" />
  155. <Compile Include="Assets\XCharts-master\Runtime\Component\Title\TitleStyle.cs" />
  156. <Compile Include="Assets\XCharts-master\Runtime\Chart\PieChart.cs" />
  157. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisMinorSplitLine.cs" />
  158. <Compile Include="Assets\XCharts-master\Runtime\Serie\Scatter\ScatterHandler.cs" />
  159. <Compile Include="Assets\XCharts-master\Runtime\Internal\Basic\MainComponent.cs" />
  160. <Compile Include="Assets\XCharts-master\Runtime\Component\Tooltip\TooltipContext.cs" />
  161. <Compile Include="Assets\XCharts-master\Runtime\Serie\Pie\PieHandler.cs" />
  162. <Compile Include="Assets\XCharts-master\Runtime\Internal\Object\ChartText.cs" />
  163. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\LineArrow.cs" />
  164. <Compile Include="Assets\XCharts-master\Runtime\Chart\PolarChart.cs" />
  165. <Compile Include="Assets\XCharts-master\Runtime\Utilities\PropertyUtil.cs" />
  166. <Compile Include="Assets\XCharts-master\Runtime\Internal\Utilities\ChartCached.cs" />
  167. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\TextLimit.cs" />
  168. <Compile Include="Assets\XCharts-master\Runtime\Component\Animation\AnimationStyleHelper.cs" />
  169. <Compile Include="Assets\XCharts-master\Runtime\Component\Legend\LegendHelper.cs" />
  170. <Compile Include="Assets\XCharts-master\Runtime\Internal\Basic\ChildComponent.cs" />
  171. <Compile Include="Assets\XCharts-master\Runtime\Component\VisualMap\VisualMapHelper.cs" />
  172. <Compile Include="Assets\XCharts-master\Runtime\Coord\Grid\GridCoordContext.cs" />
  173. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisHelper.cs" />
  174. <Compile Include="Assets\XCharts-master\Runtime\Utilities\ReflectionUtil.cs" />
  175. <Compile Include="Assets\XCharts-master\Runtime\Serie\SerieHelper.cs" />
  176. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\ListForComponentAttribute.cs" />
  177. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\ListForAttribute.cs" />
  178. <Compile Include="Assets\XCharts-master\Runtime\Serie\Bar\SimplifiedBar.cs" />
  179. <Compile Include="Assets\XCharts-master\Runtime\Serie\SerieData.cs" />
  180. <Compile Include="Assets\XCharts-master\Runtime\Internal\Object\LegendItem.cs" />
  181. <Compile Include="Assets\XCharts-master\Runtime\Internal\Utilities\MathUtil.cs" />
  182. <Compile Include="Assets\XCharts-master\Runtime\Chart\BarChart.cs" />
  183. <Compile Include="Assets\XCharts-master\Runtime\Serie\Line\Line.cs" />
  184. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\IUpdateRuntimeData.cs" />
  185. <Compile Include="Assets\XCharts-master\Runtime\Internal\BaseChart.Component.cs" />
  186. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisMinorTick.cs" />
  187. <Compile Include="Assets\XCharts-master\Runtime\Serie\Ring\Ring.cs" />
  188. <Compile Include="Assets\XCharts-master\Runtime\Serie\Radar\Radar.cs" />
  189. <Compile Include="Assets\XCharts-master\Runtime\Serie\Bar\Bar.cs" />
  190. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\DelegateFunction.cs" />
  191. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\SerieHandlerAttribute.cs" />
  192. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\ParallelAxis\ParallelAxis.cs" />
  193. <Compile Include="Assets\XCharts-master\Runtime\Component\Mark\MarkLineHandler.cs" />
  194. <Compile Include="Assets\XCharts-master\Runtime\Serie\SerieParams.cs" />
  195. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\IconStyle.cs" />
  196. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\IgnoreDocAttribute.cs" />
  197. <Compile Include="Assets\XCharts-master\Runtime\Serie\Scatter\BaseScatterHandler.cs" />
  198. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\IPropertyChanged.cs" />
  199. <Compile Include="Assets\XCharts-master\Runtime\Internal\XCResourcesImporter.cs" />
  200. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\Padding.cs" />
  201. <Compile Include="Assets\XCharts-master\Runtime\Chart\RadarChart.cs" />
  202. <Compile Include="Assets\XCharts-master\Runtime\Theme\AxisTheme.cs" />
  203. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\XAxis\XAxis.cs" />
  204. <Compile Include="Assets\XCharts-master\Runtime\Serie\Ring\RingHandler.cs" />
  205. <Compile Include="Assets\XCharts-master\Runtime\Component\State\StateStyle.cs" />
  206. <Compile Include="Assets\XCharts-master\Runtime\Component\Tooltip\Tooltip.cs" />
  207. <Compile Include="Assets\XCharts-master\Runtime\Component\Animation\AnimationStyle.cs" />
  208. <Compile Include="Assets\XCharts-master\Runtime\Coord\Parallel\ParallelCoordHandler.cs" />
  209. <Compile Include="Assets\XCharts-master\Runtime\Internal\Basic\CoordSystem.cs" />
  210. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\SingleAxis\SingleAxisHandler.cs" />
  211. <Compile Include="Assets\XCharts-master\Runtime\Serie\Candlestick\CandlestickHandler.cs" />
  212. <Compile Include="Assets\XCharts-master\Runtime\Serie\Pie\Pie.cs" />
  213. <Compile Include="Assets\XCharts-master\Runtime\Serie\Candlestick\Candlestick.cs" />
  214. <Compile Include="Assets\XCharts-master\Runtime\Helper\CheckHelper.cs" />
  215. <Compile Include="Assets\XCharts-master\Runtime\XUGL\SVG\SVGPathSeg.cs" />
  216. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\Location.cs" />
  217. <Compile Include="Assets\XCharts-master\Runtime\Internal\BaseChart.Draw.cs" />
  218. <Compile Include="Assets\XCharts-master\Runtime\Component\Legend\Legend.cs" />
  219. <Compile Include="Assets\XCharts-master\Runtime\Component\Interaction\InteractData.cs" />
  220. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\RadiusAxis\RadiusAxisHandler.cs" />
  221. <Compile Include="Assets\XCharts-master\Runtime\Internal\Utilities\ChartDrawer.cs" />
  222. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\SinceAttribute.cs" />
  223. <Compile Include="Assets\XCharts-master\Runtime\Internal\Utilities\LayoutHelper.cs" />
  224. <Compile Include="Assets\XCharts-master\Runtime\Chart\LineChart.cs" />
  225. <Compile Include="Assets\XCharts-master\Runtime\Chart\SimplifiedLineChart.cs" />
  226. <Compile Include="Assets\XCharts-master\Runtime\Serie\Heatmap\HeatmapHandler.PolarCoord.cs" />
  227. <Compile Include="Assets\XCharts-master\Runtime\Serie\Heatmap\HeatmapHandler.cs" />
  228. <Compile Include="Assets\XCharts-master\Runtime\Chart\SimplifiedCandlestickChart.cs" />
  229. <Compile Include="Assets\XCharts-master\Runtime\Internal\BaseChart.Serie.cs" />
  230. <Compile Include="Assets\XCharts-master\Runtime\Chart\RingChart.cs" />
  231. <Compile Include="Assets\XCharts-master\Runtime\Component\DataZoom\DataZoomHelper.cs" />
  232. <Compile Include="Assets\XCharts-master\Runtime\Coord\Polar\PolarCoordHandler.cs" />
  233. <Compile Include="Assets\XCharts-master\Runtime\Widgets\SVGImage.cs" />
  234. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisLine.cs" />
  235. <Compile Include="Assets\XCharts-master\Runtime\Theme\SubTitleTheme.cs" />
  236. <Compile Include="Assets\XCharts-master\Runtime\Theme\SerieTheme.cs" />
  237. <Compile Include="Assets\XCharts-master\Runtime\Coord\Polar\PolarCoordContext.cs" />
  238. <Compile Include="Assets\XCharts-master\Runtime\Internal\Utilities\DataHelper.cs" />
  239. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisSplitLine.cs" />
  240. <Compile Include="Assets\XCharts-master\Runtime\Theme\ComponentTheme.cs" />
  241. <Compile Include="Assets\XCharts-master\Runtime\Coord\Polar\PolarCoord.cs" />
  242. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\XAxis\XAxisHander.cs" />
  243. <Compile Include="Assets\XCharts-master\Runtime\Component\Radar\RadarCoordHandler.cs" />
  244. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\ISerieDataComponent.cs" />
  245. <Compile Include="Assets\XCharts-master\Runtime\Serie\Bar\SimplifiedBarHandler.cs" />
  246. <Compile Include="Assets\XCharts-master\Runtime\Utilities\DateTimeUtil.cs" />
  247. <Compile Include="Assets\XCharts-master\Runtime\Internal\BaseChart.cs" />
  248. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\SymbolStyle.cs" />
  249. <Compile Include="Assets\XCharts-master\Runtime\Internal\Pools\SerieDataPool.cs" />
  250. <Compile Include="Assets\XCharts-master\Runtime\Coord\SingleAxis\SingleAxisCoord.cs" />
  251. <Compile Include="Assets\XCharts-master\Runtime\Serie\Line\SimplifiedLineHandler.cs" />
  252. <Compile Include="Assets\XCharts-master\Runtime\Serie\Scatter\Scatter.cs" />
  253. <Compile Include="Assets\XCharts-master\Runtime\Internal\Pools\ListPool.cs" />
  254. <Compile Include="Assets\XCharts-master\Runtime\Utilities\ColorUtil.cs" />
  255. <Compile Include="Assets\XCharts-master\Runtime\Component\Radar\RadarCoord.cs" />
  256. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\LineStyle.cs" />
  257. <Compile Include="Assets\XCharts-master\Runtime\Component\Mark\MarkLine.cs" />
  258. <Compile Include="Assets\XCharts-master\Runtime\Internal\Object\ChartObject.cs" />
  259. <Compile Include="Assets\XCharts-master\Runtime\Component\Mark\MarkArea.cs" />
  260. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\MarqueeStyle.cs" />
  261. <Compile Include="Assets\XCharts-master\Runtime\Component\Label\EndLabelStyle.cs" />
  262. <Compile Include="Assets\XCharts-master\Runtime\Component\VisualMap\VisualMap.cs" />
  263. <Compile Include="Assets\XCharts-master\Runtime\Internal\XCSettings.cs" />
  264. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\SerieDataExtraFieldAttribute.cs" />
  265. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AngleAxis\AngleAxisHandler.cs" />
  266. <Compile Include="Assets\XCharts-master\Runtime\Coord\Polar\PolarHelper.cs" />
  267. <Compile Include="Assets\XCharts-master\Runtime\Internal\Misc\ISimplifiedSerie.cs" />
  268. <Compile Include="Assets\XCharts-master\Runtime\Serie\Line\SimplifiedLine.cs" />
  269. <Compile Include="Assets\XCharts-master\Runtime\Utilities\DefineSymbolsUtil.cs" />
  270. <Compile Include="Assets\XCharts-master\Runtime\Internal\Utilities\InputHelper.cs" />
  271. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\ImageStyle.cs" />
  272. <Compile Include="Assets\XCharts-master\Runtime\Chart\CandlestickChart.cs" />
  273. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisContext.cs" />
  274. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\StageColor.cs" />
  275. <Compile Include="Assets\XCharts-master\Runtime\Component\Comment\Comment.cs" />
  276. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\SerieDataExtraComponentAttribute.cs" />
  277. <Compile Include="Assets\XCharts-master\Runtime\Serie\Radar\RadarHandler.cs" />
  278. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\LevelStyle.cs" />
  279. <Compile Include="Assets\XCharts-master\Runtime\Coord\Parallel\ParallelCoord.cs" />
  280. <Compile Include="Assets\XCharts-master\Runtime\Internal\BaseGraph.API.cs" />
  281. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\BaseLine.cs" />
  282. <Compile Include="Assets\XCharts-master\Runtime\Component\Tooltip\TooltipHelper.cs" />
  283. <Compile Include="Assets\XCharts-master\Runtime\Chart\SimplifiedBarChart.cs" />
  284. <Compile Include="Assets\XCharts-master\Runtime\Component\State\EmphasisStyle.cs" />
  285. <Compile Include="Assets\XCharts-master\Runtime\Internal\Attributes\SerieExtraComponentAttribute.cs" />
  286. <Compile Include="Assets\XCharts-master\Runtime\Theme\VisualMapTheme.cs" />
  287. <Compile Include="Assets\XCharts-master\Runtime\Serie\Scatter\EffectScatterHandler.cs" />
  288. <Compile Include="Assets\XCharts-master\Runtime\Component\Mark\MarkLineHelper.cs" />
  289. <Compile Include="Assets\XCharts-master\Runtime\Serie\Line\LineHelper.cs" />
  290. <Compile Include="Assets\XCharts-master\Runtime\Theme\TitleTheme.cs" />
  291. <Compile Include="Assets\XCharts-master\Runtime\XUGL\SVG\SVG.cs" />
  292. <Compile Include="Assets\XCharts-master\Runtime\Serie\Candlestick\SimplifiedCandlestickHandler.cs" />
  293. <Compile Include="Assets\XCharts-master\Runtime\Component\Comment\CommentHander.cs" />
  294. <Compile Include="Assets\XCharts-master\Runtime\Component\Settings\Settings.cs" />
  295. <Compile Include="Assets\XCharts-master\Runtime\Serie\Scatter\EffectScatter.cs" />
  296. <Compile Include="Assets\XCharts-master\Runtime\Component\Child\SerieSymbl.cs" />
  297. <Compile Include="Assets\XCharts-master\Runtime\Serie\Parallel\ParallelHandler.cs" />
  298. <Compile Include="Assets\XCharts-master\Runtime\Component\VisualMap\VisualMapHandler.cs" />
  299. <Compile Include="Assets\XCharts-master\Runtime\Component\Animation\AnimationStyleContext.cs" />
  300. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\ParallelAxis\ParallelAxisHander.cs" />
  301. <Compile Include="Assets\XCharts-master\Runtime\XUGL\SVG\SVGPath.cs" />
  302. <Compile Include="Assets\XCharts-master\Runtime\Component\Mark\MarkAreaHandler.cs" />
  303. <Compile Include="Assets\XCharts-master\Runtime\Internal\XChartsMgr.cs" />
  304. <Compile Include="Assets\XCharts-master\Runtime\Internal\BaseChart.Custom.cs" />
  305. <Compile Include="Assets\XCharts-master\Runtime\Component\DataZoom\DataZoom.cs" />
  306. <Compile Include="Assets\XCharts-master\Runtime\Component\Axis\AxisHandler.cs" />
  307. <Compile Include="Assets\XCharts-master\Runtime\Theme\ThemeStyle.cs" />
  308. <Compile Include="Assets\XCharts-master\Runtime\Coord\Calendar\CalendarCoord.cs" />
  309. <Compile Include="Assets\XCharts-master\Runtime\Serie\Line\LineHandler.GridCoord.cs" />
  310. <Compile Include="Assets\XCharts-master\Runtime\Serie\Line\LineHandler.PolarCoord.cs" />
  311. <Compile Include="Assets\XCharts-master\Runtime\Component\Title\TitleHandler.cs" />
  312. <Compile Include="Assets\XCharts-master\Runtime\Component\Label\LabelStyle.cs" />
  313. </ItemGroup>
  314. <ItemGroup>
  315. <None Include="Assets\XCharts-master\Runtime\XCharts.Runtime.asmdef" />
  316. </ItemGroup>
  317. <ItemGroup>
  318. <Reference Include="UnityEngine">
  319. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>
  320. <Private>False</Private>
  321. </Reference>
  322. <Reference Include="UnityEngine.AIModule">
  323. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll</HintPath>
  324. <Private>False</Private>
  325. </Reference>
  326. <Reference Include="UnityEngine.ARModule">
  327. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll</HintPath>
  328. <Private>False</Private>
  329. </Reference>
  330. <Reference Include="UnityEngine.AccessibilityModule">
  331. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll</HintPath>
  332. <Private>False</Private>
  333. </Reference>
  334. <Reference Include="UnityEngine.AndroidJNIModule">
  335. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll</HintPath>
  336. <Private>False</Private>
  337. </Reference>
  338. <Reference Include="UnityEngine.AnimationModule">
  339. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll</HintPath>
  340. <Private>False</Private>
  341. </Reference>
  342. <Reference Include="UnityEngine.AssetBundleModule">
  343. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll</HintPath>
  344. <Private>False</Private>
  345. </Reference>
  346. <Reference Include="UnityEngine.AudioModule">
  347. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll</HintPath>
  348. <Private>False</Private>
  349. </Reference>
  350. <Reference Include="UnityEngine.ClothModule">
  351. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll</HintPath>
  352. <Private>False</Private>
  353. </Reference>
  354. <Reference Include="UnityEngine.ContentLoadModule">
  355. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll</HintPath>
  356. <Private>False</Private>
  357. </Reference>
  358. <Reference Include="UnityEngine.CoreModule">
  359. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll</HintPath>
  360. <Private>False</Private>
  361. </Reference>
  362. <Reference Include="UnityEngine.CrashReportingModule">
  363. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll</HintPath>
  364. <Private>False</Private>
  365. </Reference>
  366. <Reference Include="UnityEngine.DSPGraphModule">
  367. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll</HintPath>
  368. <Private>False</Private>
  369. </Reference>
  370. <Reference Include="UnityEngine.DirectorModule">
  371. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll</HintPath>
  372. <Private>False</Private>
  373. </Reference>
  374. <Reference Include="UnityEngine.GIModule">
  375. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll</HintPath>
  376. <Private>False</Private>
  377. </Reference>
  378. <Reference Include="UnityEngine.GameCenterModule">
  379. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll</HintPath>
  380. <Private>False</Private>
  381. </Reference>
  382. <Reference Include="UnityEngine.GraphicsStateCollectionSerializerModule">
  383. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.GraphicsStateCollectionSerializerModule.dll</HintPath>
  384. <Private>False</Private>
  385. </Reference>
  386. <Reference Include="UnityEngine.GridModule">
  387. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll</HintPath>
  388. <Private>False</Private>
  389. </Reference>
  390. <Reference Include="UnityEngine.HierarchyCoreModule">
  391. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.HierarchyCoreModule.dll</HintPath>
  392. <Private>False</Private>
  393. </Reference>
  394. <Reference Include="UnityEngine.HotReloadModule">
  395. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll</HintPath>
  396. <Private>False</Private>
  397. </Reference>
  398. <Reference Include="UnityEngine.IMGUIModule">
  399. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll</HintPath>
  400. <Private>False</Private>
  401. </Reference>
  402. <Reference Include="UnityEngine.ImageConversionModule">
  403. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll</HintPath>
  404. <Private>False</Private>
  405. </Reference>
  406. <Reference Include="UnityEngine.InputModule">
  407. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll</HintPath>
  408. <Private>False</Private>
  409. </Reference>
  410. <Reference Include="UnityEngine.InputForUIModule">
  411. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.InputForUIModule.dll</HintPath>
  412. <Private>False</Private>
  413. </Reference>
  414. <Reference Include="UnityEngine.InputLegacyModule">
  415. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll</HintPath>
  416. <Private>False</Private>
  417. </Reference>
  418. <Reference Include="UnityEngine.JSONSerializeModule">
  419. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll</HintPath>
  420. <Private>False</Private>
  421. </Reference>
  422. <Reference Include="UnityEngine.LocalizationModule">
  423. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll</HintPath>
  424. <Private>False</Private>
  425. </Reference>
  426. <Reference Include="UnityEngine.MarshallingModule">
  427. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.MarshallingModule.dll</HintPath>
  428. <Private>False</Private>
  429. </Reference>
  430. <Reference Include="UnityEngine.MultiplayerModule">
  431. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.MultiplayerModule.dll</HintPath>
  432. <Private>False</Private>
  433. </Reference>
  434. <Reference Include="UnityEngine.ParticleSystemModule">
  435. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll</HintPath>
  436. <Private>False</Private>
  437. </Reference>
  438. <Reference Include="UnityEngine.PerformanceReportingModule">
  439. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll</HintPath>
  440. <Private>False</Private>
  441. </Reference>
  442. <Reference Include="UnityEngine.PhysicsModule">
  443. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll</HintPath>
  444. <Private>False</Private>
  445. </Reference>
  446. <Reference Include="UnityEngine.Physics2DModule">
  447. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll</HintPath>
  448. <Private>False</Private>
  449. </Reference>
  450. <Reference Include="UnityEngine.PropertiesModule">
  451. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll</HintPath>
  452. <Private>False</Private>
  453. </Reference>
  454. <Reference Include="UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule">
  455. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll</HintPath>
  456. <Private>False</Private>
  457. </Reference>
  458. <Reference Include="UnityEngine.ScreenCaptureModule">
  459. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll</HintPath>
  460. <Private>False</Private>
  461. </Reference>
  462. <Reference Include="UnityEngine.ShaderVariantAnalyticsModule">
  463. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.ShaderVariantAnalyticsModule.dll</HintPath>
  464. <Private>False</Private>
  465. </Reference>
  466. <Reference Include="UnityEngine.SharedInternalsModule">
  467. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll</HintPath>
  468. <Private>False</Private>
  469. </Reference>
  470. <Reference Include="UnityEngine.SpriteMaskModule">
  471. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll</HintPath>
  472. <Private>False</Private>
  473. </Reference>
  474. <Reference Include="UnityEngine.SpriteShapeModule">
  475. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll</HintPath>
  476. <Private>False</Private>
  477. </Reference>
  478. <Reference Include="UnityEngine.StreamingModule">
  479. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll</HintPath>
  480. <Private>False</Private>
  481. </Reference>
  482. <Reference Include="UnityEngine.SubstanceModule">
  483. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll</HintPath>
  484. <Private>False</Private>
  485. </Reference>
  486. <Reference Include="UnityEngine.SubsystemsModule">
  487. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll</HintPath>
  488. <Private>False</Private>
  489. </Reference>
  490. <Reference Include="UnityEngine.TLSModule">
  491. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll</HintPath>
  492. <Private>False</Private>
  493. </Reference>
  494. <Reference Include="UnityEngine.TerrainModule">
  495. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll</HintPath>
  496. <Private>False</Private>
  497. </Reference>
  498. <Reference Include="UnityEngine.TerrainPhysicsModule">
  499. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll</HintPath>
  500. <Private>False</Private>
  501. </Reference>
  502. <Reference Include="UnityEngine.TextCoreFontEngineModule">
  503. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll</HintPath>
  504. <Private>False</Private>
  505. </Reference>
  506. <Reference Include="UnityEngine.TextCoreTextEngineModule">
  507. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll</HintPath>
  508. <Private>False</Private>
  509. </Reference>
  510. <Reference Include="UnityEngine.TextRenderingModule">
  511. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll</HintPath>
  512. <Private>False</Private>
  513. </Reference>
  514. <Reference Include="UnityEngine.TilemapModule">
  515. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll</HintPath>
  516. <Private>False</Private>
  517. </Reference>
  518. <Reference Include="UnityEngine.UIModule">
  519. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll</HintPath>
  520. <Private>False</Private>
  521. </Reference>
  522. <Reference Include="UnityEngine.UIElementsModule">
  523. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll</HintPath>
  524. <Private>False</Private>
  525. </Reference>
  526. <Reference Include="UnityEngine.UmbraModule">
  527. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll</HintPath>
  528. <Private>False</Private>
  529. </Reference>
  530. <Reference Include="UnityEngine.UnityAnalyticsModule">
  531. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll</HintPath>
  532. <Private>False</Private>
  533. </Reference>
  534. <Reference Include="UnityEngine.UnityAnalyticsCommonModule">
  535. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll</HintPath>
  536. <Private>False</Private>
  537. </Reference>
  538. <Reference Include="UnityEngine.UnityConnectModule">
  539. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll</HintPath>
  540. <Private>False</Private>
  541. </Reference>
  542. <Reference Include="UnityEngine.UnityCurlModule">
  543. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll</HintPath>
  544. <Private>False</Private>
  545. </Reference>
  546. <Reference Include="UnityEngine.UnityTestProtocolModule">
  547. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll</HintPath>
  548. <Private>False</Private>
  549. </Reference>
  550. <Reference Include="UnityEngine.UnityWebRequestModule">
  551. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll</HintPath>
  552. <Private>False</Private>
  553. </Reference>
  554. <Reference Include="UnityEngine.UnityWebRequestAssetBundleModule">
  555. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
  556. <Private>False</Private>
  557. </Reference>
  558. <Reference Include="UnityEngine.UnityWebRequestAudioModule">
  559. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
  560. <Private>False</Private>
  561. </Reference>
  562. <Reference Include="UnityEngine.UnityWebRequestTextureModule">
  563. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
  564. <Private>False</Private>
  565. </Reference>
  566. <Reference Include="UnityEngine.UnityWebRequestWWWModule">
  567. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
  568. <Private>False</Private>
  569. </Reference>
  570. <Reference Include="UnityEngine.VFXModule">
  571. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll</HintPath>
  572. <Private>False</Private>
  573. </Reference>
  574. <Reference Include="UnityEngine.VRModule">
  575. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll</HintPath>
  576. <Private>False</Private>
  577. </Reference>
  578. <Reference Include="UnityEngine.VehiclesModule">
  579. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll</HintPath>
  580. <Private>False</Private>
  581. </Reference>
  582. <Reference Include="UnityEngine.VideoModule">
  583. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll</HintPath>
  584. <Private>False</Private>
  585. </Reference>
  586. <Reference Include="UnityEngine.WindModule">
  587. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll</HintPath>
  588. <Private>False</Private>
  589. </Reference>
  590. <Reference Include="UnityEngine.XRModule">
  591. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll</HintPath>
  592. <Private>False</Private>
  593. </Reference>
  594. <Reference Include="UnityEditor">
  595. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.dll</HintPath>
  596. <Private>False</Private>
  597. </Reference>
  598. <Reference Include="UnityEditor.AccessibilityModule">
  599. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.AccessibilityModule.dll</HintPath>
  600. <Private>False</Private>
  601. </Reference>
  602. <Reference Include="UnityEditor.AdaptivePerformanceModule">
  603. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.AdaptivePerformanceModule.dll</HintPath>
  604. <Private>False</Private>
  605. </Reference>
  606. <Reference Include="UnityEditor.BuildProfileModule">
  607. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.BuildProfileModule.dll</HintPath>
  608. <Private>False</Private>
  609. </Reference>
  610. <Reference Include="UnityEditor.CoreBusinessMetricsModule">
  611. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreBusinessMetricsModule.dll</HintPath>
  612. <Private>False</Private>
  613. </Reference>
  614. <Reference Include="UnityEditor.CoreModule">
  615. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll</HintPath>
  616. <Private>False</Private>
  617. </Reference>
  618. <Reference Include="UnityEditor.DeviceSimulatorModule">
  619. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll</HintPath>
  620. <Private>False</Private>
  621. </Reference>
  622. <Reference Include="UnityEditor.DiagnosticsModule">
  623. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll</HintPath>
  624. <Private>False</Private>
  625. </Reference>
  626. <Reference Include="UnityEditor.EditorToolbarModule">
  627. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll</HintPath>
  628. <Private>False</Private>
  629. </Reference>
  630. <Reference Include="UnityEditor.EmbreeModule">
  631. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.EmbreeModule.dll</HintPath>
  632. <Private>False</Private>
  633. </Reference>
  634. <Reference Include="UnityEditor.GIModule">
  635. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.GIModule.dll</HintPath>
  636. <Private>False</Private>
  637. </Reference>
  638. <Reference Include="UnityEditor.GraphViewModule">
  639. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll</HintPath>
  640. <Private>False</Private>
  641. </Reference>
  642. <Reference Include="UnityEditor.GraphicsStateCollectionSerializerModule">
  643. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphicsStateCollectionSerializerModule.dll</HintPath>
  644. <Private>False</Private>
  645. </Reference>
  646. <Reference Include="UnityEditor.GridAndSnapModule">
  647. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.GridAndSnapModule.dll</HintPath>
  648. <Private>False</Private>
  649. </Reference>
  650. <Reference Include="UnityEditor.GridModule">
  651. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.GridModule.dll</HintPath>
  652. <Private>False</Private>
  653. </Reference>
  654. <Reference Include="UnityEditor.MultiplayerModule">
  655. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.MultiplayerModule.dll</HintPath>
  656. <Private>False</Private>
  657. </Reference>
  658. <Reference Include="UnityEditor.Physics2DModule">
  659. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.Physics2DModule.dll</HintPath>
  660. <Private>False</Private>
  661. </Reference>
  662. <Reference Include="UnityEditor.PhysicsModule">
  663. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.PhysicsModule.dll</HintPath>
  664. <Private>False</Private>
  665. </Reference>
  666. <Reference Include="UnityEditor.PresetsUIModule">
  667. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll</HintPath>
  668. <Private>False</Private>
  669. </Reference>
  670. <Reference Include="UnityEditor.PropertiesModule">
  671. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.PropertiesModule.dll</HintPath>
  672. <Private>False</Private>
  673. </Reference>
  674. <Reference Include="UnityEditor.QuickSearchModule">
  675. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll</HintPath>
  676. <Private>False</Private>
  677. </Reference>
  678. <Reference Include="UnityEditor.SafeModeModule">
  679. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.SafeModeModule.dll</HintPath>
  680. <Private>False</Private>
  681. </Reference>
  682. <Reference Include="UnityEditor.SceneTemplateModule">
  683. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll</HintPath>
  684. <Private>False</Private>
  685. </Reference>
  686. <Reference Include="UnityEditor.SceneViewModule">
  687. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll</HintPath>
  688. <Private>False</Private>
  689. </Reference>
  690. <Reference Include="UnityEditor.ShaderFoundryModule">
  691. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.ShaderFoundryModule.dll</HintPath>
  692. <Private>False</Private>
  693. </Reference>
  694. <Reference Include="UnityEditor.SketchUpModule">
  695. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.SketchUpModule.dll</HintPath>
  696. <Private>False</Private>
  697. </Reference>
  698. <Reference Include="UnityEditor.SpriteMaskModule">
  699. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.SpriteMaskModule.dll</HintPath>
  700. <Private>False</Private>
  701. </Reference>
  702. <Reference Include="UnityEditor.SpriteShapeModule">
  703. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.SpriteShapeModule.dll</HintPath>
  704. <Private>False</Private>
  705. </Reference>
  706. <Reference Include="UnityEditor.SubstanceModule">
  707. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.SubstanceModule.dll</HintPath>
  708. <Private>False</Private>
  709. </Reference>
  710. <Reference Include="UnityEditor.TerrainModule">
  711. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.TerrainModule.dll</HintPath>
  712. <Private>False</Private>
  713. </Reference>
  714. <Reference Include="UnityEditor.TextCoreFontEngineModule">
  715. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll</HintPath>
  716. <Private>False</Private>
  717. </Reference>
  718. <Reference Include="UnityEditor.TextCoreTextEngineModule">
  719. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll</HintPath>
  720. <Private>False</Private>
  721. </Reference>
  722. <Reference Include="UnityEditor.TextRenderingModule">
  723. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.TextRenderingModule.dll</HintPath>
  724. <Private>False</Private>
  725. </Reference>
  726. <Reference Include="UnityEditor.TilemapModule">
  727. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.TilemapModule.dll</HintPath>
  728. <Private>False</Private>
  729. </Reference>
  730. <Reference Include="UnityEditor.TreeModule">
  731. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.TreeModule.dll</HintPath>
  732. <Private>False</Private>
  733. </Reference>
  734. <Reference Include="UnityEditor.UIAutomationModule">
  735. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.UIAutomationModule.dll</HintPath>
  736. <Private>False</Private>
  737. </Reference>
  738. <Reference Include="UnityEditor.UIBuilderModule">
  739. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll</HintPath>
  740. <Private>False</Private>
  741. </Reference>
  742. <Reference Include="UnityEditor.UIElementsModule">
  743. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll</HintPath>
  744. <Private>False</Private>
  745. </Reference>
  746. <Reference Include="UnityEditor.UIElementsSamplesModule">
  747. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll</HintPath>
  748. <Private>False</Private>
  749. </Reference>
  750. <Reference Include="UnityEditor.UmbraModule">
  751. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.UmbraModule.dll</HintPath>
  752. <Private>False</Private>
  753. </Reference>
  754. <Reference Include="UnityEditor.UnityConnectModule">
  755. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll</HintPath>
  756. <Private>False</Private>
  757. </Reference>
  758. <Reference Include="UnityEditor.VFXModule">
  759. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.VFXModule.dll</HintPath>
  760. <Private>False</Private>
  761. </Reference>
  762. <Reference Include="UnityEditor.VideoModule">
  763. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.VideoModule.dll</HintPath>
  764. <Private>False</Private>
  765. </Reference>
  766. <Reference Include="UnityEditor.XRModule">
  767. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEngine\UnityEditor.XRModule.dll</HintPath>
  768. <Private>False</Private>
  769. </Reference>
  770. <Reference Include="UnityEditor.Graphs">
  771. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\Managed\UnityEditor.Graphs.dll</HintPath>
  772. <Private>False</Private>
  773. </Reference>
  774. <Reference Include="UnityEditor.WindowsStandalone.Extensions">
  775. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll</HintPath>
  776. <Private>False</Private>
  777. </Reference>
  778. <Reference Include="UnityEditor.Android.Extensions">
  779. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\PlaybackEngines\AndroidPlayer\UnityEditor.Android.Extensions.dll</HintPath>
  780. <Private>False</Private>
  781. </Reference>
  782. <Reference Include="UnityEditor.iOS.Extensions">
  783. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.dll</HintPath>
  784. <Private>False</Private>
  785. </Reference>
  786. <Reference Include="Unity.VisualScripting.YamlDotNet">
  787. <HintPath>Library\PackageCache\com.unity.visualscripting\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll</HintPath>
  788. <Private>False</Private>
  789. </Reference>
  790. <Reference Include="Google.PackageManagerResolver">
  791. <HintPath>Assets\ExternalDependencyManager\Editor\1.2.177\Google.PackageManagerResolver.dll</HintPath>
  792. <Private>False</Private>
  793. </Reference>
  794. <Reference Include="Unity.Collections.LowLevel.ILSupport">
  795. <HintPath>Library\PackageCache\com.unity.collections\Unity.Collections.LowLevel.ILSupport\Unity.Collections.LowLevel.ILSupport.dll</HintPath>
  796. <Private>False</Private>
  797. </Reference>
  798. <Reference Include="nunit.framework">
  799. <HintPath>Library\PackageCache\com.unity.ext.nunit\net40\unity-custom\nunit.framework.dll</HintPath>
  800. <Private>False</Private>
  801. </Reference>
  802. <Reference Include="unityplastic">
  803. <HintPath>Library\PackageCache\com.unity.collab-proxy\Lib\Editor\PlasticSCM\unityplastic.dll</HintPath>
  804. <Private>False</Private>
  805. </Reference>
  806. <Reference Include="Unity.Plastic.Antlr3.Runtime">
  807. <HintPath>Library\PackageCache\com.unity.collab-proxy\Lib\Editor\PlasticSCM\Unity.Plastic.Antlr3.Runtime.dll</HintPath>
  808. <Private>False</Private>
  809. </Reference>
  810. <Reference Include="Google.IOSResolver">
  811. <HintPath>Assets\ExternalDependencyManager\Editor\1.2.177\Google.IOSResolver.dll</HintPath>
  812. <Private>False</Private>
  813. </Reference>
  814. <Reference Include="Unity.Plastic.Newtonsoft.Json">
  815. <HintPath>Library\PackageCache\com.unity.collab-proxy\Lib\Editor\PlasticSCM\Unity.Plastic.Newtonsoft.Json.dll</HintPath>
  816. <Private>False</Private>
  817. </Reference>
  818. <Reference Include="Google.VersionHandler">
  819. <HintPath>Assets\ExternalDependencyManager\Editor\Google.VersionHandler.dll</HintPath>
  820. <Private>False</Private>
  821. </Reference>
  822. <Reference Include="log4netPlastic">
  823. <HintPath>Library\PackageCache\com.unity.collab-proxy\Lib\Editor\PlasticSCM\log4netPlastic.dll</HintPath>
  824. <Private>False</Private>
  825. </Reference>
  826. <Reference Include="Unity.VisualScripting.IonicZip">
  827. <HintPath>Library\PackageCache\com.unity.visualscripting\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll</HintPath>
  828. <Private>False</Private>
  829. </Reference>
  830. <Reference Include="Google.VersionHandlerImpl">
  831. <HintPath>Assets\ExternalDependencyManager\Editor\1.2.177\Google.VersionHandlerImpl.dll</HintPath>
  832. <Private>False</Private>
  833. </Reference>
  834. <Reference Include="I18N">
  835. <HintPath>Assets\I18N.dll</HintPath>
  836. <Private>False</Private>
  837. </Reference>
  838. <Reference Include="Unity.VisualScripting.Antlr3.Runtime">
  839. <HintPath>Library\PackageCache\com.unity.visualscripting\Runtime\VisualScripting.Flow\Dependencies\NCalc\Unity.VisualScripting.Antlr3.Runtime.dll</HintPath>
  840. <Private>False</Private>
  841. </Reference>
  842. <Reference Include="I18N.CJK">
  843. <HintPath>Assets\I18N.CJK.dll</HintPath>
  844. <Private>False</Private>
  845. </Reference>
  846. <Reference Include="Unity.VisualScripting.TextureAssets">
  847. <HintPath>Library\PackageCache\com.unity.visualscripting\Editor\VisualScripting.Core\EditorAssetResources\Unity.VisualScripting.TextureAssets.dll</HintPath>
  848. <Private>False</Private>
  849. </Reference>
  850. <Reference Include="Mono.Cecil">
  851. <HintPath>Library\PackageCache\com.unity.nuget.mono-cecil\Mono.Cecil.dll</HintPath>
  852. <Private>False</Private>
  853. </Reference>
  854. <Reference Include="I18N.West">
  855. <HintPath>Assets\I18N.West.dll</HintPath>
  856. <Private>False</Private>
  857. </Reference>
  858. <Reference Include="Google.JarResolver">
  859. <HintPath>Assets\ExternalDependencyManager\Editor\1.2.177\Google.JarResolver.dll</HintPath>
  860. <Private>False</Private>
  861. </Reference>
  862. <Reference Include="UnityEditor.iOS.Extensions.Xcode">
  863. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll</HintPath>
  864. <Private>False</Private>
  865. </Reference>
  866. <Reference Include="UnityEditor.iOS.Extensions.Common">
  867. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Common.dll</HintPath>
  868. <Private>False</Private>
  869. </Reference>
  870. <Reference Include="Unity.Android.Types">
  871. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Types.dll</HintPath>
  872. <Private>False</Private>
  873. </Reference>
  874. <Reference Include="Unity.Android.Gradle">
  875. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\PlaybackEngines\AndroidPlayer\Unity.Android.Gradle.dll</HintPath>
  876. <Private>False</Private>
  877. </Reference>
  878. <Reference Include="mscorlib">
  879. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll</HintPath>
  880. <Private>False</Private>
  881. </Reference>
  882. <Reference Include="System">
  883. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll</HintPath>
  884. <Private>False</Private>
  885. </Reference>
  886. <Reference Include="System.Core">
  887. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll</HintPath>
  888. <Private>False</Private>
  889. </Reference>
  890. <Reference Include="System.Runtime.Serialization">
  891. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll</HintPath>
  892. <Private>False</Private>
  893. </Reference>
  894. <Reference Include="System.Xml">
  895. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll</HintPath>
  896. <Private>False</Private>
  897. </Reference>
  898. <Reference Include="System.Xml.Linq">
  899. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll</HintPath>
  900. <Private>False</Private>
  901. </Reference>
  902. <Reference Include="System.Numerics">
  903. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll</HintPath>
  904. <Private>False</Private>
  905. </Reference>
  906. <Reference Include="System.Numerics.Vectors">
  907. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll</HintPath>
  908. <Private>False</Private>
  909. </Reference>
  910. <Reference Include="System.Net.Http">
  911. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll</HintPath>
  912. <Private>False</Private>
  913. </Reference>
  914. <Reference Include="System.IO.Compression">
  915. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll</HintPath>
  916. <Private>False</Private>
  917. </Reference>
  918. <Reference Include="Microsoft.CSharp">
  919. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll</HintPath>
  920. <Private>False</Private>
  921. </Reference>
  922. <Reference Include="System.Data">
  923. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll</HintPath>
  924. <Private>False</Private>
  925. </Reference>
  926. <Reference Include="System.Data.DataSetExtensions">
  927. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll</HintPath>
  928. <Private>False</Private>
  929. </Reference>
  930. <Reference Include="System.Drawing">
  931. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll</HintPath>
  932. <Private>False</Private>
  933. </Reference>
  934. <Reference Include="System.IO.Compression.FileSystem">
  935. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll</HintPath>
  936. <Private>False</Private>
  937. </Reference>
  938. <Reference Include="System.ComponentModel.Composition">
  939. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll</HintPath>
  940. <Private>False</Private>
  941. </Reference>
  942. <Reference Include="System.Transactions">
  943. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll</HintPath>
  944. <Private>False</Private>
  945. </Reference>
  946. <Reference Include="Microsoft.Win32.Primitives">
  947. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll</HintPath>
  948. <Private>False</Private>
  949. </Reference>
  950. <Reference Include="netstandard">
  951. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll</HintPath>
  952. <Private>False</Private>
  953. </Reference>
  954. <Reference Include="System.AppContext">
  955. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll</HintPath>
  956. <Private>False</Private>
  957. </Reference>
  958. <Reference Include="System.Buffers">
  959. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll</HintPath>
  960. <Private>False</Private>
  961. </Reference>
  962. <Reference Include="System.Collections.Concurrent">
  963. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll</HintPath>
  964. <Private>False</Private>
  965. </Reference>
  966. <Reference Include="System.Collections">
  967. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll</HintPath>
  968. <Private>False</Private>
  969. </Reference>
  970. <Reference Include="System.Collections.NonGeneric">
  971. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll</HintPath>
  972. <Private>False</Private>
  973. </Reference>
  974. <Reference Include="System.Collections.Specialized">
  975. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll</HintPath>
  976. <Private>False</Private>
  977. </Reference>
  978. <Reference Include="System.ComponentModel.Annotations">
  979. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll</HintPath>
  980. <Private>False</Private>
  981. </Reference>
  982. <Reference Include="System.ComponentModel">
  983. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll</HintPath>
  984. <Private>False</Private>
  985. </Reference>
  986. <Reference Include="System.ComponentModel.EventBasedAsync">
  987. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll</HintPath>
  988. <Private>False</Private>
  989. </Reference>
  990. <Reference Include="System.ComponentModel.Primitives">
  991. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll</HintPath>
  992. <Private>False</Private>
  993. </Reference>
  994. <Reference Include="System.ComponentModel.TypeConverter">
  995. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll</HintPath>
  996. <Private>False</Private>
  997. </Reference>
  998. <Reference Include="System.Console">
  999. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll</HintPath>
  1000. <Private>False</Private>
  1001. </Reference>
  1002. <Reference Include="System.Data.Common">
  1003. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll</HintPath>
  1004. <Private>False</Private>
  1005. </Reference>
  1006. <Reference Include="System.Diagnostics.Contracts">
  1007. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll</HintPath>
  1008. <Private>False</Private>
  1009. </Reference>
  1010. <Reference Include="System.Diagnostics.Debug">
  1011. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll</HintPath>
  1012. <Private>False</Private>
  1013. </Reference>
  1014. <Reference Include="System.Diagnostics.FileVersionInfo">
  1015. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll</HintPath>
  1016. <Private>False</Private>
  1017. </Reference>
  1018. <Reference Include="System.Diagnostics.Process">
  1019. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll</HintPath>
  1020. <Private>False</Private>
  1021. </Reference>
  1022. <Reference Include="System.Diagnostics.StackTrace">
  1023. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll</HintPath>
  1024. <Private>False</Private>
  1025. </Reference>
  1026. <Reference Include="System.Diagnostics.TextWriterTraceListener">
  1027. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll</HintPath>
  1028. <Private>False</Private>
  1029. </Reference>
  1030. <Reference Include="System.Diagnostics.Tools">
  1031. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll</HintPath>
  1032. <Private>False</Private>
  1033. </Reference>
  1034. <Reference Include="System.Diagnostics.TraceSource">
  1035. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll</HintPath>
  1036. <Private>False</Private>
  1037. </Reference>
  1038. <Reference Include="System.Drawing.Primitives">
  1039. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll</HintPath>
  1040. <Private>False</Private>
  1041. </Reference>
  1042. <Reference Include="System.Dynamic.Runtime">
  1043. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll</HintPath>
  1044. <Private>False</Private>
  1045. </Reference>
  1046. <Reference Include="System.Globalization.Calendars">
  1047. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll</HintPath>
  1048. <Private>False</Private>
  1049. </Reference>
  1050. <Reference Include="System.Globalization">
  1051. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll</HintPath>
  1052. <Private>False</Private>
  1053. </Reference>
  1054. <Reference Include="System.Globalization.Extensions">
  1055. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll</HintPath>
  1056. <Private>False</Private>
  1057. </Reference>
  1058. <Reference Include="System.IO.Compression.ZipFile">
  1059. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll</HintPath>
  1060. <Private>False</Private>
  1061. </Reference>
  1062. <Reference Include="System.IO">
  1063. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll</HintPath>
  1064. <Private>False</Private>
  1065. </Reference>
  1066. <Reference Include="System.IO.FileSystem">
  1067. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll</HintPath>
  1068. <Private>False</Private>
  1069. </Reference>
  1070. <Reference Include="System.IO.FileSystem.DriveInfo">
  1071. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll</HintPath>
  1072. <Private>False</Private>
  1073. </Reference>
  1074. <Reference Include="System.IO.FileSystem.Primitives">
  1075. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll</HintPath>
  1076. <Private>False</Private>
  1077. </Reference>
  1078. <Reference Include="System.IO.FileSystem.Watcher">
  1079. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll</HintPath>
  1080. <Private>False</Private>
  1081. </Reference>
  1082. <Reference Include="System.IO.IsolatedStorage">
  1083. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll</HintPath>
  1084. <Private>False</Private>
  1085. </Reference>
  1086. <Reference Include="System.IO.MemoryMappedFiles">
  1087. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll</HintPath>
  1088. <Private>False</Private>
  1089. </Reference>
  1090. <Reference Include="System.IO.Pipes">
  1091. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll</HintPath>
  1092. <Private>False</Private>
  1093. </Reference>
  1094. <Reference Include="System.IO.UnmanagedMemoryStream">
  1095. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll</HintPath>
  1096. <Private>False</Private>
  1097. </Reference>
  1098. <Reference Include="System.Linq">
  1099. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll</HintPath>
  1100. <Private>False</Private>
  1101. </Reference>
  1102. <Reference Include="System.Linq.Expressions">
  1103. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll</HintPath>
  1104. <Private>False</Private>
  1105. </Reference>
  1106. <Reference Include="System.Linq.Parallel">
  1107. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll</HintPath>
  1108. <Private>False</Private>
  1109. </Reference>
  1110. <Reference Include="System.Linq.Queryable">
  1111. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll</HintPath>
  1112. <Private>False</Private>
  1113. </Reference>
  1114. <Reference Include="System.Memory">
  1115. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll</HintPath>
  1116. <Private>False</Private>
  1117. </Reference>
  1118. <Reference Include="System.Net.Http.Rtc">
  1119. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll</HintPath>
  1120. <Private>False</Private>
  1121. </Reference>
  1122. <Reference Include="System.Net.NameResolution">
  1123. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll</HintPath>
  1124. <Private>False</Private>
  1125. </Reference>
  1126. <Reference Include="System.Net.NetworkInformation">
  1127. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll</HintPath>
  1128. <Private>False</Private>
  1129. </Reference>
  1130. <Reference Include="System.Net.Ping">
  1131. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll</HintPath>
  1132. <Private>False</Private>
  1133. </Reference>
  1134. <Reference Include="System.Net.Primitives">
  1135. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll</HintPath>
  1136. <Private>False</Private>
  1137. </Reference>
  1138. <Reference Include="System.Net.Requests">
  1139. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll</HintPath>
  1140. <Private>False</Private>
  1141. </Reference>
  1142. <Reference Include="System.Net.Security">
  1143. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll</HintPath>
  1144. <Private>False</Private>
  1145. </Reference>
  1146. <Reference Include="System.Net.Sockets">
  1147. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll</HintPath>
  1148. <Private>False</Private>
  1149. </Reference>
  1150. <Reference Include="System.Net.WebHeaderCollection">
  1151. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll</HintPath>
  1152. <Private>False</Private>
  1153. </Reference>
  1154. <Reference Include="System.Net.WebSockets.Client">
  1155. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll</HintPath>
  1156. <Private>False</Private>
  1157. </Reference>
  1158. <Reference Include="System.Net.WebSockets">
  1159. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll</HintPath>
  1160. <Private>False</Private>
  1161. </Reference>
  1162. <Reference Include="System.ObjectModel">
  1163. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll</HintPath>
  1164. <Private>False</Private>
  1165. </Reference>
  1166. <Reference Include="System.Reflection.DispatchProxy">
  1167. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll</HintPath>
  1168. <Private>False</Private>
  1169. </Reference>
  1170. <Reference Include="System.Reflection">
  1171. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll</HintPath>
  1172. <Private>False</Private>
  1173. </Reference>
  1174. <Reference Include="System.Reflection.Emit">
  1175. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll</HintPath>
  1176. <Private>False</Private>
  1177. </Reference>
  1178. <Reference Include="System.Reflection.Emit.ILGeneration">
  1179. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll</HintPath>
  1180. <Private>False</Private>
  1181. </Reference>
  1182. <Reference Include="System.Reflection.Emit.Lightweight">
  1183. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll</HintPath>
  1184. <Private>False</Private>
  1185. </Reference>
  1186. <Reference Include="System.Reflection.Extensions">
  1187. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll</HintPath>
  1188. <Private>False</Private>
  1189. </Reference>
  1190. <Reference Include="System.Reflection.Primitives">
  1191. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll</HintPath>
  1192. <Private>False</Private>
  1193. </Reference>
  1194. <Reference Include="System.Resources.Reader">
  1195. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll</HintPath>
  1196. <Private>False</Private>
  1197. </Reference>
  1198. <Reference Include="System.Resources.ResourceManager">
  1199. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll</HintPath>
  1200. <Private>False</Private>
  1201. </Reference>
  1202. <Reference Include="System.Resources.Writer">
  1203. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll</HintPath>
  1204. <Private>False</Private>
  1205. </Reference>
  1206. <Reference Include="System.Runtime.CompilerServices.VisualC">
  1207. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll</HintPath>
  1208. <Private>False</Private>
  1209. </Reference>
  1210. <Reference Include="System.Runtime">
  1211. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll</HintPath>
  1212. <Private>False</Private>
  1213. </Reference>
  1214. <Reference Include="System.Runtime.Extensions">
  1215. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll</HintPath>
  1216. <Private>False</Private>
  1217. </Reference>
  1218. <Reference Include="System.Runtime.Handles">
  1219. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll</HintPath>
  1220. <Private>False</Private>
  1221. </Reference>
  1222. <Reference Include="System.Runtime.InteropServices">
  1223. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll</HintPath>
  1224. <Private>False</Private>
  1225. </Reference>
  1226. <Reference Include="System.Runtime.InteropServices.RuntimeInformation">
  1227. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
  1228. <Private>False</Private>
  1229. </Reference>
  1230. <Reference Include="System.Runtime.InteropServices.WindowsRuntime">
  1231. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll</HintPath>
  1232. <Private>False</Private>
  1233. </Reference>
  1234. <Reference Include="System.Runtime.Numerics">
  1235. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll</HintPath>
  1236. <Private>False</Private>
  1237. </Reference>
  1238. <Reference Include="System.Runtime.Serialization.Formatters">
  1239. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll</HintPath>
  1240. <Private>False</Private>
  1241. </Reference>
  1242. <Reference Include="System.Runtime.Serialization.Json">
  1243. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll</HintPath>
  1244. <Private>False</Private>
  1245. </Reference>
  1246. <Reference Include="System.Runtime.Serialization.Primitives">
  1247. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll</HintPath>
  1248. <Private>False</Private>
  1249. </Reference>
  1250. <Reference Include="System.Runtime.Serialization.Xml">
  1251. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll</HintPath>
  1252. <Private>False</Private>
  1253. </Reference>
  1254. <Reference Include="System.Security.Claims">
  1255. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll</HintPath>
  1256. <Private>False</Private>
  1257. </Reference>
  1258. <Reference Include="System.Security.Cryptography.Algorithms">
  1259. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll</HintPath>
  1260. <Private>False</Private>
  1261. </Reference>
  1262. <Reference Include="System.Security.Cryptography.Csp">
  1263. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll</HintPath>
  1264. <Private>False</Private>
  1265. </Reference>
  1266. <Reference Include="System.Security.Cryptography.Encoding">
  1267. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll</HintPath>
  1268. <Private>False</Private>
  1269. </Reference>
  1270. <Reference Include="System.Security.Cryptography.Primitives">
  1271. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll</HintPath>
  1272. <Private>False</Private>
  1273. </Reference>
  1274. <Reference Include="System.Security.Cryptography.X509Certificates">
  1275. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll</HintPath>
  1276. <Private>False</Private>
  1277. </Reference>
  1278. <Reference Include="System.Security.Principal">
  1279. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll</HintPath>
  1280. <Private>False</Private>
  1281. </Reference>
  1282. <Reference Include="System.Security.SecureString">
  1283. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll</HintPath>
  1284. <Private>False</Private>
  1285. </Reference>
  1286. <Reference Include="System.ServiceModel.Duplex">
  1287. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll</HintPath>
  1288. <Private>False</Private>
  1289. </Reference>
  1290. <Reference Include="System.ServiceModel.Http">
  1291. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll</HintPath>
  1292. <Private>False</Private>
  1293. </Reference>
  1294. <Reference Include="System.ServiceModel.NetTcp">
  1295. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll</HintPath>
  1296. <Private>False</Private>
  1297. </Reference>
  1298. <Reference Include="System.ServiceModel.Primitives">
  1299. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll</HintPath>
  1300. <Private>False</Private>
  1301. </Reference>
  1302. <Reference Include="System.ServiceModel.Security">
  1303. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll</HintPath>
  1304. <Private>False</Private>
  1305. </Reference>
  1306. <Reference Include="System.Text.Encoding">
  1307. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll</HintPath>
  1308. <Private>False</Private>
  1309. </Reference>
  1310. <Reference Include="System.Text.Encoding.Extensions">
  1311. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll</HintPath>
  1312. <Private>False</Private>
  1313. </Reference>
  1314. <Reference Include="System.Text.RegularExpressions">
  1315. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll</HintPath>
  1316. <Private>False</Private>
  1317. </Reference>
  1318. <Reference Include="System.Threading">
  1319. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll</HintPath>
  1320. <Private>False</Private>
  1321. </Reference>
  1322. <Reference Include="System.Threading.Overlapped">
  1323. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll</HintPath>
  1324. <Private>False</Private>
  1325. </Reference>
  1326. <Reference Include="System.Threading.Tasks">
  1327. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll</HintPath>
  1328. <Private>False</Private>
  1329. </Reference>
  1330. <Reference Include="System.Threading.Tasks.Extensions">
  1331. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll</HintPath>
  1332. <Private>False</Private>
  1333. </Reference>
  1334. <Reference Include="System.Threading.Tasks.Parallel">
  1335. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll</HintPath>
  1336. <Private>False</Private>
  1337. </Reference>
  1338. <Reference Include="System.Threading.Thread">
  1339. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll</HintPath>
  1340. <Private>False</Private>
  1341. </Reference>
  1342. <Reference Include="System.Threading.ThreadPool">
  1343. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll</HintPath>
  1344. <Private>False</Private>
  1345. </Reference>
  1346. <Reference Include="System.Threading.Timer">
  1347. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll</HintPath>
  1348. <Private>False</Private>
  1349. </Reference>
  1350. <Reference Include="System.ValueTuple">
  1351. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll</HintPath>
  1352. <Private>False</Private>
  1353. </Reference>
  1354. <Reference Include="System.Xml.ReaderWriter">
  1355. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll</HintPath>
  1356. <Private>False</Private>
  1357. </Reference>
  1358. <Reference Include="System.Xml.XDocument">
  1359. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll</HintPath>
  1360. <Private>False</Private>
  1361. </Reference>
  1362. <Reference Include="System.Xml.XmlDocument">
  1363. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll</HintPath>
  1364. <Private>False</Private>
  1365. </Reference>
  1366. <Reference Include="System.Xml.XmlSerializer">
  1367. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll</HintPath>
  1368. <Private>False</Private>
  1369. </Reference>
  1370. <Reference Include="System.Xml.XPath">
  1371. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll</HintPath>
  1372. <Private>False</Private>
  1373. </Reference>
  1374. <Reference Include="System.Xml.XPath.XDocument">
  1375. <HintPath>D:\Unity\6000.0.9f1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll</HintPath>
  1376. <Private>False</Private>
  1377. </Reference>
  1378. <Reference Include="UnityEditor.UI">
  1379. <HintPath>Library\ScriptAssemblies\UnityEditor.UI.dll</HintPath>
  1380. <Private>False</Private>
  1381. </Reference>
  1382. <Reference Include="UnityEngine.UI">
  1383. <HintPath>Library\ScriptAssemblies\UnityEngine.UI.dll</HintPath>
  1384. <Private>False</Private>
  1385. </Reference>
  1386. </ItemGroup>
  1387. <ItemGroup>
  1388. </ItemGroup>
  1389. <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
  1390. <ItemGroup>
  1391. <ProjectCapability Remove="LaunchProfiles" />
  1392. <ProjectCapability Remove="SharedProjectReferences" />
  1393. <ProjectCapability Remove="ReferenceManagerSharedProjects" />
  1394. <ProjectCapability Remove="ProjectReferences" />
  1395. <ProjectCapability Remove="ReferenceManagerProjects" />
  1396. <ProjectCapability Remove="COMReferences" />
  1397. <ProjectCapability Remove="ReferenceManagerCOM" />
  1398. <ProjectCapability Remove="AssemblyReferences" />
  1399. <ProjectCapability Remove="ReferenceManagerAssemblies" />
  1400. </ItemGroup>
  1401. </Project>