UnityEditor.TestRunner.csproj 65.2 KB
Newer Older
BlackAngle233's avatar
BlackAngle233 committed
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <LangVersion>latest</LangVersion>
  </PropertyGroup>
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>10.0.20506</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <RootNamespace></RootNamespace>
BlackAngle233's avatar
BlackAngle233 committed
12
    <ProjectGuid>{24850bf5-20b5-cd9e-37cd-2c22b019e5e0}</ProjectGuid>
BlackAngle233's avatar
BlackAngle233 committed
13
14
15
16
17
18
19
20
21
22
23
24
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <AssemblyName>UnityEditor.TestRunner</AssemblyName>
    <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <BaseDirectory>.</BaseDirectory>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>Temp\bin\Debug\</OutputPath>
BlackAngle233's avatar
BlackAngle233 committed
25
    <DefineConstants>DEBUG;TRACE;UNITY_2019_4_3;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
BlackAngle233's avatar
BlackAngle233 committed
26
27
28
29
30
31
32
33
34
35
36
37
38
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <NoWarn>0169</NoWarn>
    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
  </PropertyGroup>
  <PropertyGroup>
    <NoConfig>true</NoConfig>
    <NoStdLib>true</NoStdLib>
    <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
    <ImplicitlyExpandNETStandardFacades>false</ImplicitlyExpandNETStandardFacades>
    <ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
  </PropertyGroup>
  <ItemGroup>
BlackAngle233's avatar
BlackAngle233 committed
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\CallbacksDelegator.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\CallbacksDelegatorListener.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\CallbacksHolder.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ExecutionSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\Filter.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ICallbacks.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ICallbacksDelegator.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ICallbacksHolder.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\IErrorCallbacks.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ITestAdaptor.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ITestAdaptorFactory.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ITestResultAdaptor.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ITestRunSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ITestRunnerApi.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\ITestTreeRebuildCallbacks.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\RunState.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\TestAdaptor.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\TestAdaptorFactory.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\TestMode.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\TestResultAdaptor.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\TestRunnerApi.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\Api\TestStatus.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\AssemblyInfo.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineParser\CommandLineOption.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineParser\CommandLineOptionSet.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineParser\ICommandLineOption.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\Executer.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\ExecutionSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\ExitCallbacks.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\ISettingsBuilder.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\LogSavingCallbacks.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\LogWriter.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\ResultsSavingCallbacks.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\ResultsWriter.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\RunData.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\RunSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\SettingsBuilder.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\SetupException.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\CommandLineTest\TestStarter.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\AssetsDatabaseHelper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\GuiHelper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\IAssetsDatabaseHelper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\IGuiHelper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestListBuilder\RenderingOptions.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestListBuilder\ResultSummarizer.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestListBuilder\TestFilterSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestListBuilder\TestTreeViewBuilder.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestListGuiHelper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestListTreeView\Icons.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestListTreeView\TestListTreeViewDataSource.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestListTreeView\TestListTreeViewGUI.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestListTreeView\TestTreeViewItem.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestRunnerResult.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\TestRunnerUIFilter.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\Views\EditModeTestListGUI.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\Views\PlayModeTestListGUI.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\GUI\Views\TestListGUIBase.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\NUnitExtension\Attributes\AssetPipelineIgnore.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\NUnitExtension\Attributes\ITestPlayerBuildModifier.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\NUnitExtension\Attributes\TestPlayerBuildModifierAttribute.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\NUnitExtension\TestRunnerStateSerializer.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\RequireApiProfileAttribute.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\RequirePlatformSupportAttribute.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestBuildAssemblyFilter.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\AttributeFinderBase.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\DelayedCallback.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\EditModeLauncher.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\EditModeLauncherContextSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlatformSetup\AndroidPlatformSetup.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlatformSetup\ApplePlatformSetup.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlatformSetup\IPlatformSetup.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlatformSetup\LuminPlatformSetup.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlatformSetup\PlatformSpecificSetup.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlatformSetup\StadiaPlatformSetup.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlatformSetup\SwitchPlatformSetup.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlatformSetup\UwpPlatformSetup.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlatformSetup\XboxOnePlatformSetup.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlayerLauncher.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlayerLauncherBuildOptions.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlayerLauncherContextSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PlaymodeLauncher.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PostbuildCleanupAttributeFinder.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\PrebuildSetupAttributeFinder.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\RemotePlayerLogController.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\RemotePlayerTestController.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\RemoteTestResultReciever.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\RuntimeTestLauncherBase.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestLaunchers\TestLauncherBase.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestResultSerializer.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\BuildActionTaskBase.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\BuildTestTreeTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\CleanupVerificationTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\FileCleanupVerifierTaskBase.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\LegacyEditModeRunTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\LegacyPlayModeRunTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\LegacyPlayerRunTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\PerformUndoTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\PrebuildSetupTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\RegisterFilesForCleanupVerificationTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\SaveModiedSceneTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\SaveUndoIndexTask.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\Tasks\TestTaskBase.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\TestJobData.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\TestJobDataHolder.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\TestJobRunner.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRun\TestRunCanceledException.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Callbacks\EditModeRunnerCallback.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Callbacks\RerunCallback.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Callbacks\RerunCallbackData.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Callbacks\RerunCallbackInitializer.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Callbacks\TestRunnerCallback.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Callbacks\WindowResultUpdater.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Callbacks\WindowResultUpdaterDataHolder.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\EditModePCHelper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\EditModeRunner.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\EditmodeWorkItemFactory.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\EditorEnumeratorTestWorkItem.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\EnumeratorStepHelper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Messages\EnterPlayMode.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Messages\ExitPlayMode.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Messages\RecompileScripts.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Messages\WaitForDomainReload.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\CachingTestListProvider.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\EditorAssembliesProxy.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\EditorAssemblyWrapper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\EditorCompilationInterfaceProxy.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\EditorLoadedTestAssemblyProvider.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\IEditorAssembliesProxy.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\IEditorCompilationInterfaceProxy.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\IEditorLoadedTestAssemblyProvider.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\ITestListCache.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\ITestListCacheData.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\ITestListProvider.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\TestListCache.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\TestListCacheData.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\TestListJob.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunner\Utils\TestListProvider.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunnerWindow.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestRunnerWindowSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestSettings\ITestSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestSettings\ITestSettingsDeserializer.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestSettings\TestSettings.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\TestSettings\TestSettingsDeserializer.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\AssemblyCompilationErrorsMessage.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\ITestRunnerApiMapper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\IUtpLogger.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\IUtpMessageReporter.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\Message.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\TestFinishedMessage.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\TestPlanMessage.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\TestRunnerApiMapper.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\TestStartedMessage.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\TestState.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\UnityTestProtocolListener.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\UnityTestProtocolStarter.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\UtpDebuglogger.cs" />
     <Compile Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityTestProtocol\UtpMessageReporter.cs" />
     <None Include="Library\PackageCache\com.unity.test-framework@1.1.14\UnityEditor.TestRunner\UnityEditor.TestRunner.asmdef" />
