This commit is contained in:
yzx 2025-03-21 13:22:04 +08:00
parent fa450c8d17
commit 662dc9f987
21 changed files with 1624 additions and 131 deletions

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"visualstudiotoolsforunity.vstuc"
]
}

10
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Unity",
"type": "vstuc",
"request": "attach"
}
]
}

60
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,60 @@
{
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.vs": true,
"**/.gitmodules": true,
"**/.vsconfig": true,
"**/*.booproj": true,
"**/*.pidb": true,
"**/*.suo": true,
"**/*.user": true,
"**/*.userprefs": true,
"**/*.unityproj": true,
"**/*.dll": true,
"**/*.exe": true,
"**/*.pdf": true,
"**/*.mid": true,
"**/*.midi": true,
"**/*.wav": true,
"**/*.gif": true,
"**/*.ico": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.png": true,
"**/*.psd": true,
"**/*.tga": true,
"**/*.tif": true,
"**/*.tiff": true,
"**/*.3ds": true,
"**/*.3DS": true,
"**/*.fbx": true,
"**/*.FBX": true,
"**/*.lxo": true,
"**/*.LXO": true,
"**/*.ma": true,
"**/*.MA": true,
"**/*.obj": true,
"**/*.OBJ": true,
"**/*.asset": true,
"**/*.cubemap": true,
"**/*.flare": true,
"**/*.mat": true,
"**/*.meta": true,
"**/*.prefab": true,
"**/*.unity": true,
"build/": true,
"Build/": true,
"Library/": true,
"library/": true,
"obj/": true,
"Obj/": true,
"Logs/": true,
"logs/": true,
"ProjectSettings/": true,
"UserSettings/": true,
"temp/": true,
"Temp/": true
},
"dotnet.defaultSolution": "UnityFramework.sln"
}

View File

@ -45,6 +45,7 @@
<Analyzer Include="D:\2022.3.21f1c1\Editor\Data\Tools\Unity.SourceGenerators\Unity.Properties.SourceGenerator.dll" />
</ItemGroup>
<ItemGroup>
<Compile Include="Assets\Framework\Editor\ProcessScoreWindow.cs" />
<Compile Include="Assets\Framework\Editor\CustomConfigWindow.cs" />
<Compile Include="Assets\Framework\Editor\SceneStepEditorWindow.cs" />
<Reference Include="UnityEngine">
@ -818,6 +819,10 @@
<Project>{e55587a8-55c5-9d75-4e05-354dc14a4b66}</Project>
<Name>NaughtyAttributes.Test</Name>
</ProjectReference>
<ProjectReference Include="Unity.Cursor.Editor.csproj">
<Project>{7e928f0f-5e26-3f03-8880-3b3a6c5ba8cf}</Project>
<Name>Unity.Cursor.Editor</Name>
</ProjectReference>
<ProjectReference Include="UniTask.Linq.csproj">
<Project>{1f2feed5-1908-3087-a60d-67d4f0262741}</Project>
<Name>UniTask.Linq</Name>

View File

@ -777,6 +777,10 @@
<Project>{e55587a8-55c5-9d75-4e05-354dc14a4b66}</Project>
<Name>NaughtyAttributes.Test</Name>
</ProjectReference>
<ProjectReference Include="Unity.Cursor.Editor.csproj">
<Project>{7e928f0f-5e26-3f03-8880-3b3a6c5ba8cf}</Project>
<Name>Unity.Cursor.Editor</Name>
</ProjectReference>
<ProjectReference Include="UniTask.Linq.csproj">
<Project>{1f2feed5-1908-3087-a60d-67d4f0262741}</Project>
<Name>UniTask.Linq</Name>

View File

@ -46,52 +46,32 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Assets\Framework\Dto\EventStepInfo.cs" />
<Compile Include="Assets\Framework\HQB\SubmitBtn.cs" />
<Compile Include="Assets\Framework\ToolsPack\ToolsPackGameObjectComponent.cs" />
<Compile Include="Assets\Framework\ToolsPack\ToolsPackSceneJump.cs" />
<Compile Include="Assets\Framework\HQB\ToolRoomToolsContainer.cs" />
<Compile Include="Assets\Framework\Manager\ProcessManager.cs" />
<Compile Include="Assets\Framework\Test\caolezhende.cs" />
<Compile Include="Assets\Framework\GameLauncher.cs" />
<Compile Include="Assets\Framework\HQB\WorkorderComponent.cs" />
<Compile Include="Assets\Framework\ProcessMode\ProcessStepDescription.cs" />
<Compile Include="Assets\TestScripts\Http\WebRequestTest.cs" />
<Compile Include="Assets\Framework\EventRegistrationCenter.cs" />
<Compile Include="Assets\Framework\Dto\SceneStepData.cs" />
<Compile Include="Assets\TestScripts\DoTweenTest\DoTweenTest.cs" />
<Compile Include="Assets\Framework\ToolsPack\ToolsSceneData.cs" />
<Compile Include="Assets\Framework\Test\TestProcess.cs" />
<Compile Include="Assets\Framework\CharacterEquipWindow\CharacterEquipInfoManager.cs" />
<Compile Include="Assets\Framework\ProcessExecutor.cs" />
<Compile Include="Assets\Framework\CharacterEquipWindow\CharacterMirrorManager.cs" />
<Compile Include="Assets\Framework\ProcessMode\ProcessMode.cs" />
<Compile Include="Assets\Framework\Dto\SubmitScoreDto.cs" />
<Compile Include="Assets\Framework\Manager\ToolsPackSceneManager.cs" />
<Compile Include="Assets\Framework\ProcessMode\ProcessCollection.cs" />
<Compile Include="Assets\test.cs" />
<Compile Include="Assets\Framework\ToolsPack\ToolsPackManager.cs" />
<Compile Include="Assets\Framework\ToolsPack\ElectricEnergyMeterData.cs" />
<Compile Include="Assets\Framework\ToolsPack\ToolsPackWindowItemBtComponent.cs" />
<Compile Include="Assets\Framework\HQB\ScoreCheckPoint.cs" />
<Compile Include="Assets\Framework\ScriptDescriptionAttribute.cs" />
<Compile Include="Assets\Framework\ToolsPack\ToolsPackMenuBtOnClick.cs" />
<Compile Include="Assets\Framework\CharacterEquipWindow\CharacterEquipBtOnClick.cs" />
<Compile Include="Assets\Framework\CharacterEquipWindow\CharacterEquipWindowManager.cs" />
<Compile Include="Assets\Framework\CharacterEquipWindow\CharacterInfoBtOnClick.cs" />
<Compile Include="Assets\Framework\Dto\SceneData.cs" />
<Compile Include="Assets\Framework\Manager\SceneManagerSingleton.cs" />
<Compile Include="Assets\Framework\Manager\DataConfigManager.cs" />
<Compile Include="Assets\Framework\ToolsPack\ToolsPackWindowToggle.cs" />
<Compile Include="Assets\Framework\ProcessActionAttribute.cs" />
<Compile Include="Assets\Framework\CharacterEquipWindow\CharacterEquipManager.cs" />
<Compile Include="Assets\Framework\ProcessMode\ProcessStep.cs" />
<Compile Include="Assets\Framework\Dto\StepData.cs" />
<Compile Include="Assets\TestScripts\tttt.cs" />
<Compile Include="Assets\Framework\ToolsPack\ToolsSceneProcessLauncher.cs" />
<Compile Include="Assets\Framework\ToolsPack\ToolsPackWindowManager.cs" />
<Compile Include="Assets\Framework\Manager\WebRequestManager.cs" />
<Compile Include="Assets\TestScripts\JsonTest\JsonTest.cs" />
<Compile Include="Assets\Framework\Dto\SceneInformation.cs" />
<None Include="E:\com.unity.ide.cursor-master\package.json" />
<None Include="Assets\StreamingAssets\DataConfig\新流程.json" />
<None Include="E:\com.unity.ide.cursor-master\ValidationExceptions.json" />
<None Include="Assets\StreamingAssets\DataConfig\ToolsPackData.json" />
<None Include="Assets\StreamingAssets\DataConfig\SceneStepData.json" />
<None Include="Assets\StreamingAssets\DataConfig\TeachingData.json" />
@ -99,6 +79,7 @@
<None Include="Assets\Framework\ThirdParty\NaughtyAttributes\package.json" />
<None Include="Assets\StreamingAssets\DataConfig\ToolsSceneStepData - 副本.json" />
<None Include="Assets\StreamingAssets\DataConfig\ToolsSceneStepData.json" />
<None Include="E:\com.unity.ide.cursor-master\ValidationConfig.json" />
<Reference Include="UnityEngine">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>
</Reference>
@ -824,6 +805,10 @@
<Project>{e55587a8-55c5-9d75-4e05-354dc14a4b66}</Project>
<Name>NaughtyAttributes.Test</Name>
</ProjectReference>
<ProjectReference Include="Unity.Cursor.Editor.csproj">
<Project>{7e928f0f-5e26-3f03-8880-3b3a6c5ba8cf}</Project>
<Name>Unity.Cursor.Editor</Name>
</ProjectReference>
<ProjectReference Include="UniTask.Linq.csproj">
<Project>{1f2feed5-1908-3087-a60d-67d4f0262741}</Project>
<Name>UniTask.Linq</Name>