BlackAngle233's avatar
BlackAngle233 committed
197
    <Reference Include="UnityEngine">
BlackAngle233's avatar
BlackAngle233 committed
198
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
199
200
    </Reference>
    <Reference Include="UnityEngine.AIModule">
BlackAngle233's avatar
BlackAngle233 committed
201
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
202
203
    </Reference>
    <Reference Include="UnityEngine.ARModule">
BlackAngle233's avatar
BlackAngle233 committed
204
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
205
206
    </Reference>
    <Reference Include="UnityEngine.AccessibilityModule">
BlackAngle233's avatar
BlackAngle233 committed
207
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
208
209
    </Reference>
    <Reference Include="UnityEngine.AndroidJNIModule">
BlackAngle233's avatar
BlackAngle233 committed
210
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
211
212
    </Reference>
    <Reference Include="UnityEngine.AnimationModule">
BlackAngle233's avatar
BlackAngle233 committed
213
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
214
215
    </Reference>
    <Reference Include="UnityEngine.AssetBundleModule">
BlackAngle233's avatar
BlackAngle233 committed
216
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
217
218
    </Reference>
    <Reference Include="UnityEngine.AudioModule">
BlackAngle233's avatar
BlackAngle233 committed
219
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
220
221
    </Reference>
    <Reference Include="UnityEngine.ClothModule">
BlackAngle233's avatar
BlackAngle233 committed
222
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
223
224
    </Reference>
    <Reference Include="UnityEngine.ClusterInputModule">
BlackAngle233's avatar
BlackAngle233 committed
225
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
226
227
    </Reference>
    <Reference Include="UnityEngine.ClusterRendererModule">
BlackAngle233's avatar
BlackAngle233 committed
228
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
229
230
    </Reference>
    <Reference Include="UnityEngine.CoreModule">
BlackAngle233's avatar
BlackAngle233 committed
231
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
232
233
    </Reference>
    <Reference Include="UnityEngine.CrashReportingModule">
BlackAngle233's avatar
BlackAngle233 committed
234
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
235
236
    </Reference>
    <Reference Include="UnityEngine.DSPGraphModule">
BlackAngle233's avatar
BlackAngle233 committed
237
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
238
239
    </Reference>
    <Reference Include="UnityEngine.DirectorModule">
BlackAngle233's avatar
BlackAngle233 committed
240
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
241
242
    </Reference>
    <Reference Include="UnityEngine.GameCenterModule">
BlackAngle233's avatar
BlackAngle233 committed
243
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
244
245
    </Reference>
    <Reference Include="UnityEngine.GridModule">
BlackAngle233's avatar
BlackAngle233 committed
246
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
247
248
    </Reference>
    <Reference Include="UnityEngine.HotReloadModule">
BlackAngle233's avatar
BlackAngle233 committed
249
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
250
251
    </Reference>
    <Reference Include="UnityEngine.IMGUIModule">
BlackAngle233's avatar
BlackAngle233 committed
252
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
253
254
    </Reference>
    <Reference Include="UnityEngine.ImageConversionModule">
BlackAngle233's avatar
BlackAngle233 committed
255
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
256
257
    </Reference>
    <Reference Include="UnityEngine.InputModule">
BlackAngle233's avatar
BlackAngle233 committed
258
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
259
260
    </Reference>
    <Reference Include="UnityEngine.InputLegacyModule">
BlackAngle233's avatar
BlackAngle233 committed
261
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
262
263
    </Reference>
    <Reference Include="UnityEngine.JSONSerializeModule">
BlackAngle233's avatar
BlackAngle233 committed
264
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
265
266
    </Reference>
    <Reference Include="UnityEngine.LocalizationModule">
BlackAngle233's avatar
BlackAngle233 committed
267
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
268
269
    </Reference>
    <Reference Include="UnityEngine.ParticleSystemModule">
BlackAngle233's avatar
BlackAngle233 committed
270
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
271
272
    </Reference>
    <Reference Include="UnityEngine.PerformanceReportingModule">
BlackAngle233's avatar
BlackAngle233 committed
273
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
274
275
    </Reference>
    <Reference Include="UnityEngine.PhysicsModule">
BlackAngle233's avatar
BlackAngle233 committed
276
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
277
278
    </Reference>
    <Reference Include="UnityEngine.Physics2DModule">
BlackAngle233's avatar
BlackAngle233 committed
279
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
280
281
    </Reference>
    <Reference Include="UnityEngine.ProfilerModule">
BlackAngle233's avatar
BlackAngle233 committed
282
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
283
284
    </Reference>
    <Reference Include="UnityEngine.ScreenCaptureModule">
BlackAngle233's avatar
BlackAngle233 committed
285
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
286
287
    </Reference>
    <Reference Include="UnityEngine.SharedInternalsModule">
BlackAngle233's avatar
BlackAngle233 committed
288
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
289
290
    </Reference>
    <Reference Include="UnityEngine.SpriteMaskModule">
BlackAngle233's avatar
BlackAngle233 committed
291
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
292
293
    </Reference>
    <Reference Include="UnityEngine.SpriteShapeModule">
BlackAngle233's avatar
BlackAngle233 committed
294
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
295
296
    </Reference>
    <Reference Include="UnityEngine.StreamingModule">
BlackAngle233's avatar
BlackAngle233 committed
297
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
298
299
    </Reference>
    <Reference Include="UnityEngine.SubstanceModule">
BlackAngle233's avatar
BlackAngle233 committed
300
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
301
302
    </Reference>
    <Reference Include="UnityEngine.SubsystemsModule">
BlackAngle233's avatar
BlackAngle233 committed
303
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
304
305
    </Reference>
    <Reference Include="UnityEngine.TLSModule">
BlackAngle233's avatar
BlackAngle233 committed
306
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
307
308
    </Reference>
    <Reference Include="UnityEngine.TerrainModule">
BlackAngle233's avatar
BlackAngle233 committed
309
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
310
311
    </Reference>
    <Reference Include="UnityEngine.TerrainPhysicsModule">
BlackAngle233's avatar
BlackAngle233 committed
312
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
313
314
    </Reference>
    <Reference Include="UnityEngine.TextCoreModule">
BlackAngle233's avatar
BlackAngle233 committed
315
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
316
317
    </Reference>
    <Reference Include="UnityEngine.TextRenderingModule">