View File

@ -62,10 +62,7 @@ public class GameLauncher : MonoBehaviour
MotionEngine.CreateModule<SceneManager>();
var sceneManager = MotionEngine.GetModule<SceneManager>();
// MotionEngine.GetModule<SceneManager>().LoadSceneAsync("1");
// MotionEngine.GetModule<SceneManager>().LoadSceneAsync("2");
MotionEngine.GetModule<ProcessManager>().InitializeFirstStep(System.IO.File.ReadAllText( Application.streamingAssetsPath + "/DataConfig/SceneStep.json"),ProcessMode.Practice);

View File

@ -686,112 +686,112 @@ namespace DefaultNamespace.ProcessMode
/// <summary>
/// 计算总分
/// </summary>
public int CalculateTotalScore()
{
float totalScore = 0;
Debug.Log("========== 开始计算总分 ==========");
// 如果当前模式没有在流程中,返回-1
if (!_processes.ContainsKey(_currentMode.ToString()))
{
Debug.LogError("当前模式不存在于流程中");
return -1;
}
// 获取当前流程的步骤
var steps = _processes[_currentMode.ToString()].Steps;
Debug.Log($"当前模式: {_currentMode}, 总步骤数: {steps.Count}");
// 遍历每个步骤
for (int i = 0; i < steps.Count; i++)
{
var step = steps[i];
float stepPossibleScore = 0; // 步骤满分
float stepActualScore = 0; // 步骤实际得分
Debug.Log($"\n===== 步骤 {i + 1}: {step.StepDescription} =====");
Debug.Log($"完成状态: {(step.IsCompleted ? "" : "")}");
// 遍历步骤中的所有动作
for (int j = 0; j < step.Actions.Count; j++)
public int CalculateTotalScore()
{
var action = step.Actions[j];
Debug.Log($"\n动作 {j + 1}: {action.Title}");
Debug.Log($"描述: {action.Description}");
Debug.Log($"满分: {action.Score}");
// 列出所有目标物体
Debug.Log("目标物体:");
foreach (var target in action.TargetObjects)
float totalScore = 0;
Debug.Log("========== 开始计算总分 ==========");
// 如果当前模式没有在流程中,返回-1
if (!_processes.ContainsKey(_currentMode.ToString()))
{
Debug.Log($"- {target.ObjectName} (类型: {target.Type})");
Debug.LogError("当前模式不存在于流程中");
return -1;
}
stepPossibleScore += action.Score;
// 获取当前流程的步骤
var steps = _processes[_currentMode.ToString()].Steps;
Debug.Log($"当前模式: {_currentMode}, 总步骤数: {steps.Count}");
// 如果步骤未完成
if (!step.IsCompleted)
// 遍历每个步骤
for (int i = 0; i < steps.Count; i++)
{
Debug.Log($"实际得分: 0 (未完成)");
continue;
var step = steps[i];
float stepPossibleScore = 0; // 步骤满分
float stepActualScore = 0; // 步骤实际得分
Debug.Log($"\n===== 步骤 {i + 1}: {step.StepDescription} =====");
Debug.Log($"完成状态: {(step.IsCompleted ? "" : "")}");
// 遍历步骤中的所有动作
for (int j = 0; j < step.Actions.Count; j++)
{
var action = step.Actions[j];
Debug.Log($"\n动作 {j + 1}: {action.Title}");
Debug.Log($"描述: {action.Description}");
Debug.Log($"满分: {action.Score}");
// 列出所有目标物体
Debug.Log("目标物体:");
foreach (var target in action.TargetObjects)
{
Debug.Log($"- {target.ObjectName} (类型: {target.Type})");
}
stepPossibleScore += action.Score;
// 如果步骤未完成
if (!step.IsCompleted)
{
Debug.Log($"实际得分: 0 (未完成)");
continue;
}
// 如果有错误点击
if (_incorrectClicksPerStep.TryGetValue(i, out var incorrectClicks))
{
float scorePerObject = action.Score / action.TargetObjects.Count;
float deductedScore = action.Score - scorePerObject * incorrectClicks.Count;
deductedScore = Math.Max(0, deductedScore);
Debug.Log($"错误点击次数: {incorrectClicks.Count}");
Debug.Log($"错误点击的物体: {string.Join(", ", incorrectClicks)}");
Debug.Log($"扣除分数: {(action.Score - deductedScore):F2}");
Debug.Log($"实际得分: {deductedScore:F2}");
stepActualScore += deductedScore;
}
else // 无错误完成
{
Debug.Log($"实际得分: {action.Score} (完美完成)");
stepActualScore += action.Score;
}
}
totalScore += stepActualScore;
// 记录评分步骤
if (_currentMode == ProcessMode.Assessment)
{
_submitScoreSteps.Add(new SubmitScoreStep
{
stepName = step.StepDescription,
testPoint = step.Actions[0].Description,
setScore = (int)stepPossibleScore,
score = (int)stepActualScore
});
}
Debug.Log($"\n----- 步骤 {i + 1} 总结 -----");
Debug.Log($"步骤名称: {step.StepDescription}");
Debug.Log($"动作数量: {step.Actions.Count}");
Debug.Log($"满分: {stepPossibleScore:F2}");
Debug.Log($"实际得分: {stepActualScore:F2}");
Debug.Log($"完成状态: {(step.IsCompleted ? "" : "")}");
if (_incorrectClicksPerStep.ContainsKey(i))
{
Debug.Log($"错误点击次数: {_incorrectClicksPerStep[i].Count}");
}
}
// 如果有错误点击
if (_incorrectClicksPerStep.TryGetValue(i, out var incorrectClicks))
{
float scorePerObject = action.Score / action.TargetObjects.Count;
float deductedScore = action.Score - scorePerObject * incorrectClicks.Count;
deductedScore = Math.Max(0, deductedScore);
Debug.Log("\n========== 评分总结 ==========");
Debug.Log($"总分: {totalScore:F2}");
Debug.Log($"完成步骤数: {steps.Count(s => s.IsCompleted)}/{steps.Count}");
Debug.Log($"有错误步骤数: {_incorrectClicksPerStep.Count}");
Debug.Log("============================\n");
Debug.Log($"错误点击次数: {incorrectClicks.Count}");
Debug.Log($"错误点击的物体: {string.Join(", ", incorrectClicks)}");
Debug.Log($"扣除分数: {(action.Score - deductedScore):F2}");
Debug.Log($"实际得分: {deductedScore:F2}");
stepActualScore += deductedScore;
}
else // 无错误完成
{
Debug.Log($"实际得分: {action.Score} (完美完成)");
stepActualScore += action.Score;
}
return (int)totalScore;
}
totalScore += stepActualScore;
// 记录评分步骤
if (_currentMode == ProcessMode.Assessment)
{
_submitScoreSteps.Add(new SubmitScoreStep
{
stepName = step.StepDescription,
testPoint = step.Actions[0].Description,
setScore = (int)stepPossibleScore,
score = (int)stepActualScore
});
}
Debug.Log($"\n----- 步骤 {i + 1} 总结 -----");
Debug.Log($"步骤名称: {step.StepDescription}");
Debug.Log($"动作数量: {step.Actions.Count}");
Debug.Log($"满分: {stepPossibleScore:F2}");
Debug.Log($"实际得分: {stepActualScore:F2}");
Debug.Log($"完成状态: {(step.IsCompleted ? "" : "")}");
if (_incorrectClicksPerStep.ContainsKey(i))
{
Debug.Log($"错误点击次数: {_incorrectClicksPerStep[i].Count}");
}
}
Debug.Log("\n========== 评分总结 ==========");
Debug.Log($"总分: {totalScore:F2}");
Debug.Log($"完成步骤数: {steps.Count(s => s.IsCompleted)}/{steps.Count}");
Debug.Log($"有错误步骤数: {_incorrectClicksPerStep.Count}");
Debug.Log("============================\n");
return (int)totalScore;
}
/// <summary>
/// 跳转到指定的步骤和动作
/// </summary>