BlackAngle233's avatar
BlackAngle233 committed
318
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
319
320
    </Reference>
    <Reference Include="UnityEngine.TilemapModule">
BlackAngle233's avatar
BlackAngle233 committed
321
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
322
323
    </Reference>
    <Reference Include="UnityEngine.UIModule">
BlackAngle233's avatar
BlackAngle233 committed
324
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
325
326
    </Reference>
    <Reference Include="UnityEngine.UIElementsModule">
BlackAngle233's avatar
BlackAngle233 committed
327
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
328
329
    </Reference>
    <Reference Include="UnityEngine.UNETModule">
BlackAngle233's avatar
BlackAngle233 committed
330
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
331
332
    </Reference>
    <Reference Include="UnityEngine.UmbraModule">
BlackAngle233's avatar
BlackAngle233 committed
333
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
334
335
    </Reference>
    <Reference Include="UnityEngine.UnityAnalyticsModule">
BlackAngle233's avatar
BlackAngle233 committed
336
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
337
338
    </Reference>
    <Reference Include="UnityEngine.UnityConnectModule">
BlackAngle233's avatar
BlackAngle233 committed
339
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
340
341
    </Reference>
    <Reference Include="UnityEngine.UnityTestProtocolModule">
BlackAngle233's avatar
BlackAngle233 committed
342
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
343
344
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestModule">
BlackAngle233's avatar
BlackAngle233 committed
345
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
346
347
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestAssetBundleModule">
BlackAngle233's avatar
BlackAngle233 committed
348
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
349
350
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestAudioModule">
BlackAngle233's avatar
BlackAngle233 committed
351
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
352
353
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestTextureModule">
BlackAngle233's avatar
BlackAngle233 committed
354
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
355
356
    </Reference>
    <Reference Include="UnityEngine.UnityWebRequestWWWModule">
BlackAngle233's avatar
BlackAngle233 committed
357
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
358
359
    </Reference>
    <Reference Include="UnityEngine.VFXModule">
BlackAngle233's avatar
BlackAngle233 committed
360
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
361
362
    </Reference>
    <Reference Include="UnityEngine.VRModule">
BlackAngle233's avatar
BlackAngle233 committed
363
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
364
365
    </Reference>
    <Reference Include="UnityEngine.VehiclesModule">
BlackAngle233's avatar
BlackAngle233 committed
366
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
367
368
    </Reference>
    <Reference Include="UnityEngine.VideoModule">
BlackAngle233's avatar
BlackAngle233 committed
369
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
370
371
    </Reference>
    <Reference Include="UnityEngine.WindModule">
BlackAngle233's avatar
BlackAngle233 committed
372
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
373
374
    </Reference>
    <Reference Include="UnityEngine.XRModule">
BlackAngle233's avatar
BlackAngle233 committed
375
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
376
377
    </Reference>
    <Reference Include="UnityEditor">
BlackAngle233's avatar
BlackAngle233 committed
378
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEditor.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
379
380
    </Reference>
    <Reference Include="UnityEditor.VR">
BlackAngle233's avatar
BlackAngle233 committed
381
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
382
383
    </Reference>
    <Reference Include="UnityEditor.Graphs">
BlackAngle233's avatar
BlackAngle233 committed
384
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/Managed/UnityEditor.Graphs.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
385
386
    </Reference>
    <Reference Include="UnityEditor.WindowsStandalone.Extensions">
BlackAngle233's avatar
BlackAngle233 committed
387
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
388
389
    </Reference>
    <Reference Include="nunit.framework">
BlackAngle233's avatar
BlackAngle233 committed
390
        <HintPath>C:/Users/BlackAngle/Desktop/MathsEngine/MathTec/Library/PackageCache/com.unity.ext.nunit@1.0.0/net35/unity-custom/nunit.framework.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
391
392
    </Reference>
    <Reference Include="mscorlib">
BlackAngle233's avatar
BlackAngle233 committed
393
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
394
395
    </Reference>
    <Reference Include="System">
BlackAngle233's avatar
BlackAngle233 committed
396
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
397
398
    </Reference>
    <Reference Include="System.Core">
BlackAngle233's avatar
BlackAngle233 committed
399
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
400
401
    </Reference>
    <Reference Include="System.Runtime.Serialization">
BlackAngle233's avatar
BlackAngle233 committed
402
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
403
404
    </Reference>
    <Reference Include="System.Xml">
BlackAngle233's avatar
BlackAngle233 committed
405
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
406
407
    </Reference>
    <Reference Include="System.Xml.Linq">
BlackAngle233's avatar
BlackAngle233 committed
408
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
409
410
    </Reference>
    <Reference Include="System.Numerics">
BlackAngle233's avatar
BlackAngle233 committed
411
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
412
413
    </Reference>
    <Reference Include="System.Numerics.Vectors">
BlackAngle233's avatar
BlackAngle233 committed
414
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
415
416
    </Reference>
    <Reference Include="System.Net.Http">
BlackAngle233's avatar
BlackAngle233 committed
417
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
418
419
    </Reference>
    <Reference Include="Microsoft.CSharp">
BlackAngle233's avatar
BlackAngle233 committed
420
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
421
422
    </Reference>
    <Reference Include="System.Data">
BlackAngle233's avatar
BlackAngle233 committed
423
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
424
425
    </Reference>
    <Reference Include="Microsoft.Win32.Primitives">
BlackAngle233's avatar
BlackAngle233 committed
426
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
427
428
    </Reference>
    <Reference Include="netstandard">
BlackAngle233's avatar
BlackAngle233 committed
429
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
430
431
    </Reference>
    <Reference Include="System.AppContext">
BlackAngle233's avatar
BlackAngle233 committed
432
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
433
434
    </Reference>
    <Reference Include="System.Collections.Concurrent">
BlackAngle233's avatar
BlackAngle233 committed
435
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
436
437
    </Reference>
    <Reference Include="System.Collections">
BlackAngle233's avatar
BlackAngle233 committed
438
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
439
440
    </Reference>
    <Reference Include="System.Collections.NonGeneric">
BlackAngle233's avatar
BlackAngle233 committed
441
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
442
443
    </Reference>
    <Reference Include="System.Collections.Specialized">
BlackAngle233's avatar
BlackAngle233 committed
444
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
445
446
    </Reference>
    <Reference Include="System.ComponentModel.Annotations">
BlackAngle233's avatar
BlackAngle233 committed
447
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
448
449
    </Reference>
    <Reference Include="System.ComponentModel">
BlackAngle233's avatar
BlackAngle233 committed
450
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
451
452
    </Reference>
    <Reference Include="System.ComponentModel.EventBasedAsync">
BlackAngle233's avatar
BlackAngle233 committed
453
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
454
455
    </Reference>
    <Reference Include="System.ComponentModel.Primitives">
BlackAngle233's avatar
BlackAngle233 committed
456
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
457
458
    </Reference>
    <Reference Include="System.ComponentModel.TypeConverter">
BlackAngle233's avatar
BlackAngle233 committed
459
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
460
461
    </Reference>
    <Reference Include="System.Console">
BlackAngle233's avatar
BlackAngle233 committed
462
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
463
464
    </Reference>
    <Reference Include="System.Data.Common">
BlackAngle233's avatar
BlackAngle233 committed
465
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
466
467
    </Reference>
    <Reference Include="System.Diagnostics.Contracts">
BlackAngle233's avatar
BlackAngle233 committed
468
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
469
470
    </Reference>
    <Reference Include="System.Diagnostics.Debug">
BlackAngle233's avatar
BlackAngle233 committed
471
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
472
473
    </Reference>
    <Reference Include="System.Diagnostics.FileVersionInfo">
BlackAngle233's avatar
BlackAngle233 committed
474
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
475
476
    </Reference>
    <Reference Include="System.Diagnostics.Process">
BlackAngle233's avatar
BlackAngle233 committed
477
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
478
479
    </Reference>
    <Reference Include="System.Diagnostics.StackTrace">
BlackAngle233's avatar
BlackAngle233 committed
480
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
481
482
    </Reference>
    <Reference Include="System.Diagnostics.TextWriterTraceListener">
BlackAngle233's avatar
BlackAngle233 committed
483
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
484
485
    </Reference>
    <Reference Include="System.Diagnostics.Tools">
BlackAngle233's avatar
BlackAngle233 committed
486
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
487
488
    </Reference>
    <Reference Include="System.Diagnostics.TraceSource">
BlackAngle233's avatar
BlackAngle233 committed
489
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
490
491
    </Reference>
    <Reference Include="System.Drawing.Primitives">
BlackAngle233's avatar
BlackAngle233 committed
492
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
493
494
    </Reference>
    <Reference Include="System.Dynamic.Runtime">