326
Logs/AssetImportWorker0.log Normal file
View File

@ -0,0 +1,326 @@
Using pre-set license
Built from '2022.3/china_unity/release' branch; Version is '2022.3.21f1c1 (a04d3b8f4266) revision 10505531'; Using compiler version '192829333'; Build Type 'Release'
OS: 'Windows 10 (10.0.19044) 64bit Professional' Language: 'zh' Physical Memory: 16197 MB
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
COMMAND LINE ARGUMENTS:
D:\2022.3.21f1c1\Editor\Unity.exe
-adb2
-batchMode
-noUpm
-name
AssetImportWorker0
-projectPath
E:/Unity Projects/GitLab/2024/UnityFramework
-logFile
Logs/AssetImportWorker0.log
-srvPort
10464
Successfully changed project path to: E:/Unity Projects/GitLab/2024/UnityFramework
E:/Unity Projects/GitLab/2024/UnityFramework
[UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8"
"memorysetup-bucket-allocator-block-size=33554432"
"memorysetup-bucket-allocator-block-count=8"
"memorysetup-main-allocator-block-size=16777216"
"memorysetup-thread-allocator-block-size=16777216"
"memorysetup-gfx-main-allocator-block-size=16777216"
"memorysetup-gfx-thread-allocator-block-size=16777216"
"memorysetup-cache-allocator-block-size=4194304"
"memorysetup-typetree-allocator-block-size=2097152"
"memorysetup-profiler-bucket-allocator-granularity=16"
"memorysetup-profiler-bucket-allocator-bucket-count=8"
"memorysetup-profiler-bucket-allocator-block-size=33554432"
"memorysetup-profiler-bucket-allocator-block-count=8"
"memorysetup-profiler-allocator-block-size=16777216"
"memorysetup-profiler-editor-allocator-block-size=1048576"
"memorysetup-temp-allocator-size-main=16777216"
"memorysetup-job-temp-allocator-block-size=2097152"
"memorysetup-job-temp-allocator-block-size-background=1048576"
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
"memorysetup-allocator-temp-initial-block-size-main=262144"
"memorysetup-allocator-temp-initial-block-size-worker=262144"
"memorysetup-temp-allocator-size-background-worker=32768"
"memorysetup-temp-allocator-size-job-worker=262144"
"memorysetup-temp-allocator-size-preload-manager=33554432"
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
"memorysetup-temp-allocator-size-audio-worker=65536"
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144"
Player connection [15388] Host "[IP] 172.16.1.137 [Port] 0 [Flags] 2 [Guid] 1763889055 [EditorId] 1763889055 [Version] 1048832 [Id] WindowsEditor(7,PC-20230809ZJIS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
Player connection [15388] Host "[IP] 172.16.1.137 [Port] 0 [Flags] 2 [Guid] 1763889055 [EditorId] 1763889055 [Version] 1048832 [Id] WindowsEditor(7,PC-20230809ZJIS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
[Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers.
Refreshing native plugins compatible for Editor in 22.38 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.21f1c1 (a04d3b8f4266)
[Subsystems] Discovering subsystems at path D:/2022.3.21f1c1/Editor/Data/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path E:/Unity Projects/GitLab/2024/UnityFramework/Assets
GfxDevice: creating device client; threaded=0; jobified=0
Direct3D:
Version: Direct3D 11.0 [level 11.1]
Renderer: NVIDIA GeForce GTX 1660 SUPER (ID=0x21c4)
Vendor: NVIDIA
VRAM: 5981 MB
Driver: 31.0.15.4617
Initialize mono
Mono path[0] = 'D:/2022.3.21f1c1/Editor/Data/Managed'
Mono path[1] = 'D:/2022.3.21f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
Mono config path = 'D:/2022.3.21f1c1/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56328
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: D:/2022.3.21f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.007929 seconds.
- Loaded All Assemblies, in 0.412 seconds
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.344 seconds
Domain Reload Profiling: 753ms
BeginReloadAssembly (129ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (1ms)
RebuildCommonClasses (39ms)
RebuildNativeTypeToScriptingClass (13ms)
initialDomainReloadingComplete (71ms)
LoadAllAssembliesAndSetupDomain (156ms)
LoadAssemblies (124ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (154ms)
TypeCache.Refresh (152ms)
TypeCache.ScanAssembly (137ms)
ScanForSourceGeneratedMonoScriptInfo (1ms)
ResolveRequiredComponents (1ms)
FinalizeReload (345ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (270ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms)
SetLoadedEditorAssemblies (9ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (3ms)
ProcessInitializeOnLoadAttributes (188ms)
ProcessInitializeOnLoadMethodAttributes (58ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (0ms)
========================================================================
Worker process is ready to serve import requests
Begin MonoManager ReloadAssembly
- Loaded All Assemblies, in 0.842 seconds
Refreshing native plugins compatible for Editor in 5.14 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Package Manager log level set to [2]
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
[Package Manager] Cannot connect to Unity Package Manager local server
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.811 seconds
Domain Reload Profiling: 1649ms
BeginReloadAssembly (153ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (9ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (20ms)
RebuildCommonClasses (38ms)
RebuildNativeTypeToScriptingClass (13ms)
initialDomainReloadingComplete (40ms)
LoadAllAssembliesAndSetupDomain (593ms)
LoadAssemblies (424ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (252ms)
TypeCache.Refresh (220ms)
TypeCache.ScanAssembly (200ms)
ScanForSourceGeneratedMonoScriptInfo (21ms)
ResolveRequiredComponents (9ms)
FinalizeReload (812ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (616ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (7ms)
SetLoadedEditorAssemblies (5ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (115ms)
ProcessInitializeOnLoadAttributes (447ms)
ProcessInitializeOnLoadMethodAttributes (34ms)
AfterProcessingInitializeOnLoad (8ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (8ms)
Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds
Refreshing native plugins compatible for Editor in 2.48 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3586 Unused Serialized files (Serialized files now loaded: 0)
Unloading 41 unused Assets / (58.3 KB). Loaded Objects now: 4063.
Memory consumption went from 141.0 MB to 141.0 MB.
Total: 2.030300 ms (FindLiveObjects: 0.174900 ms CreateObjectMapping: 0.073600 ms MarkObjects: 1.697400 ms DeleteObjects: 0.083200 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Import Request.
Time since last request: 9184.993633 seconds.
path: Assets/Framework
artifactKey: Guid(2503af1b9165311458e5bb89cb59df6f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Framework using Guid(2503af1b9165311458e5bb89cb59df6f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34fed6607ffc9070fcef05767ea53941') in 0.003847 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
- Loaded All Assemblies, in 0.676 seconds
Refreshing native plugins compatible for Editor in 5.99 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
[Package Manager] Cannot connect to Unity Package Manager local server
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 1.207 seconds
Domain Reload Profiling: 1874ms
BeginReloadAssembly (197ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (6ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (44ms)
RebuildCommonClasses (36ms)
RebuildNativeTypeToScriptingClass (13ms)
initialDomainReloadingComplete (42ms)
LoadAllAssembliesAndSetupDomain (378ms)
LoadAssemblies (450ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (35ms)
TypeCache.Refresh (14ms)
TypeCache.ScanAssembly (3ms)
ScanForSourceGeneratedMonoScriptInfo (9ms)
ResolveRequiredComponents (10ms)
FinalizeReload (1208ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (563ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (6ms)
SetLoadedEditorAssemblies (6ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (113ms)
ProcessInitializeOnLoadAttributes (392ms)
ProcessInitializeOnLoadMethodAttributes (35ms)
AfterProcessingInitializeOnLoad (10ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (8ms)
Refreshing native plugins compatible for Editor in 5.02 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3580 Unused Serialized files (Serialized files now loaded: 0)
Unloading 27 unused Assets / (32.2 KB). Loaded Objects now: 4068.
Memory consumption went from 141.8 MB to 141.8 MB.
Total: 2.912900 ms (FindLiveObjects: 0.420400 ms CreateObjectMapping: 0.099700 ms MarkObjects: 2.340800 ms DeleteObjects: 0.050700 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
- Loaded All Assemblies, in 0.717 seconds
Refreshing native plugins compatible for Editor in 9.78 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
[Package Manager] Cannot connect to Unity Package Manager local server
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 1.308 seconds
Domain Reload Profiling: 2021ms
BeginReloadAssembly (209ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (9ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (45ms)
RebuildCommonClasses (37ms)
RebuildNativeTypeToScriptingClass (13ms)
initialDomainReloadingComplete (38ms)
LoadAllAssembliesAndSetupDomain (414ms)
LoadAssemblies (486ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (35ms)
TypeCache.Refresh (13ms)
TypeCache.ScanAssembly (2ms)
ScanForSourceGeneratedMonoScriptInfo (10ms)
ResolveRequiredComponents (9ms)
FinalizeReload (1309ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (616ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (7ms)
SetLoadedEditorAssemblies (6ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (112ms)
ProcessInitializeOnLoadAttributes (440ms)
ProcessInitializeOnLoadMethodAttributes (41ms)
AfterProcessingInitializeOnLoad (10ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (9ms)
Refreshing native plugins compatible for Editor in 3.22 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3627 Unused Serialized files (Serialized files now loaded: 0)
Unloading 28 unused Assets / (32.6 KB). Loaded Objects now: 4116.
Memory consumption went from 144.9 MB to 144.8 MB.
Total: 3.440400 ms (FindLiveObjects: 0.604400 ms CreateObjectMapping: 0.117900 ms MarkObjects: 2.664000 ms DeleteObjects: 0.052700 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Import Request.
Time since last request: 142.890045 seconds.
path: Assets/ddd.unity
artifactKey: Guid(4fa651d2eadfffe4da6f557d69116809) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/ddd.unity using Guid(4fa651d2eadfffe4da6f557d69116809) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf686c1a13b66d01c0ff0791f461b4ab') in 0.002225 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0

326
Logs/AssetImportWorker1.log Normal file
View File

@ -0,0 +1,326 @@
Using pre-set license
Built from '2022.3/china_unity/release' branch; Version is '2022.3.21f1c1 (a04d3b8f4266) revision 10505531'; Using compiler version '192829333'; Build Type 'Release'
OS: 'Windows 10 (10.0.19044) 64bit Professional' Language: 'zh' Physical Memory: 16197 MB
BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1
COMMAND LINE ARGUMENTS:
D:\2022.3.21f1c1\Editor\Unity.exe
-adb2
-batchMode
-noUpm
-name
AssetImportWorker1
-projectPath
E:/Unity Projects/GitLab/2024/UnityFramework
-logFile
Logs/AssetImportWorker1.log
-srvPort
10464
Successfully changed project path to: E:/Unity Projects/GitLab/2024/UnityFramework
E:/Unity Projects/GitLab/2024/UnityFramework
[UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8"
"memorysetup-bucket-allocator-block-size=33554432"
"memorysetup-bucket-allocator-block-count=8"
"memorysetup-main-allocator-block-size=16777216"
"memorysetup-thread-allocator-block-size=16777216"
"memorysetup-gfx-main-allocator-block-size=16777216"
"memorysetup-gfx-thread-allocator-block-size=16777216"
"memorysetup-cache-allocator-block-size=4194304"
"memorysetup-typetree-allocator-block-size=2097152"
"memorysetup-profiler-bucket-allocator-granularity=16"
"memorysetup-profiler-bucket-allocator-bucket-count=8"
"memorysetup-profiler-bucket-allocator-block-size=33554432"
"memorysetup-profiler-bucket-allocator-block-count=8"
"memorysetup-profiler-allocator-block-size=16777216"
"memorysetup-profiler-editor-allocator-block-size=1048576"
"memorysetup-temp-allocator-size-main=16777216"
"memorysetup-job-temp-allocator-block-size=2097152"
"memorysetup-job-temp-allocator-block-size-background=1048576"
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
"memorysetup-allocator-temp-initial-block-size-main=262144"
"memorysetup-allocator-temp-initial-block-size-worker=262144"
"memorysetup-temp-allocator-size-background-worker=32768"
"memorysetup-temp-allocator-size-job-worker=262144"
"memorysetup-temp-allocator-size-preload-manager=33554432"
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
"memorysetup-temp-allocator-size-audio-worker=65536"
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144"
Player connection [11708] Host "[IP] 172.16.1.137 [Port] 0 [Flags] 2 [Guid] 1889636305 [EditorId] 1889636305 [Version] 1048832 [Id] WindowsEditor(7,PC-20230809ZJIS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
Player connection [11708] Host "[IP] 172.16.1.137 [Port] 0 [Flags] 2 [Guid] 1889636305 [EditorId] 1889636305 [Version] 1048832 [Id] WindowsEditor(7,PC-20230809ZJIS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
[Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers.
Refreshing native plugins compatible for Editor in 21.66 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.21f1c1 (a04d3b8f4266)
[Subsystems] Discovering subsystems at path D:/2022.3.21f1c1/Editor/Data/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path E:/Unity Projects/GitLab/2024/UnityFramework/Assets
GfxDevice: creating device client; threaded=0; jobified=0
Direct3D:
Version: Direct3D 11.0 [level 11.1]
Renderer: NVIDIA GeForce GTX 1660 SUPER (ID=0x21c4)
Vendor: NVIDIA
VRAM: 5981 MB
Driver: 31.0.15.4617
Initialize mono
Mono path[0] = 'D:/2022.3.21f1c1/Editor/Data/Managed'
Mono path[1] = 'D:/2022.3.21f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
Mono config path = 'D:/2022.3.21f1c1/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56712
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: D:/2022.3.21f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.007844 seconds.
- Loaded All Assemblies, in 0.404 seconds
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.339 seconds
Domain Reload Profiling: 741ms
BeginReloadAssembly (123ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (1ms)
RebuildCommonClasses (38ms)
RebuildNativeTypeToScriptingClass (13ms)
initialDomainReloadingComplete (72ms)
LoadAllAssembliesAndSetupDomain (155ms)
LoadAssemblies (119ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (152ms)
TypeCache.Refresh (150ms)
TypeCache.ScanAssembly (135ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (1ms)
FinalizeReload (340ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (265ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (10ms)
SetLoadedEditorAssemblies (10ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (3ms)
ProcessInitializeOnLoadAttributes (183ms)
ProcessInitializeOnLoadMethodAttributes (58ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (0ms)
========================================================================
Worker process is ready to serve import requests
Begin MonoManager ReloadAssembly
- Loaded All Assemblies, in 0.866 seconds
Refreshing native plugins compatible for Editor in 6.00 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Package Manager log level set to [2]
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
[Package Manager] Cannot connect to Unity Package Manager local server
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.797 seconds
Domain Reload Profiling: 1655ms
BeginReloadAssembly (188ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (9ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (21ms)
RebuildCommonClasses (45ms)
RebuildNativeTypeToScriptingClass (14ms)
initialDomainReloadingComplete (42ms)
LoadAllAssembliesAndSetupDomain (568ms)
LoadAssemblies (422ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (246ms)
TypeCache.Refresh (214ms)
TypeCache.ScanAssembly (193ms)
ScanForSourceGeneratedMonoScriptInfo (22ms)
ResolveRequiredComponents (8ms)
FinalizeReload (798ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (616ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (6ms)
SetLoadedEditorAssemblies (5ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (115ms)
ProcessInitializeOnLoadAttributes (445ms)
ProcessInitializeOnLoadMethodAttributes (37ms)
AfterProcessingInitializeOnLoad (8ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (10ms)
Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds
Refreshing native plugins compatible for Editor in 3.19 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3586 Unused Serialized files (Serialized files now loaded: 0)
Unloading 41 unused Assets / (58.0 KB). Loaded Objects now: 4063.
Memory consumption went from 141.1 MB to 141.0 MB.
Total: 2.295800 ms (FindLiveObjects: 0.223800 ms CreateObjectMapping: 0.093200 ms MarkObjects: 1.881600 ms DeleteObjects: 0.096200 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Import Request.
Time since last request: 9123.597616 seconds.
path: Assets/test.cs
artifactKey: Guid(f4be05ca0d93a2842bcc1867ac568211) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/test.cs using Guid(f4be05ca0d93a2842bcc1867ac568211) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b79cbaf310a2d48139cf8190f4affc5') in 0.002131 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Import Request.
Time since last request: 0.000021 seconds.
path: Assets/Framework/Manager/ProcessManager.cs
artifactKey: Guid(85469ae51c98f9e478f5f5edeb3da446) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Framework/Manager/ProcessManager.cs using Guid(85469ae51c98f9e478f5f5edeb3da446) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c46ee52beae60bea2798fe6f900e2b6a') in 0.000362 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
- Loaded All Assemblies, in 0.677 seconds
Refreshing native plugins compatible for Editor in 6.24 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
[Package Manager] Cannot connect to Unity Package Manager local server
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 1.205 seconds
Domain Reload Profiling: 1873ms
BeginReloadAssembly (198ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (6ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (45ms)
RebuildCommonClasses (37ms)
RebuildNativeTypeToScriptingClass (14ms)
initialDomainReloadingComplete (41ms)
LoadAllAssembliesAndSetupDomain (378ms)
LoadAssemblies (449ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (35ms)
TypeCache.Refresh (14ms)
TypeCache.ScanAssembly (3ms)
ScanForSourceGeneratedMonoScriptInfo (9ms)
ResolveRequiredComponents (10ms)
FinalizeReload (1205ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (561ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (6ms)
SetLoadedEditorAssemblies (6ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (112ms)
ProcessInitializeOnLoadAttributes (392ms)
ProcessInitializeOnLoadMethodAttributes (35ms)
AfterProcessingInitializeOnLoad (10ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (8ms)
Refreshing native plugins compatible for Editor in 2.61 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3580 Unused Serialized files (Serialized files now loaded: 0)
Unloading 27 unused Assets / (32.2 KB). Loaded Objects now: 4068.
Memory consumption went from 141.9 MB to 141.9 MB.
Total: 2.091200 ms (FindLiveObjects: 0.190100 ms CreateObjectMapping: 0.078900 ms MarkObjects: 1.778600 ms DeleteObjects: 0.042600 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
- Loaded All Assemblies, in 0.717 seconds
Refreshing native plugins compatible for Editor in 8.93 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
[Package Manager] Cannot connect to Unity Package Manager local server
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 1.310 seconds
Domain Reload Profiling: 2022ms
BeginReloadAssembly (209ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (9ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (46ms)
RebuildCommonClasses (37ms)
RebuildNativeTypeToScriptingClass (13ms)
initialDomainReloadingComplete (38ms)
LoadAllAssembliesAndSetupDomain (414ms)
LoadAssemblies (485ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (35ms)
TypeCache.Refresh (13ms)
TypeCache.ScanAssembly (2ms)
ScanForSourceGeneratedMonoScriptInfo (10ms)
ResolveRequiredComponents (9ms)
FinalizeReload (1311ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (618ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (6ms)
SetLoadedEditorAssemblies (6ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (112ms)
ProcessInitializeOnLoadAttributes (442ms)
ProcessInitializeOnLoadMethodAttributes (40ms)
AfterProcessingInitializeOnLoad (11ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (9ms)
Refreshing native plugins compatible for Editor in 3.33 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3627 Unused Serialized files (Serialized files now loaded: 0)
Unloading 28 unused Assets / (32.7 KB). Loaded Objects now: 4116.
Memory consumption went from 144.9 MB to 144.9 MB.
Total: 2.107600 ms (FindLiveObjects: 0.185600 ms CreateObjectMapping: 0.081700 ms MarkObjects: 1.788800 ms DeleteObjects: 0.050000 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->

View File

@ -0,0 +1,7 @@
Base path: 'D:/2022.3.21f1c1/Editor/Data', plugins path 'D:/2022.3.21f1c1/Editor/Data/PlaybackEngines'
Cmd: initializeCompiler
Cmd: initializeCompiler
Cmd: initializeCompiler

View File

@ -1,6 +1,3 @@
Base path: 'D:/2022.3.21f1c1/Editor/Data', plugins path 'D:/2022.3.21f1c1/Editor/Data/PlaybackEngines'
Cmd: initializeCompiler
Cmd: shutdown
Quitting shader compiler process

View File

@ -67,6 +67,7 @@
<Compile Include="Assets\Framework\Scripts\Runtime\Engine\Engine.Utility\Misc\ObfuscateFloat.cs" />
<Compile Include="Assets\Framework\Scripts\Runtime\Module\Module.Console\GameModuleWindow.cs" />
<Compile Include="Assets\Framework\Scripts\Runtime\Engine\Core\MainThreadSyncContext.cs" />
<Compile Include="Assets\Framework\Scripts\Runtime\Engine\Scene\SceneManager.cs" />
<Compile Include="Assets\Framework\Scripts\Runtime\Engine\Engine.Utility\Misc\BitMask64.cs" />
<Compile Include="Assets\Framework\Scripts\Runtime\Module\Module.Event\IEventMessage.cs" />
<Compile Include="Assets\Framework\Scripts\Runtime\Engine\Engine.Console\ConsoleAttribute.cs" />
@ -93,6 +94,7 @@
<Compile Include="Assets\Framework\Scripts\Runtime\Engine\Engine.Camera\CameraControl\CameraControlComponent.cs" />
<Compile Include="Assets\Framework\Scripts\Runtime\Engine\Engine.Reference\ReferenceCollector.cs" />
<Compile Include="Assets\Framework\Scripts\Runtime\Engine\Engine.Camera\Raycast\IRaycastable.cs" />
<Compile Include="Assets\Framework\Scripts\Runtime\Engine\Scene\ISceneInitializer.cs" />
<None Include="Assets\Framework\Scripts\Runtime\MotionFramework.asmdef" />
<Reference Include="UnityEngine">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>

View File

@ -2,7 +2,8 @@
"dependencies": {
"com.unity.collab-proxy": "2.3.1",
"com.unity.feature.development": "1.0.1",
"com.unity.ide.rider": "3.0.34",
"com.unity.ide.cursor": "file:E:/com.unity.ide.cursor-master",
"com.unity.ide.rider": "3.0.35",
"com.unity.scriptablebuildpipeline": "1.21.23",
"com.unity.textmeshpro": "3.0.6",
"com.unity.timeline": "1.7.6",

View File

@ -35,8 +35,16 @@
"com.unity.testtools.codecoverage": "1.2.5"
}
},
"com.unity.ide.cursor": {
"version": "file:E:/com.unity.ide.cursor-master",
"depth": 0,
"source": "local",
"dependencies": {
"com.unity.test-framework": "1.1.9"
}
},
"com.unity.ide.rider": {
"version": "3.0.34",
"version": "3.0.35",
"depth": 0,
"source": "registry",
"dependencies": {

756
Unity.Cursor.Editor.csproj Normal file
View File

@ -0,0 +1,756 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>9.0</LangVersion>
<_TargetFrameworkDirectories>non_empty_path_generated_by_unity.rider.package</_TargetFrameworkDirectories>
<_FullFrameworkReferenceAssemblyPaths>non_empty_path_generated_by_unity.rider.package</_FullFrameworkReferenceAssemblyPaths>
<DisableHandlePackageFileConflicts>true</DisableHandlePackageFileConflicts>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.20506</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace></RootNamespace>
<ProjectGuid>{7e928f0f-5e26-3f03-8880-3b3a6c5ba8cf}</ProjectGuid>
<ProjectTypeGuids>{E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<AssemblyName>Unity.Cursor.Editor</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\Unity.Cursor.Editor\</OutputPath>
<DefineConstants>UNITY_2022_3_21;UNITY_2022_3;UNITY_2022;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;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_VIRTUALTEXTURING;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_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_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;UNITY_UGP_API;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_NVIDIA;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;PLATFORM_INITIALIZES_MEMORY_MANAGER_EXPLICITLY;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;DOTWEEN;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;UNITY_EDITOR_ONLY_COMPILATION</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169,0649</NoWarn>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<NoConfig>true</NoConfig>
<NoStdLib>true</NoStdLib>
<AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
<ImplicitlyExpandNETStandardFacades>false</ImplicitlyExpandNETStandardFacades>
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Analyzer Include="D:\2022.3.21f1c1\Editor\Data\Tools\Unity.SourceGenerators\Unity.SourceGenerators.dll" />
<Analyzer Include="D:\2022.3.21f1c1\Editor\Data\Tools\Unity.SourceGenerators\Unity.Properties.SourceGenerator.dll" />
</ItemGroup>
<ItemGroup>
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Testing\TestRunnerApiListener.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\TcpClient.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\ProjectGeneration\ProjectProperties.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\MessageType.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Solution.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\ProjectGeneration\ProjectGeneration.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\VisualStudioCursorInstallation.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\VersionPair.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\ProjectGeneration\ProjectGenerationFlag.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\Message.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\ProjectGeneration\SdkStyleProjectGeneration.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\UnityInstallation.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Testing\TestAdaptor.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\VisualStudioEditor.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\Serializer.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\ProjectGeneration\LegacyStyleProjectGeneration.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\UsageUtility.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\Deserializer.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\UdpSocket.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\ProcessRunner.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\MessageEventArgs.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\FileUtility.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\SolutionParser.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Testing\TestRunnerCallbacks.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Cli.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\ProjectGeneration\FileIOProvider.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\SimpleJSON.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\VisualStudioCodiumInstallation.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\Messenger.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\AssemblyInfo.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\SolutionProperties.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\ExceptionEventArgs.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Symbols.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Testing\TestResultAdaptor.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Discovery.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\SolutionProjectEntry.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Testing\TestStatusAdaptor.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Image.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\VisualStudioIntegration.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\Messaging\TcpListener.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\VisualStudioInstallation.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\KnownAssemblies.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\AsyncOperation.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\ProjectGeneration\AssemblyNameProvider.cs" />
<Compile Include="E:\com.unity.ide.cursor-master\Editor\ProjectGeneration\GUIDProvider.cs" />
<None Include="E:\com.unity.ide.cursor-master\Editor\com.unity.ide.visualstudio.asmdef" />
<Reference Include="UnityEngine">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AIModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ARModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ARModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AccessibilityModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AccessibilityModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AndroidJNIModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AndroidJNIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AnimationModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AnimationModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AssetBundleModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AssetBundleModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AudioModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ClothModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClothModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ClusterInputModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterInputModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ClusterRendererModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ClusterRendererModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ContentLoadModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ContentLoadModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CrashReportingModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.CrashReportingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.DSPGraphModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DSPGraphModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.DirectorModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.DirectorModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.GIModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.GameCenterModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GameCenterModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.GridModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.GridModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.HotReloadModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.HotReloadModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.IMGUIModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ImageConversionModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ImageConversionModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.InputModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.InputLegacyModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.InputLegacyModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.JSONSerializeModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.JSONSerializeModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.LocalizationModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.LocalizationModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.NVIDIAModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.NVIDIAModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ParticleSystemModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ParticleSystemModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PerformanceReportingModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PerformanceReportingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Physics2DModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.Physics2DModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ProfilerModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ProfilerModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PropertiesModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.PropertiesModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ScreenCaptureModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.ScreenCaptureModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SharedInternalsModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SharedInternalsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SpriteMaskModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteMaskModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SpriteShapeModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SpriteShapeModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.StreamingModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.StreamingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SubstanceModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubstanceModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SubsystemsModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.SubsystemsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TLSModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TLSModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TerrainModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TerrainPhysicsModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TerrainPhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextCoreFontEngineModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreFontEngineModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextCoreTextEngineModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextCoreTextEngineModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TilemapModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.TilemapModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIElementsModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UIElementsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UmbraModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UmbraModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityAnalyticsModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityAnalyticsCommonModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityAnalyticsCommonModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityConnectModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityConnectModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityCurlModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityCurlModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityTestProtocolModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityTestProtocolModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestAssetBundleModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestAudioModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestTextureModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestWWWModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VFXModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VFXModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VRModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VRModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VehiclesModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VehiclesModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VideoModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VideoModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VirtualTexturingModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.VirtualTexturingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.WindModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.WindModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.XRModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEngine.XRModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.CoreModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.DeviceSimulatorModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DeviceSimulatorModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.DiagnosticsModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.DiagnosticsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.EditorToolbarModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.EditorToolbarModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.GraphViewModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.GraphViewModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.PresetsUIModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.PresetsUIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.QuickSearchModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.QuickSearchModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.SceneTemplateModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneTemplateModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.SceneViewModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.SceneViewModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.TextCoreFontEngineModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreFontEngineModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.TextCoreTextEngineModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.TextCoreTextEngineModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.UIBuilderModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIBuilderModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.UIElementsModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.UIElementsSamplesModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UIElementsSamplesModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.UnityConnectModule">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEngine\UnityEditor.UnityConnectModule.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.Graphs">
<HintPath>D:\2022.3.21f1c1\Editor\Data\Managed\UnityEditor.Graphs.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.WindowsStandalone.Extensions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport\UnityEditor.WindowsStandalone.Extensions.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>E:\Unity Projects\GitLab\2024\UnityFramework\Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>E:\Unity Projects\GitLab\2024\UnityFramework\Assets\Plugins\Newtonsoft\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="mscorlib">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\mscorlib.dll</HintPath>
</Reference>
<Reference Include="System">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.dll</HintPath>
</Reference>
<Reference Include="System.Core">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Core.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Runtime.Serialization.dll</HintPath>
</Reference>
<Reference Include="System.Xml">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Xml.Linq.dll</HintPath>
</Reference>
<Reference Include="System.Numerics">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.dll</HintPath>
</Reference>
<Reference Include="System.Numerics.Vectors">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Numerics.Vectors.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Net.Http.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Microsoft.CSharp.dll</HintPath>
</Reference>
<Reference Include="System.Data">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.dll</HintPath>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Data.DataSetExtensions.dll</HintPath>
</Reference>
<Reference Include="System.Drawing">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Drawing.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression.FileSystem">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.IO.Compression.FileSystem.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Composition">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.ComponentModel.Composition.dll</HintPath>
</Reference>
<Reference Include="System.Transactions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\System.Transactions.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Win32.Primitives">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\Microsoft.Win32.Primitives.dll</HintPath>
</Reference>
<Reference Include="netstandard">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\netstandard.dll</HintPath>
</Reference>
<Reference Include="System.AppContext">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.AppContext.dll</HintPath>
</Reference>
<Reference Include="System.Buffers">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Buffers.dll</HintPath>
</Reference>
<Reference Include="System.Collections.Concurrent">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Concurrent.dll</HintPath>
</Reference>
<Reference Include="System.Collections">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.dll</HintPath>
</Reference>
<Reference Include="System.Collections.NonGeneric">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.NonGeneric.dll</HintPath>
</Reference>
<Reference Include="System.Collections.Specialized">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Collections.Specialized.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Annotations">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Annotations.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.EventBasedAsync">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.EventBasedAsync.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Primitives">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.TypeConverter">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ComponentModel.TypeConverter.dll</HintPath>
</Reference>
<Reference Include="System.Console">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Console.dll</HintPath>
</Reference>
<Reference Include="System.Data.Common">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Data.Common.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Contracts">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Contracts.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Debug">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Debug.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.FileVersionInfo">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.FileVersionInfo.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Process">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Process.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.StackTrace">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.StackTrace.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.TextWriterTraceListener">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TextWriterTraceListener.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.Tools">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.Tools.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.TraceSource">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Diagnostics.TraceSource.dll</HintPath>
</Reference>
<Reference Include="System.Drawing.Primitives">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Drawing.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Dynamic.Runtime">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Dynamic.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Globalization.Calendars">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Calendars.dll</HintPath>
</Reference>
<Reference Include="System.Globalization">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.dll</HintPath>
</Reference>
<Reference Include="System.Globalization.Extensions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Globalization.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression.ZipFile">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Compression.ZipFile.dll</HintPath>
</Reference>
<Reference Include="System.IO">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.DriveInfo">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.DriveInfo.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.Primitives">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.Watcher">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.FileSystem.Watcher.dll</HintPath>
</Reference>
<Reference Include="System.IO.IsolatedStorage">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.IsolatedStorage.dll</HintPath>
</Reference>
<Reference Include="System.IO.MemoryMappedFiles">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.MemoryMappedFiles.dll</HintPath>
</Reference>
<Reference Include="System.IO.Pipes">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.Pipes.dll</HintPath>
</Reference>
<Reference Include="System.IO.UnmanagedMemoryStream">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.IO.UnmanagedMemoryStream.dll</HintPath>
</Reference>
<Reference Include="System.Linq">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.dll</HintPath>
</Reference>
<Reference Include="System.Linq.Expressions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Expressions.dll</HintPath>
</Reference>
<Reference Include="System.Linq.Parallel">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Parallel.dll</HintPath>
</Reference>
<Reference Include="System.Linq.Queryable">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Linq.Queryable.dll</HintPath>
</Reference>
<Reference Include="System.Memory">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Memory.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http.Rtc">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Http.Rtc.dll</HintPath>
</Reference>
<Reference Include="System.Net.NameResolution">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NameResolution.dll</HintPath>
</Reference>
<Reference Include="System.Net.NetworkInformation">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.NetworkInformation.dll</HintPath>
</Reference>
<Reference Include="System.Net.Ping">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Ping.dll</HintPath>
</Reference>
<Reference Include="System.Net.Primitives">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Net.Requests">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Requests.dll</HintPath>
</Reference>
<Reference Include="System.Net.Security">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Security.dll</HintPath>
</Reference>
<Reference Include="System.Net.Sockets">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.Sockets.dll</HintPath>
</Reference>
<Reference Include="System.Net.WebHeaderCollection">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebHeaderCollection.dll</HintPath>
</Reference>
<Reference Include="System.Net.WebSockets.Client">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.Client.dll</HintPath>
</Reference>
<Reference Include="System.Net.WebSockets">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Net.WebSockets.dll</HintPath>
</Reference>
<Reference Include="System.ObjectModel">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ObjectModel.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.DispatchProxy">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.DispatchProxy.dll</HintPath>
</Reference>
<Reference Include="System.Reflection">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Emit">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Emit.ILGeneration">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.ILGeneration.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Emit.Lightweight">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Emit.Lightweight.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Extensions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Primitives">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Reflection.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Resources.Reader">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Reader.dll</HintPath>
</Reference>
<Reference Include="System.Resources.ResourceManager">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.ResourceManager.dll</HintPath>
</Reference>
<Reference Include="System.Resources.Writer">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Resources.Writer.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.CompilerServices.VisualC">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.CompilerServices.VisualC.dll</HintPath>
</Reference>
<Reference Include="System.Runtime">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Extensions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Handles">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Handles.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.InteropServices">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.InteropServices.RuntimeInformation">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.InteropServices.WindowsRuntime">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.InteropServices.WindowsRuntime.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Numerics">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Numerics.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Formatters">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Formatters.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Json">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Json.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Primitives">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization.Xml">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Runtime.Serialization.Xml.dll</HintPath>
</Reference>
<Reference Include="System.Security.Claims">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Claims.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Algorithms">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Algorithms.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Csp">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Csp.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Encoding">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Encoding.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Primitives">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.X509Certificates">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Cryptography.X509Certificates.dll</HintPath>
</Reference>
<Reference Include="System.Security.Principal">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.Principal.dll</HintPath>
</Reference>
<Reference Include="System.Security.SecureString">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Security.SecureString.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.Duplex">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Duplex.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.Http">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Http.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.NetTcp">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.NetTcp.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.Primitives">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel.Security">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ServiceModel.Security.dll</HintPath>
</Reference>
<Reference Include="System.Text.Encoding">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.dll</HintPath>
</Reference>
<Reference Include="System.Text.Encoding.Extensions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.Encoding.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Text.RegularExpressions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Text.RegularExpressions.dll</HintPath>
</Reference>
<Reference Include="System.Threading">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Overlapped">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Overlapped.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks.Extensions">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks.Parallel">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Tasks.Parallel.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Thread">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Thread.dll</HintPath>
</Reference>
<Reference Include="System.Threading.ThreadPool">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.ThreadPool.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Timer">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Threading.Timer.dll</HintPath>
</Reference>
<Reference Include="System.ValueTuple">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.ValueTuple.dll</HintPath>
</Reference>
<Reference Include="System.Xml.ReaderWriter">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.ReaderWriter.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XDocument">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XDocument.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XmlDocument">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlDocument.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XmlSerializer">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XmlSerializer.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XPath">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XPath.XDocument">
<HintPath>D:\2022.3.21f1c1\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades\System.Xml.XPath.XDocument.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.UI">
<HintPath>E:\Unity Projects\GitLab\2024\UnityFramework\Library\ScriptAssemblies\UnityEditor.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>E:\Unity Projects\GitLab\2024\UnityFramework\Library\ScriptAssemblies\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEditor.TestRunner">
<HintPath>E:\Unity Projects\GitLab\2024\UnityFramework\Library\ScriptAssemblies\UnityEditor.TestRunner.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TestRunner">
<HintPath>E:\Unity Projects\GitLab\2024\UnityFramework\Library\ScriptAssemblies\UnityEngine.TestRunner.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@ -11,13 +11,15 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-firstpass",
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask", "UniTask.csproj", "{0161f271-68ba-49b9-86f1-3ac09e7b5d3f}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-Editor", "Assembly-CSharp-Editor.csproj", "{6a699b13-be90-c32c-6df2-b2a3b2fea5cf}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NaughtyAttributes.Test", "NaughtyAttributes.Test.csproj", "{e55587a8-55c5-9d75-4e05-354dc14a4b66}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NaughtyAttributes.Editor", "NaughtyAttributes.Editor.csproj", "{c1171338-fc44-8597-abbe-4a10022d6b1a}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MotionFramework", "MotionFramework.csproj", "{9f77dfa9-fe9d-3e23-faf3-880ccc3dd218}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Cursor.Editor", "Unity.Cursor.Editor.csproj", "{7e928f0f-5e26-3f03-8880-3b3a6c5ba8cf}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-Editor", "Assembly-CSharp-Editor.csproj", "{6a699b13-be90-c32c-6df2-b2a3b2fea5cf}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MotionFramework", "MotionFramework.csproj", "{9f77dfa9-fe9d-3e23-faf3-880ccc3dd218}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.Addressables", "UniTask.Addressables.csproj", "{35058e9b-48eb-7180-d011-f89b0c3012d7}"
EndProject
@ -42,14 +44,16 @@ Global
{55cf3394-1287-0bd1-463f-422c23db3787}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0161f271-68ba-49b9-86f1-3ac09e7b5d3f}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0161f271-68ba-49b9-86f1-3ac09e7b5d3f}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6a699b13-be90-c32c-6df2-b2a3b2fea5cf}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6a699b13-be90-c32c-6df2-b2a3b2fea5cf}.Debug|Any CPU.Build.0 = Debug|Any CPU
{e55587a8-55c5-9d75-4e05-354dc14a4b66}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{e55587a8-55c5-9d75-4e05-354dc14a4b66}.Debug|Any CPU.Build.0 = Debug|Any CPU
{c1171338-fc44-8597-abbe-4a10022d6b1a}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{c1171338-fc44-8597-abbe-4a10022d6b1a}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7e928f0f-5e26-3f03-8880-3b3a6c5ba8cf}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7e928f0f-5e26-3f03-8880-3b3a6c5ba8cf}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9f77dfa9-fe9d-3e23-faf3-880ccc3dd218}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9f77dfa9-fe9d-3e23-faf3-880ccc3dd218}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6a699b13-be90-c32c-6df2-b2a3b2fea5cf}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6a699b13-be90-c32c-6df2-b2a3b2fea5cf}.Debug|Any CPU.Build.0 = Debug|Any CPU
{35058e9b-48eb-7180-d011-f89b0c3012d7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{35058e9b-48eb-7180-d011-f89b0c3012d7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0ca94816-c4b2-bedf-d39e-c15276dc040c}.Debug|Any CPU.ActiveCfg = Debug|Any CPU