BlackAngle233's avatar
BlackAngle233 committed
495
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
496
497
    </Reference>
    <Reference Include="System.Globalization.Calendars">
BlackAngle233's avatar
BlackAngle233 committed
498
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
499
500
    </Reference>
    <Reference Include="System.Globalization">
BlackAngle233's avatar
BlackAngle233 committed
501
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
502
503
    </Reference>
    <Reference Include="System.Globalization.Extensions">
BlackAngle233's avatar
BlackAngle233 committed
504
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
505
506
    </Reference>
    <Reference Include="System.IO.Compression.ZipFile">
BlackAngle233's avatar
BlackAngle233 committed
507
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
508
509
    </Reference>
    <Reference Include="System.IO">
BlackAngle233's avatar
BlackAngle233 committed
510
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
511
512
    </Reference>
    <Reference Include="System.IO.FileSystem">
BlackAngle233's avatar
BlackAngle233 committed
513
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
514
515
    </Reference>
    <Reference Include="System.IO.FileSystem.DriveInfo">
BlackAngle233's avatar
BlackAngle233 committed
516
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
517
518
    </Reference>
    <Reference Include="System.IO.FileSystem.Primitives">
BlackAngle233's avatar
BlackAngle233 committed
519
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
520
521
    </Reference>
    <Reference Include="System.IO.FileSystem.Watcher">
BlackAngle233's avatar
BlackAngle233 committed
522
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
523
524
    </Reference>
    <Reference Include="System.IO.IsolatedStorage">
BlackAngle233's avatar
BlackAngle233 committed
525
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
526
527
    </Reference>
    <Reference Include="System.IO.MemoryMappedFiles">
BlackAngle233's avatar
BlackAngle233 committed
528
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
529
530
    </Reference>
    <Reference Include="System.IO.Pipes">
BlackAngle233's avatar
BlackAngle233 committed
531
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
532
533
    </Reference>
    <Reference Include="System.IO.UnmanagedMemoryStream">
BlackAngle233's avatar
BlackAngle233 committed
534
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
535
536
    </Reference>
    <Reference Include="System.Linq">
BlackAngle233's avatar
BlackAngle233 committed
537
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
538
539
    </Reference>
    <Reference Include="System.Linq.Expressions">
BlackAngle233's avatar
BlackAngle233 committed
540
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
541
542
    </Reference>
    <Reference Include="System.Linq.Parallel">
BlackAngle233's avatar
BlackAngle233 committed
543
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
544
545
    </Reference>
    <Reference Include="System.Linq.Queryable">
BlackAngle233's avatar
BlackAngle233 committed
546
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
547
548
    </Reference>
    <Reference Include="System.Net.Http.Rtc">
BlackAngle233's avatar
BlackAngle233 committed
549
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
550
551
    </Reference>
    <Reference Include="System.Net.NameResolution">
BlackAngle233's avatar
BlackAngle233 committed
552
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
553
554
    </Reference>
    <Reference Include="System.Net.NetworkInformation">
BlackAngle233's avatar
BlackAngle233 committed
555
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
556
557
    </Reference>
    <Reference Include="System.Net.Ping">
BlackAngle233's avatar
BlackAngle233 committed
558
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
559
560
    </Reference>
    <Reference Include="System.Net.Primitives">
BlackAngle233's avatar
BlackAngle233 committed
561
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
562
563
    </Reference>
    <Reference Include="System.Net.Requests">
BlackAngle233's avatar
BlackAngle233 committed
564
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
565
566
    </Reference>
    <Reference Include="System.Net.Security">
BlackAngle233's avatar
BlackAngle233 committed
567
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
568
569
    </Reference>
    <Reference Include="System.Net.Sockets">
BlackAngle233's avatar
BlackAngle233 committed
570
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
571
572
    </Reference>
    <Reference Include="System.Net.WebHeaderCollection">
BlackAngle233's avatar
BlackAngle233 committed
573
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
574
575
    </Reference>
    <Reference Include="System.Net.WebSockets.Client">
BlackAngle233's avatar
BlackAngle233 committed
576
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
577
578
    </Reference>
    <Reference Include="System.Net.WebSockets">
BlackAngle233's avatar
BlackAngle233 committed
579
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
580
581
    </Reference>
    <Reference Include="System.ObjectModel">
BlackAngle233's avatar
BlackAngle233 committed
582
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
583
584
    </Reference>
    <Reference Include="System.Reflection">
BlackAngle233's avatar
BlackAngle233 committed
585
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
586
587
    </Reference>
    <Reference Include="System.Reflection.Emit">
BlackAngle233's avatar
BlackAngle233 committed
588
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
589
590
    </Reference>
    <Reference Include="System.Reflection.Emit.ILGeneration">
BlackAngle233's avatar
BlackAngle233 committed
591
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
592
593
    </Reference>
    <Reference Include="System.Reflection.Emit.Lightweight">
BlackAngle233's avatar
BlackAngle233 committed
594
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
595
596
    </Reference>
    <Reference Include="System.Reflection.Extensions">
BlackAngle233's avatar
BlackAngle233 committed
597
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
598
599
    </Reference>
    <Reference Include="System.Reflection.Primitives">
BlackAngle233's avatar
BlackAngle233 committed
600
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
601
602
    </Reference>
    <Reference Include="System.Resources.Reader">
BlackAngle233's avatar
BlackAngle233 committed
603
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
604
605
    </Reference>
    <Reference Include="System.Resources.ResourceManager">
BlackAngle233's avatar
BlackAngle233 committed
606
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
607
608
    </Reference>
    <Reference Include="System.Resources.Writer">
BlackAngle233's avatar
BlackAngle233 committed
609
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
610
611
    </Reference>
    <Reference Include="System.Runtime.CompilerServices.VisualC">
BlackAngle233's avatar
BlackAngle233 committed
612
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
613
614
    </Reference>
    <Reference Include="System.Runtime">
BlackAngle233's avatar
BlackAngle233 committed
615
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
616
617
    </Reference>
    <Reference Include="System.Runtime.Extensions">
BlackAngle233's avatar
BlackAngle233 committed
618
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
619
620
    </Reference>
    <Reference Include="System.Runtime.Handles">
BlackAngle233's avatar
BlackAngle233 committed
621
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
622
623
    </Reference>
    <Reference Include="System.Runtime.InteropServices">
BlackAngle233's avatar
BlackAngle233 committed
624
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
625
626
    </Reference>
    <Reference Include="System.Runtime.InteropServices.RuntimeInformation">
BlackAngle233's avatar
BlackAngle233 committed
627
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
628
629
    </Reference>
    <Reference Include="System.Runtime.InteropServices.WindowsRuntime">
BlackAngle233's avatar
BlackAngle233 committed
630
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
631
632
    </Reference>
    <Reference Include="System.Runtime.Numerics">
BlackAngle233's avatar
BlackAngle233 committed
633
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
634
635
    </Reference>
    <Reference Include="System.Runtime.Serialization.Formatters">
BlackAngle233's avatar
BlackAngle233 committed
636
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
637
638
    </Reference>
    <Reference Include="System.Runtime.Serialization.Json">
BlackAngle233's avatar
BlackAngle233 committed
639
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
640
641
    </Reference>
    <Reference Include="System.Runtime.Serialization.Primitives">
BlackAngle233's avatar
BlackAngle233 committed
642
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
643
644
    </Reference>
    <Reference Include="System.Runtime.Serialization.Xml">
BlackAngle233's avatar
BlackAngle233 committed
645
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
646
647
    </Reference>
    <Reference Include="System.Security.Claims">
BlackAngle233's avatar
BlackAngle233 committed
648
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
649
650
    </Reference>
    <Reference Include="System.Security.Cryptography.Algorithms">
BlackAngle233's avatar
BlackAngle233 committed
651
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
652
653
    </Reference>
    <Reference Include="System.Security.Cryptography.Csp">
BlackAngle233's avatar
BlackAngle233 committed
654
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
655
656
    </Reference>
    <Reference Include="System.Security.Cryptography.Encoding">
BlackAngle233's avatar
BlackAngle233 committed
657
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
658
659
    </Reference>
    <Reference Include="System.Security.Cryptography.Primitives">
BlackAngle233's avatar
BlackAngle233 committed
660
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
661
662
    </Reference>
    <Reference Include="System.Security.Cryptography.X509Certificates">
BlackAngle233's avatar
BlackAngle233 committed
663
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
664
665
    </Reference>
    <Reference Include="System.Security.Principal">
BlackAngle233's avatar
BlackAngle233 committed
666
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
667
668
    </Reference>
    <Reference Include="System.Security.SecureString">
BlackAngle233's avatar
BlackAngle233 committed
669
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
670
671
    </Reference>
    <Reference Include="System.ServiceModel.Duplex">
BlackAngle233's avatar
BlackAngle233 committed
672
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
673
674
    </Reference>
    <Reference Include="System.ServiceModel.Http">
BlackAngle233's avatar
BlackAngle233 committed
675
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
676
677
    </Reference>
    <Reference Include="System.ServiceModel.NetTcp">
BlackAngle233's avatar
BlackAngle233 committed
678
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
679
680
    </Reference>
    <Reference Include="System.ServiceModel.Primitives">
BlackAngle233's avatar
BlackAngle233 committed
681
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
682
683
    </Reference>
    <Reference Include="System.ServiceModel.Security">
BlackAngle233's avatar
BlackAngle233 committed
684
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
685
686
    </Reference>
    <Reference Include="System.Text.Encoding">
BlackAngle233's avatar
BlackAngle233 committed
687
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
688
689
    </Reference>
    <Reference Include="System.Text.Encoding.Extensions">
BlackAngle233's avatar
BlackAngle233 committed
690
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
691
692
    </Reference>
    <Reference Include="System.Text.RegularExpressions">
BlackAngle233's avatar
BlackAngle233 committed
693
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
694
695
    </Reference>
    <Reference Include="System.Threading">
BlackAngle233's avatar
BlackAngle233 committed
696
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
697
698
    </Reference>
    <Reference Include="System.Threading.Overlapped">
BlackAngle233's avatar
BlackAngle233 committed
699
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
700
701
    </Reference>
    <Reference Include="System.Threading.Tasks">
BlackAngle233's avatar
BlackAngle233 committed
702
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
703
704
    </Reference>
    <Reference Include="System.Threading.Tasks.Parallel">
BlackAngle233's avatar
BlackAngle233 committed
705
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
706
707
    </Reference>
    <Reference Include="System.Threading.Thread">
BlackAngle233's avatar
BlackAngle233 committed
708
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
709
710
    </Reference>
    <Reference Include="System.Threading.ThreadPool">
BlackAngle233's avatar
BlackAngle233 committed
711
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
712
713
    </Reference>
    <Reference Include="System.Threading.Timer">
BlackAngle233's avatar
BlackAngle233 committed
714
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
715
716
    </Reference>
    <Reference Include="System.ValueTuple">
BlackAngle233's avatar
BlackAngle233 committed
717
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
718
719
    </Reference>
    <Reference Include="System.Xml.ReaderWriter">
BlackAngle233's avatar
BlackAngle233 committed
720
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
721
722
    </Reference>
    <Reference Include="System.Xml.XDocument">
BlackAngle233's avatar
BlackAngle233 committed
723
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
724
725
    </Reference>
    <Reference Include="System.Xml.XmlDocument">
BlackAngle233's avatar
BlackAngle233 committed
726
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
727
728
    </Reference>
    <Reference Include="System.Xml.XmlSerializer">
BlackAngle233's avatar
BlackAngle233 committed
729
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
730
731
    </Reference>
    <Reference Include="System.Xml.XPath">
BlackAngle233's avatar
BlackAngle233 committed
732
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
733
734
    </Reference>
    <Reference Include="System.Xml.XPath.XDocument">
BlackAngle233's avatar
BlackAngle233 committed
735
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
736
737
    </Reference>
    <Reference Include="UnityScript">
BlackAngle233's avatar
BlackAngle233 committed
738
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
739
740
    </Reference>
    <Reference Include="UnityScript.Lang">
BlackAngle233's avatar
BlackAngle233 committed
741
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
742
743
    </Reference>
    <Reference Include="Boo.Lang">
BlackAngle233's avatar
BlackAngle233 committed
744
        <HintPath>C:/Program Files/Unity/Hub/Editor/2019.4.3f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll</HintPath>
BlackAngle233's avatar
BlackAngle233 committed
745
746
747
748
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="UnityEngine.TestRunner.csproj">
BlackAngle233's avatar
BlackAngle233 committed
749
      <Project>{f1806dfe-dceb-ce0d-3632-9054abbd1e10}</Project>
BlackAngle233's avatar
BlackAngle233 committed
750
      <Name>UnityEngine.TestRunner</Name>
BlackAngle233's avatar
BlackAngle233 committed
751
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
BlackAngle233's avatar
BlackAngle233 committed
752
753
754
    </ProjectReference>
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
BlackAngle233's avatar
BlackAngle233 committed
755
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
BlackAngle233's avatar
BlackAngle233 committed
756
757
758
759
760
761
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
BlackAngle233's avatar
BlackAngle233 committed
762
</Project>