View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0002921 | NoesisGUI | Unity | public | 2023-12-06 13:04 | 2024-06-03 19:55 |
| Reporter | nadjibus | Assigned To | sfernandez | ||
| Priority | normal | Severity | crash | ||
| Status | resolved | Resolution | fixed | ||
| Product Version | 3.2.2 | ||||
| Target Version | 3.2.4 | Fixed in Version | 3.2.4 | ||
| Summary | 0002921: Unity Editor Crash during Domain Reload | ||||
| Description | Unity Editor crashes during domain reload, does not happen always, but it's quite common (2-3 times / day). Full log and dump attached. Unity log: =================================================================
| ||||
| Attached Files | |||||
| Platform | Any | ||||
| related to | 0002612 | resolved | sfernandez | Crash reloading assembly with xaml containing bindings |
|
Check https://www.noesisengine.com/bugs/view.php?id=3136#c9272 for a sample project + steps to reproduce. |
|
|
Thanks a lot for the repro project, I'll let you know what I can find. |
|
|
This crash seems to be resolved with something we fixed for 3.2.3. EventsShutdownReset.patch (9,143 bytes)
Index: Core/Events.cs
===================================================================
--- Core/Events.cs (revision 13486)
+++ Core/Events.cs (working copy)
@@ -429,20 +429,14 @@
}
_elements.Clear();
- DependencyObject._Destroyed.Clear();
- Clock._Completed.Clear();
- CommandBinding._PreviewCanExecute.Clear();
- CommandBinding._PreviewExecuted.Clear();
- CommandBinding._CanExecute.Clear();
- CommandBinding._Executed.Clear();
- ItemContainerGenerator._ItemsChanged.Clear();
- ItemContainerGenerator._StatusChanged.Clear();
- Popup._Closed.Clear();
- Popup._Opened.Clear();
- Timeline._Completed.Clear();
- VisualStateGroup._CurrentStateChanging.Clear();
- VisualStateGroup._CurrentStateChanged.Clear();
- View._Rendering.Clear();
+ DependencyObject.ResetEvents();
+ Clock.ResetEvents();
+ CommandBinding.ResetEvents();
+ ItemContainerGenerator.ResetEvents();
+ Popup.ResetEvents();
+ Timeline.ResetEvents();
+ VisualStateGroup.ResetEvents();
+ View.ResetEvents();
}
private static void OnElementDestroyed(IntPtr d)
Index: Core/View.cs
===================================================================
--- Core/View.cs (revision 13486)
+++ Core/View.cs (working copy)
@@ -435,7 +435,17 @@
}
}
- internal static Dictionary<long, RenderingEventHandler> _Rendering =
+ internal static void ResetEvents()
+ {
+ foreach (var kv in _Rendering)
+ {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ Noesis_View_UnbindRenderingEvent(new HandleRef(null, cPtr), _raiseRendering);
+ }
+ _Rendering.Clear();
+ }
+
+ private static Dictionary<long, RenderingEventHandler> _Rendering =
new Dictionary<long, RenderingEventHandler>();
#endregion
Index: Proxies/Clock.cs
===================================================================
--- Proxies/Clock.cs (revision 13486)
+++ Proxies/Clock.cs (working copy)
@@ -84,7 +84,15 @@
}
}
- internal static Dictionary<long, CompletedHandler> _Completed =
+ internal static void ResetEvents() {
+ foreach (var kv in _Completed) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_Clock_Completed(_raiseCompleted, cPtr);
+ }
+ _Completed.Clear();
+ }
+
+ private static Dictionary<long, CompletedHandler> _Completed =
new Dictionary<long, CompletedHandler>();
#endregion
Index: Proxies/CommandBinding.cs
===================================================================
--- Proxies/CommandBinding.cs (revision 13486)
+++ Proxies/CommandBinding.cs (working copy)
@@ -83,7 +83,7 @@
}
}
- internal static Dictionary<long, PreviewCanExecuteHandler> _PreviewCanExecute =
+ private static Dictionary<long, PreviewCanExecuteHandler> _PreviewCanExecute =
new Dictionary<long, PreviewCanExecuteHandler>();
#endregion
@@ -139,7 +139,7 @@
}
}
- internal static Dictionary<long, CanExecuteHandler> _CanExecute =
+ private static Dictionary<long, CanExecuteHandler> _CanExecute =
new Dictionary<long, CanExecuteHandler>();
#endregion
@@ -195,7 +195,7 @@
}
}
- internal static Dictionary<long, PreviewExecutedHandler> _PreviewExecuted =
+ private static Dictionary<long, PreviewExecutedHandler> _PreviewExecuted =
new Dictionary<long, PreviewExecutedHandler>();
#endregion
@@ -251,10 +251,36 @@
}
}
- internal static Dictionary<long, ExecutedHandler> _Executed =
+ private static Dictionary<long, ExecutedHandler> _Executed =
new Dictionary<long, ExecutedHandler>();
#endregion
+ internal static void ResetEvents() {
+ foreach (var kv in _PreviewCanExecute) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_CommandBinding_PreviewCanExecute(_raisePreviewCanExecute, cPtr);
+ }
+ _PreviewCanExecute.Clear();
+
+ foreach (var kv in _CanExecute) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_CommandBinding_CanExecute(_raiseCanExecute, cPtr);
+ }
+ _CanExecute.Clear();
+
+ foreach (var kv in _PreviewExecuted) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_CommandBinding_PreviewExecuted(_raisePreviewExecuted, cPtr);
+ }
+ _PreviewExecuted.Clear();
+
+ foreach (var kv in _Executed) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_CommandBinding_Executed(_raiseExecuted, cPtr);
+ }
+ _Executed.Clear();
+ }
+
#endregion
public ICommand Command {
Index: Proxies/DependencyObjectExtend.cs
===================================================================
--- Proxies/DependencyObjectExtend.cs (revision 13486)
+++ Proxies/DependencyObjectExtend.cs (working copy)
@@ -970,7 +970,17 @@
}
}
- internal static Dictionary<long, DestroyedHandler> _Destroyed =
+ internal static void ResetEvents()
+ {
+ foreach (var kv in _Destroyed)
+ {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ Noesis_Dependency_Destroyed_Unbind(_raiseDestroyed, new HandleRef(null, cPtr));
+ }
+ _Destroyed.Clear();
+ }
+
+ private static Dictionary<long, DestroyedHandler> _Destroyed =
new Dictionary<long, DestroyedHandler>();
#endregion
Index: Proxies/ItemContainerGenerator.cs
===================================================================
--- Proxies/ItemContainerGenerator.cs (revision 13486)
+++ Proxies/ItemContainerGenerator.cs (working copy)
@@ -140,10 +140,24 @@
}
}
- internal static Dictionary<long, StatusChangedHandler> _StatusChanged =
+ private static Dictionary<long, StatusChangedHandler> _StatusChanged =
new Dictionary<long, StatusChangedHandler>();
#endregion
+ internal static void ResetEvents() {
+ foreach (var kv in _ItemsChanged) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_ItemContainerGenerator_ItemsChanged(_raiseItemsChanged, cPtr);
+ }
+ _ItemsChanged.Clear();
+
+ foreach (var kv in _StatusChanged) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_ItemContainerGenerator_StatusChanged(_raiseStatusChanged, cPtr);
+ }
+ _StatusChanged.Clear();
+ }
+
#endregion
ItemContainerGenerator IItemContainerGenerator.GetItemContainerGeneratorForPanel(Panel panel) {
Index: Proxies/Popup.cs
===================================================================
--- Proxies/Popup.cs (revision 13486)
+++ Proxies/Popup.cs (working copy)
@@ -141,6 +141,20 @@
new Dictionary<long, OpenedHandler>();
#endregion
+ internal static new void ResetEvents() {
+ foreach (var kv in _Closed) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_Popup_Closed(_raiseClosed, cPtr);
+ }
+ _Closed.Clear();
+
+ foreach (var kv in _Opened) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_Popup_Opened(_raiseOpened, cPtr);
+ }
+ _Opened.Clear();
+ }
+
#endregion
public Popup() {
Index: Proxies/Timeline.cs
===================================================================
--- Proxies/Timeline.cs (revision 13486)
+++ Proxies/Timeline.cs (working copy)
@@ -88,6 +88,14 @@
new Dictionary<long, CompletedHandler>();
#endregion
+ internal static new void ResetEvents() {
+ foreach (var kv in _Completed) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_Timeline_Completed(_raiseCompleted, cPtr);
+ }
+ _Completed.Clear();
+ }
+
#endregion
public static int GetDesiredFrameRate(DependencyObject timeline) {
Index: Proxies/VisualStateGroup.cs
===================================================================
--- Proxies/VisualStateGroup.cs (revision 13486)
+++ Proxies/VisualStateGroup.cs (working copy)
@@ -141,6 +141,20 @@
new Dictionary<long, CurrentStateChangedHandler>();
#endregion
+ internal static new void ResetEvents() {
+ foreach (var kv in _CurrentStateChanging) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_VisualStateGroup_CurrentStateChanging(_raiseCurrentStateChanging, cPtr);
+ }
+ _CurrentStateChanging.Clear();
+
+ foreach (var kv in _CurrentStateChanged) {
+ IntPtr cPtr = new IntPtr(kv.Key);
+ NoesisGUI_PINVOKE.UnbindEvent_VisualStateGroup_CurrentStateChanged(_raiseCurrentStateChanged, cPtr);
+ }
+ _CurrentStateChanged.Clear();
+ }
+
#endregion
public VisualStateGroup() {
|
|
|
I applied the patch but unfortunately the crash still happens. As I stated in the reproduction steps, it does not happen at the first run, but a the 2nd (Play -> Stop -> Play -> Edit MainView.xaml -> Crash). |
|
|
Yes, that is what I did. Is it crashing for you in the sample project, or in your complete project? |
|
|
Yes, it's crashing in the sample project. Here's a screen recording: https://drive.google.com/file/d/17OUACfOXbKvguECqwD4NQrWpA-gL5g_s/view?usp=drive_link Did you manage to reproduce the crash without the patch? |
|
|
Yes, without the patch it crashed, and I'm doing exactly the same as you showed in the video. |
|
|
OK Editor-2.log (77,541 bytes)
[Licensing::Module] Trying to connect to existing licensing client channel...
[Licensing::IpcConnector] Successfully connected to the License Client on channel: "LicenseClient-nadji" at "2024-03-08T15:48:52.9250722Z"
[Licensing::Client] Handshaking with LicensingClient:
Version: 1.14.0+57f231c
Session Id: 9dfa53eb73604ff780e51f842e584aa0
Correlation Id: b9245d3784ffcdf953bf0c128ab8fa9b
External correlation Id: 251746403863851959
Machine Id: bJcnxetZ0glsnX/FP5M8POMSMuc=
[Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-nadji" (connect: 0.00s, validation: 0.01s, handshake: 1.46s)
[Licensing::IpcConnector] Successfully connected to the License Notification on channel: "LicenseClient-nadji-notifications" at "2024-03-08T15:48:54.4000747Z"
[Licensing::Client] Successfully updated the access token
[Licensing::Module] Successfully updated the access token CF60H_Gz_m...
[Licensing::Client] Successfully updated license
Built from '2022.3/release' branch; Version is '2022.3.12f1 (4fe6e059c7ef) revision 5236448'; Using compiler version '192829333'; Build Type 'Release'
OS: 'Windows 10 (10.0.19045) 64bit Professional' Language: 'en' Physical Memory: 16307 MB
[Licensing::Client] Successfully resolved entitlements
[Licensing::Module] Serial number assigned to: "F4-6ZBF-JUZD-S8KZ-5W8H-XXXX"
BatchMode: 0, IsHumanControllingUs: 1, StartBugReporterOnCrash: 1, Is64bit: 1, IsPro: 0
COMMAND LINE ARGUMENTS:
C:/Program Files/Unity 2022.3.12f1/Editor/Unity.exe
-projectpath
C:\Repos\NoesisCrashTest
-useHub
-hubIPC
-cloudEnvironment
production
-licensingIpc
LicenseClient-nadji
-hubSessionId
68e0beb5-ec62-4e66-bb7d-d144c85d0d46
-accessToken
CF60H_Gz_mM81pV85FeaU9o1RSO_rD8bBcKyN5-uI0U00af
Successfully changed project path to: C:\Repos\NoesisCrashTest
C:/Repos/NoesisCrashTest
[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 [4084] Host "[IP] 172.23.128.1 [Port] 55496 [Flags] 2 [Guid] 1359513466 [EditorId] 1359513466 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-AOBOQNG) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
Player connection [4084] Host "[IP] 172.23.128.1 [Port] 55496 [Flags] 2 [Guid] 1359513466 [EditorId] 1359513466 [Version] 1048832 [Id] WindowsEditor(7,DESKTOP-AOBOQNG) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
[Physics::Module] Initialized MultithreadedJobDispatcher with 7 workers.
[Package Manager] UpmClient::Connect -- Connected to IPC stream "Upm-14016" after 0.8 seconds.
[Licensing::Client] Successfully resolved entitlements
[Package Manager] Restoring resolved packages state from cache
[Licensing::Client] Successfully resolved entitlement details
[Package Manager] Registered 50 packages:
Packages from [https://packages.unity.com]:
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
Built-in packages:
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
[email protected] (location: C:\Repos\NoesisCrashTest\Library\PackageCache\[email protected])
Local packages:
com.noesis.noesisgui@file:C:\Repos\NoesisCrashTest\Noesis (location: C:\Repos\NoesisCrashTest\Noesis)
Git packages:
com.cysharp.unitask@https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask (location: C:\Repos\NoesisCrashTest\Library\PackageCache\com.cysharp.unitask@809d23edae)
[Subsystems] No new subsystems found in resolved package list.
Package Manager log level set to [2]
[Package Manager] Done registering packages in 0.16 seconds
Refreshing native plugins compatible for Editor in 21.66 ms, found 4 plugins.
Preloading 1 native plugins for Editor in 1.93 ms.
Initialize engine version: 2022.3.12f1 (4fe6e059c7ef)
[Subsystems] Discovering subsystems at path C:/Program Files/Unity 2022.3.12f1/Editor/Data/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path C:/Repos/NoesisCrashTest/Assets
GfxDevice: creating device client; threaded=1; jobified=0
Direct3D:
Version: Direct3D 11.0 [level 11.1]
Renderer: NVIDIA GeForce GTX 950 (ID=0x1402)
Vendor: NVIDIA
VRAM: 2002 MB
Driver: 31.0.15.3623
[Licensing::Client] Successfully resolved entitlements
Initialize mono
Mono path[0] = 'C:/Program Files/Unity 2022.3.12f1/Editor/Data/Managed'
Mono path[1] = 'C:/Program Files/Unity 2022.3.12f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
Mono config path = 'C:/Program Files/Unity 2022.3.12f1/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56016
Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts
Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts
ImportWorker Server TCP listen port: 0
Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ...
Register platform support module: C:/Program Files/Unity 2022.3.12f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.011254 seconds.
- Loaded All Assemblies, in 0.533 seconds
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.457 seconds
Domain Reload Profiling: 988ms
BeginReloadAssembly (167ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (2ms)
RebuildCommonClasses (52ms)
RebuildNativeTypeToScriptingClass (16ms)
initialDomainReloadingComplete (94ms)
LoadAllAssembliesAndSetupDomain (201ms)
LoadAssemblies (162ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (199ms)
TypeCache.Refresh (196ms)
TypeCache.ScanAssembly (179ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (1ms)
FinalizeReload (458ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (364ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (11ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (4ms)
ProcessInitializeOnLoadAttributes (238ms)
ProcessInitializeOnLoadMethodAttributes (98ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (0ms)
[Licensing::Client] Successfully resolved entitlements
Application.AssetDatabase Initial Refresh Start
info: Microsoft.Hosting.Lifetime[14]
Now listening on: http://localhost:80
info: Microsoft.Hosting.Lifetime[0]
Application started. Press Ctrl+C to shut down.
info: Microsoft.Hosting.Lifetime[0]
Hosting environment: Production
info: Microsoft.Hosting.Lifetime[0]
Content root path: C:\Repos\NoesisCrashTest\
info: Microsoft.AspNetCore.Hosting.Diagnostics[1]
Request starting HTTP/2 POST http://ilpp/UnityILPP.PostProcessing/Ping application/grpc -
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
Executing endpoint 'gRPC - /UnityILPP.PostProcessing/Ping'
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
Executed endpoint 'gRPC - /UnityILPP.PostProcessing/Ping'
info: Microsoft.AspNetCore.Hosting.Diagnostics[2]
Request finished HTTP/2 POST http://ilpp/UnityILPP.PostProcessing/Ping application/grpc - - 200 - application/grpc 75.1691ms
Starting: C:\Program Files\Unity 2022.3.12f1\Editor\Data\bee_backend.exe --dont-print-to-structured-log --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies
WorkingDir: C:/Repos/NoesisCrashTest
ExitCode: 0 Duration: 0s290ms
*** Tundra build success (0.24 seconds), 0 items updated, 446 evaluated
AssetDatabase: script compilation time: 1.095526s
Begin MonoManager ReloadAssembly
Total cache size 243854561
Total cache size after purge 243854561
- Loaded All Assemblies, in 1.137 seconds
Refreshing native plugins compatible for Editor in 11.02 ms, found 4 plugins.
Preloading 1 native plugins for Editor in 0.12 ms.
Refreshing native plugins compatible for Editor in 11.38 ms, found 4 plugins.
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 1.951 seconds
Domain Reload Profiling: 3082ms
BeginReloadAssembly (263ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (10ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (36ms)
RebuildCommonClasses (66ms)
RebuildNativeTypeToScriptingClass (17ms)
initialDomainReloadingComplete (53ms)
LoadAllAssembliesAndSetupDomain (731ms)
LoadAssemblies (525ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (367ms)
TypeCache.Refresh (326ms)
TypeCache.ScanAssembly (306ms)
ScanForSourceGeneratedMonoScriptInfo (29ms)
ResolveRequiredComponents (10ms)
FinalizeReload (1952ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (1690ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (11ms)
SetLoadedEditorAssemblies (9ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (112ms)
ProcessInitializeOnLoadAttributes (1493ms)
ProcessInitializeOnLoadMethodAttributes (52ms)
AfterProcessingInitializeOnLoad (13ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (8ms)
Asset Pipeline Refresh (id=d5cf41d227f5d67418d0c5ff80c416c4): Total: 6.372 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport)
Summary:
Imports: total=0 (actual=0, local cache=0, cache server=0)
Asset DB Process Time: managed=0 ms, native=1976 ms
Asset DB Callback time: managed=17 ms, native=1 ms
Scripting: domain reloads=1, domain reload time=3209 ms, compile time=1096 ms, other=70 ms
Project Asset Count: scripts=5433, non-scripts=859
Asset File Changes: new=0, changed=0, moved=0, deleted=0
Scan Filter Count: 0
InvokeBeforeRefreshCallbacks: 1.612ms
ApplyChangesToAssetFolders: 0.080ms
Scan: 74.341ms
OnSourceAssetsModified: 0.006ms
GetAllGuidsForCategorization: 1.475ms
CategorizeAssets: 196.060ms
ImportOutOfDateAssets: 2035.144ms (895.886ms without children)
CompileScripts: 1095.687ms
ReloadNativeAssets: 0.001ms
UnloadImportedAssets: 38.590ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 2.930ms
InitializingProgressBar: 0.012ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms
OnDemandSchedulerStart: 2.038ms
PostProcessAllAssets: 17.797ms
GatherAllCurrentPrimaryArtifactRevisions: 0.001ms
UnloadStreamsBegin: 0.445ms
PersistCurrentRevisions: 0.376ms
UnloadStreamsEnd: 0.092ms
GenerateScriptTypeHashes: 1.718ms
Untracked: 4044.417ms
Application.AssetDatabase Initial Refresh End
Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds
Scanning for USB devices : 12.297ms
Initializing Unity extensions:
[Licensing::Client] Successfully resolved entitlements
[MODES] ModeService[none].Initialize
[MODES] ModeService[none].LoadModes
[MODES] Loading mode Default (0) for mode-current-id-NoesisCrashTest
Unloading 21 Unused Serialized files (Serialized files now loaded: 0)
ProgressiveSceneManager::Cancel()
Loaded scene 'Assets/Scenes/SampleScene.unity'
Deserialize: 14.230 ms
Integration: 7.744 ms
Integration of assets: 2.099 ms
Thread Wait Time: 0.218 ms
Total Operation Time: 24.291 ms
Unloading 87 unused Assets / (481.5 KB). Loaded Objects now: 5167.
Memory consumption went from 144.2 MB to 143.8 MB.
Total: 6.644700 ms (FindLiveObjects: 0.502400 ms CreateObjectMapping: 0.259400 ms MarkObjects: 5.361400 ms DeleteObjects: 0.517600 ms)
[LAYOUT] About to load UserSettings\Layouts\default-2022.dwlt, keepMainWindow=False
<RI> Initialized touch support.
<RI> Initialized touch support.
<RI> Initialized touch support.
<RI> Initialized touch support.
<RI> Initialized touch support.
<RI> Initialized touch support.
[MODES] ModeService[default].InitializeCurrentMode
[MODES] ModeService[default].RaiseModeChanged(default, default)
IsTimeToCheckForNewEditor: Update time 1709916246 current 1709912948
<RI> Initializing input.
New input system (experimental) initialized
Using Windows.Gaming.Input
<RI> Input initialized.
[Project] Loading completed in 15.409 seconds
Project init time: 9.739 seconds
Template init time: 0.000 seconds
Package Manager init time: 0.795 seconds
Asset Database init time: 0.314 seconds
Global illumination init time: 0.005 seconds
Assemblies load time: 1.007 seconds
Unity extensions init time: 0.006 seconds
Asset Database refresh time: 0.000 seconds
Scene opening time: 1.132 seconds
##utp:{"type":"ProjectInfo","version":2,"phase":"Immediate","time":1709912948308,"processId":14016,"projectLoad":15.4088305,"projectInit":9.738569,"templateInit":0.0,"packageManagerInit":0.7952509,"assetDatabaseInit":0.3144995,"globalIlluminationInit":0.0048321,"assembliesLoad":1.0067646,"unityExtensionsInit":0.0055535,"assetDatabaseRefresh":0.0,"sceneOpening":1.1322986}
##utp:{"type":"EditorInfo","version":2,"phase":"Immediate","time":1709912948308,"processId":14016,"editorVersion":"2022.3.12f1 (4fe6e059c7ef)","branch":"2022.3/release","buildType":"Release","platform":"Windows"}
Asset Pipeline Refresh (id=101c6474d8110464ab6cb2f6af7b44db): Total: 0.042 seconds - Initiated by RefreshV2(AllowForceSynchronousImport)
Created GICache directory at C:/Users/nadji/AppData/LocalLow/Unity/Caches/GiCache. Took: 0.045s, timestamps: [16.473 - 16.518]
gi::BakeBackendSwitch: switching bake backend from 3 to 1.
Setting up 4 worker threads for Enlighten.
[00:00:02] Builtin Sky manager started.
[00:00:02] Finished 1 Bake Ambient Probe job (0.00s execute, 0.00s integrate, 0.12s wallclock)
[Licensing::Client] Successfully updated the access token
[Licensing::Module] Successfully updated access token: "CF60H_Gz"... (expires: 2025-03-08 15:49:10 GMT)
<RI> Initialized touch support.
TrimDiskCacheJob: Current cache size 348mb
Scanning for USB devices : 13.787ms
Scanning for USB devices : 13.860ms
Asset Pipeline Refresh (id=4ff2bbb7b45ba0048b4ed04c0c8d1062): Total: 0.065 seconds - Initiated by RefreshV2(AllowForceSynchronousImport)
Asset Pipeline Refresh (id=c929362b2f0922f4e826f87d192ae121): Total: 0.011 seconds - Initiated by RefreshV2(AllowForceSynchronousImport)
Asset Pipeline Refresh (id=edd2c444eb7d0444da7a53520a91383d): Total: 0.008 seconds - Initiated by RefreshV2(AllowForceSynchronousImport)
Scanning for USB devices : 12.025ms
Asset Pipeline Refresh (id=c17323d6666b34d49b7d8f61b98a2c99): Total: 0.011 seconds - Initiated by RefreshV2(AllowForceSynchronousImport)
Asset Pipeline Refresh (id=d5099c10f14e88c43990473160d72397): Total: 0.012 seconds - Initiated by RefreshV2(AllowForceSynchronousImport)
Asset Pipeline Refresh (id=d921af4e98e47e8479bdea43a2c4bdd9): Total: 0.009 seconds - Initiated by RefreshV2(AllowForceSynchronousImport)
Asset Pipeline Refresh (id=6f4a9a1177389e14eb2bf6923d625a58): Total: 0.011 seconds - Initiated by RefreshV2(AllowForceSynchronousImport)
Reloading assemblies for play mode.
Reloading assemblies after forced synchronous recompile.
[Licensing::Client] Successfully resolved entitlements
Begin MonoManager ReloadAssembly
- Loaded All Assemblies, in 0.927 seconds
Refreshing native plugins compatible for Editor in 15.66 ms, found 4 plugins.
Native extension for WindowsStandalone target not found
[Licensing::Client] Successfully resolved entitlement details
[MODES] ModeService[none].Initialize
[MODES] ModeService[none].LoadModes
[MODES] Loading mode Default (0) for mode-current-id-NoesisCrashTest
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 3.477 seconds
Domain Reload Profiling: 4401ms
BeginReloadAssembly (647ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (73ms)
BackupInstance (0ms)
ReleaseScriptingObjects (1ms)
CreateAndSetChildDomain (297ms)
RebuildCommonClasses (67ms)
RebuildNativeTypeToScriptingClass (22ms)
initialDomainReloadingComplete (61ms)
LoadAllAssembliesAndSetupDomain (125ms)
LoadAssemblies (268ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (30ms)
TypeCache.Refresh (12ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (15ms)
FinalizeReload (3478ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (1788ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (11ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (132ms)
ProcessInitializeOnLoadAttributes (1533ms)
ProcessInitializeOnLoadMethodAttributes (75ms)
AfterProcessingInitializeOnLoad (23ms)
EditorAssembliesLoaded (1ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (1038ms)
Asset Pipeline Refresh (id=488c3954263897448ad30f6d4d66ec3e): Total: 4.997 seconds - Initiated by StopAssetImportingV2(ForceSynchronousImport | ForceDomainReload)
Summary:
Imports: total=0 (actual=0, local cache=0, cache server=0)
Asset DB Process Time: managed=0 ms, native=447 ms
Asset DB Callback time: managed=32 ms, native=1 ms
Scripting: domain reloads=1, domain reload time=4515 ms, compile time=0 ms, other=0 ms
Project Asset Count: scripts=5433, non-scripts=859
Asset File Changes: new=0, changed=0, moved=0, deleted=0
Scan Filter Count: 0
InvokeBeforeRefreshCallbacks: 1.445ms
ApplyChangesToAssetFolders: 0.074ms
Scan: 0.004ms
OnSourceAssetsModified: 0.004ms
GetAllGuidsForCategorization: 2.657ms
CategorizeAssets: 84.855ms
ImportOutOfDateAssets: 3552.155ms (3543.530ms without children)
CompileScripts: 0.023ms
CollectScriptTypesHashes: 0.139ms
ReloadNativeAssets: 0.312ms
UnloadImportedAssets: 1.589ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 3.752ms
InitializingProgressBar: 0.003ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.003ms
OnDemandSchedulerStart: 2.805ms
PostProcessAllAssets: 32.767ms
GatherAllCurrentPrimaryArtifactRevisions: 0.494ms
UnloadStreamsBegin: 0.059ms
PersistCurrentRevisions: 0.280ms
UnloadStreamsEnd: 0.143ms
GenerateScriptTypeHashes: 1.234ms
Untracked: 1321.914ms
[Caliburn] [Information] Initializing...
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Initialize () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:348)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Awake () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:289)
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 348)
[Caliburn] [Information] Configuring type mappings
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Initialize () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:360)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Awake () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:289)
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 360)
[Caliburn] [Information] Resolving window manager
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Initialize () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:365)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Awake () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:289)
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 365)
[Caliburn] [Information] Initialization complete
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Initialize () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:388)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Awake () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:289)
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 388)
Loaded scene 'Temp/__Backupscenes/0.backup'
Deserialize: 1.717 ms
Integration: 998.167 ms
Integration of assets: 0.004 ms
Thread Wait Time: 0.030 ms
Total Operation Time: 999.918 ms
[Caliburn] [Information] Starting...
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:431)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 431)
[Caliburn] [Information] Registering data templates
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:442)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 442)
[Caliburn] [Warning] Creating placeholder data template for TechBro.UI.ViewModels.ChildViewModel
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:LogWarning (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:99)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogWarning (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.DataTemplateManager:CreateTemplate (System.Type,System.Type) (at Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs:158)
Caliburn.DataTemplateManager:RegisterDataTemplate (System.Type,System.Type,Noesis.ResourceDictionary,System.Action`1<Noesis.DataTemplate>) (at Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs:37)
Caliburn.DataTemplateManager/<>c__DisplayClass3_0:<RegisterDataTemplates>b__1 (System.ValueTuple`2<System.Type, System.Type>) (at Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs:67)
Caliburn.Extensions.EnumerableExtensions:ForEach<System.ValueTuple`2<System.Type, System.Type>> (System.Collections.Generic.IEnumerable`1<System.ValueTuple`2<System.Type, System.Type>>,System.Action`1<System.ValueTuple`2<System.Type, System.Type>>) (at Assets/Plugins/Caliburn/Extensions/EnumerableExtensions.cs:18)
Caliburn.DataTemplateManager:RegisterDataTemplates (Caliburn.ViewLocator,Noesis.ResourceDictionary,System.Action`1<Noesis.DataTemplate>) (at Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs:64)
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:444)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs Line: 158)
[Caliburn] [Information] Showing main content: TechBro.UI.ViewModels.MainViewModel
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:465)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 465)
[Caliburn] [Information] Start complete
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:474)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 474)
[Licensing::Client] Successfully resolved entitlement details
[Caliburn] [Information] Shutting down...
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<ShutdownAsync>d__25<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:130)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:ShutdownAsync ()
Caliburn.BootstrapperBase`2/<OnDestroy>d__33<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:310)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<OnDestroy>d__33<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<OnDestroy>d__33<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:OnDestroy ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 130)
[Caliburn] [Information] Shutdown complete
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<ShutdownAsync>d__25<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:146)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:ShutdownAsync ()
Caliburn.BootstrapperBase`2/<OnDestroy>d__33<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:310)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<OnDestroy>d__33<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<OnDestroy>d__33<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:OnDestroy ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 146)
Unloading 8 Unused Serialized files (Serialized files now loaded: 0)
Loaded scene 'Temp/__Backupscenes/0.backup'
Deserialize: 2.123 ms
Integration: 19.235 ms
Integration of assets: 0.005 ms
Thread Wait Time: 0.019 ms
Total Operation Time: 21.382 ms
Unloading 69 unused Assets / (270.8 KB). Loaded Objects now: 6082.
Memory consumption went from 165.2 MB to 165.0 MB.
Total: 24.546700 ms (FindLiveObjects: 1.275700 ms CreateObjectMapping: 0.660000 ms MarkObjects: 22.266300 ms DeleteObjects: 0.341800 ms)
[Licensing::Client] Successfully resolved entitlements
<RI> Initialized touch support.
Reloading assemblies for play mode.
Reloading assemblies after forced synchronous recompile.
Begin MonoManager ReloadAssembly
- Loaded All Assemblies, in 0.912 seconds
Refreshing native plugins compatible for Editor in 12.75 ms, found 4 plugins.
Native extension for WindowsStandalone target not found
[MODES] ModeService[none].Initialize
[MODES] ModeService[none].LoadModes
[MODES] Loading mode Default (0) for mode-current-id-NoesisCrashTest
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 3.153 seconds
Domain Reload Profiling: 4063ms
BeginReloadAssembly (617ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (58ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (282ms)
RebuildCommonClasses (76ms)
RebuildNativeTypeToScriptingClass (22ms)
initialDomainReloadingComplete (70ms)
LoadAllAssembliesAndSetupDomain (124ms)
LoadAssemblies (273ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (31ms)
TypeCache.Refresh (12ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (15ms)
FinalizeReload (3154ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (1573ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms)
SetLoadedEditorAssemblies (8ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (132ms)
ProcessInitializeOnLoadAttributes (1318ms)
ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (20ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (947ms)
Asset Pipeline Refresh (id=38e56cf8db78b8041a294fba003d5e31): Total: 4.603 seconds - Initiated by StopAssetImportingV2(ForceSynchronousImport | ForceDomainReload)
Summary:
Imports: total=0 (actual=0, local cache=0, cache server=0)
Asset DB Process Time: managed=0 ms, native=423 ms
Asset DB Callback time: managed=23 ms, native=1 ms
Scripting: domain reloads=1, domain reload time=4154 ms, compile time=0 ms, other=0 ms
Project Asset Count: scripts=5433, non-scripts=859
Asset File Changes: new=0, changed=0, moved=0, deleted=0
Scan Filter Count: 0
InvokeBeforeRefreshCallbacks: 1.376ms
ApplyChangesToAssetFolders: 0.073ms
Scan: 0.004ms
OnSourceAssetsModified: 0.002ms
GetAllGuidsForCategorization: 2.126ms
CategorizeAssets: 65.103ms
ImportOutOfDateAssets: 3220.471ms (3213.028ms without children)
CompileScripts: 0.052ms
CollectScriptTypesHashes: 0.027ms
ReloadNativeAssets: 0.143ms
UnloadImportedAssets: 1.262ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 3.230ms
InitializingProgressBar: 0.001ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms
OnDemandSchedulerStart: 2.728ms
PostProcessAllAssets: 23.820ms
GatherAllCurrentPrimaryArtifactRevisions: 0.453ms
UnloadStreamsBegin: 0.081ms
PersistCurrentRevisions: 0.341ms
UnloadStreamsEnd: 0.091ms
GenerateScriptTypeHashes: 0.662ms
Untracked: 1289.478ms
[Caliburn] [Information] Initializing...
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Initialize () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:348)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Awake () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:289)
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 348)
[Caliburn] [Information] Configuring type mappings
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Initialize () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:360)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Awake () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:289)
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 360)
[Caliburn] [Information] Resolving window manager
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Initialize () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:365)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Awake () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:289)
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 365)
[Caliburn] [Information] Initialization complete
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Initialize () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:388)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Awake () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:289)
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 388)
Loaded scene 'Temp/__Backupscenes/0.backup'
Deserialize: 1.396 ms
Integration: 933.220 ms
Integration of assets: 0.012 ms
Thread Wait Time: 0.040 ms
Total Operation Time: 934.668 ms
[Caliburn] [Information] Starting...
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:431)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 431)
[Caliburn] [Information] Registering data templates
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:442)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 442)
[Caliburn] [Warning] Creating placeholder data template for TechBro.UI.ViewModels.ChildViewModel
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:LogWarning (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:99)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogWarning (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.DataTemplateManager:CreateTemplate (System.Type,System.Type) (at Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs:158)
Caliburn.DataTemplateManager:RegisterDataTemplate (System.Type,System.Type,Noesis.ResourceDictionary,System.Action`1<Noesis.DataTemplate>) (at Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs:37)
Caliburn.DataTemplateManager/<>c__DisplayClass3_0:<RegisterDataTemplates>b__1 (System.ValueTuple`2<System.Type, System.Type>) (at Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs:67)
Caliburn.Extensions.EnumerableExtensions:ForEach<System.ValueTuple`2<System.Type, System.Type>> (System.Collections.Generic.IEnumerable`1<System.ValueTuple`2<System.Type, System.Type>>,System.Action`1<System.ValueTuple`2<System.Type, System.Type>>) (at Assets/Plugins/Caliburn/Extensions/EnumerableExtensions.cs:18)
Caliburn.DataTemplateManager:RegisterDataTemplates (Caliburn.ViewLocator,Noesis.ResourceDictionary,System.Action`1<Noesis.DataTemplate>) (at Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs:64)
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:444)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/DataTemplateManager.cs Line: 158)
[Caliburn] [Information] Showing main content: TechBro.UI.ViewModels.MainViewModel
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:465)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 465)
[Caliburn] [Information] Start complete
UnityEngine.StackTraceUtility:ExtractStackTrace ()
UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
UnityEngine.Logger:Log (UnityEngine.LogType,object,UnityEngine.Object)
UnityEngine.Debug:Log (object,UnityEngine.Object)
Caliburn.DebugLogger:Log<Microsoft.Extensions.Logging.FormattedLogValues> (Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.FormattedLogValues,System.Exception,System.Func`3<Microsoft.Extensions.Logging.FormattedLogValues, System.Exception, string>) (at Assets/Plugins/Caliburn/Platform/DebugLogger.cs:95)
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:Log (Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,string,object[])
Microsoft.Extensions.Logging.LoggerExtensions:LogInformation (Microsoft.Extensions.Logging.ILogger,string,object[])
Caliburn.BootstrapperBase`2/<StartAsync>d__40<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:474)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:StartAsync ()
Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:MoveNext () (at Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs:294)
Cysharp.Threading.Tasks.CompilerServices.AsyncUniTaskVoidMethodBuilder:Start<Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>> (Caliburn.BootstrapperBase`2/<Start>d__32<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>&) (at ./Library/PackageCache/com.cysharp.unitask@809d23edae/Runtime/CompilerServices/AsyncUniTaskVoidMethodBuilder.cs:110)
Caliburn.BootstrapperBase`2<TechBro.UI.ShellView, TechBro.UI.ViewModels.MainViewModel>:Start ()
(Filename: Assets/Plugins/Caliburn/Platform/BootstrapperBase.cs Line: 474)
Start importing Assets/Scripts/UI/Views/MainView.xaml using Guid(268729c4f3cfd58428ee38e118bbd17f) Importer(-1,00000000000000000000000000000000) -> (artifact id: 'f722f3ba4dd1ad6b246fa5b60aeff19e') in 0.047357 seconds
Start importing Assets/Scripts/UI/Views/ShellView.xaml using Guid(6614620127bf43743b85b412c04660ef) Importer(-1,00000000000000000000000000000000) -> (artifact id: '7427cdb80ceb111a20ae0ae096dad5c6') in 0.129461 seconds
Refreshing native plugins compatible for Editor in 25.91 ms, found 4 plugins.
Preloading 1 native plugins for Editor in 0.16 ms.
Asset Pipeline Refresh (id=88aa106c3ff16174fbab113dad06a7dd): Total: 0.443 seconds - Initiated by RefreshV2(NoUpdateAssetOptions)
Summary:
Imports: total=2 (actual=2, local cache=0, cache server=0)
Asset DB Process Time: managed=7 ms, native=343 ms
Asset DB Callback time: managed=54 ms, native=38 ms
Scripting: domain reloads=0, domain reload time=0 ms, compile time=0 ms, other=0 ms
Project Asset Count: scripts=5433, non-scripts=859
Asset File Changes: new=0, changed=1, moved=0, deleted=0
Scan Filter Count: 0
InvokeBeforeRefreshCallbacks: 0.003ms
ApplyChangesToAssetFolders: 0.140ms
Scan: 6.290ms
OnSourceAssetsModified: 3.101ms
GetAllGuidsForCategorization: 1.575ms
CategorizeAssets: 14.302ms
ImportOutOfDateAssets: 282.098ms (-1.244ms without children)
ImportManagerImport: 273.166ms (94.956ms without children)
ImportInProcess: 177.935ms
UpdateCategorizedAssets: 0.275ms
ReloadNativeAssets: 0.020ms
UnloadImportedAssets: 0.293ms
ReloadImportedAssets: 2.536ms
EnsureUptoDateAssetsAreRegisteredWithGuidPM: 2.469ms
InitializingProgressBar: 0.022ms
PostProcessAllAssetNotificationsAddChangedAssets: 0.004ms
OnDemandSchedulerStart: 4.832ms
PostProcessAllAssets: 57.300ms
Hotreload: 32.003ms
GatherAllCurrentPrimaryArtifactRevisions: 0.860ms
UnloadStreamsBegin: 0.313ms
PersistCurrentRevisions: 0.865ms
UnloadStreamsEnd: 0.181ms
Untracked: 44.041ms
=================================================================
Native Crash Reporting
=================================================================
Got a UNKNOWN while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
=================================================================
Managed Stacktrace:
=================================================================
at <unknown> <0xffffffff>
at Noesis.XamlProvider:Noesis_RaiseXamlChanged <0x000be>
at Noesis.XamlProvider:RaiseXamlChanged <0x0008a>
at NoesisXamlProvider:ReloadXaml <0x0009a>
at NoesisPostprocessor:ReloadXaml <0x00072>
at <>c__DisplayClass1_0:<OnPostprocessAllAssets>b__0 <0x001aa>
at UnityEditor.EditorApplication:Internal_CallUpdateFunctions <0x000df>
at System.Object:runtime_invoke_void <0x00084>
=================================================================
Received signal SIGSEGV
Obtained 35 stack frames
0x00007fffa49f4088 (Noesis) BindingOperations_SetBinding
0x00007fffa49f008e (Noesis) BindingOperations_GetBindingExpression
0x00007fffa4ccb8be (Noesis) Noesis_RenderDevice_BeginOnscreenRender
0x00007fffa4a00f57 (Noesis) BindingExpressionBase_UpdateSource
0x00007fffa496981a (Noesis) String_GetStaticType
0x00007fffa49f180c (Noesis) BindingOperations_SetBinding
0x00007fffa49ea099 (Noesis) Color_GetStaticType
0x00007fffa49ef3e4 (Noesis) BindingOperations_GetBindingExpression
0x00007fffa4ad9764 (Noesis) Boxed_Point_GetStaticType
0x00007fffa4ae3b74 (Noesis) DataObjectEventArgs_IsDragDrop_get
0x00007fffa4ae3a2b (Noesis) DataObjectEventArgs_IsDragDrop_get
0x00007fffa4ad439a (Noesis) Boxed_Point_GetStaticType
0x00007fffa4ad392f (Noesis) Boxed_Point_GetStaticType
0x00007fffa4b6bbc4 (Noesis) Noesis_RaiseTextureChanged
0x000001664e2e4bdf (Mono JIT Code) (wrapper managed-to-native) Noesis.XamlProvider:Noesis_RaiseXamlChanged (System.Runtime.InteropServices.HandleRef,string)
0x000001664e2e4acb (Mono JIT Code) Noesis.XamlProvider:RaiseXamlChanged (System.Uri) (at ./Noesis/Runtime/API/Proxies/XamlProvider.cs:60)
0x000001664e2e49eb (Mono JIT Code) NoesisXamlProvider:ReloadXaml (string) (at ./Noesis/Runtime/NoesisProviders.cs:124)
0x000001664e2e48f3 (Mono JIT Code) NoesisPostprocessor:ReloadXaml (string) (at ./Noesis/Editor/NoesisPostprocessor.cs:79)
0x000001664e2e454b (Mono JIT Code) NoesisPostprocessor/<>c__DisplayClass1_0:<OnPostprocessAllAssets>b__0 () (at ./Noesis/Editor/NoesisPostprocessor.cs:46)
0x000001664d097740 (Mono JIT Code) UnityEditor.EditorApplication:Internal_CallUpdateFunctions ()
0x000001664d0bb0d5 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)
0x00007fff9fa04b6e (mono-2.0-bdwgc) mono_jit_runtime_invoke (at C:/build/output/Unity-Technologies/mono/mono/mini/mini-runtime.c:3445)
0x00007fff9f93d204 (mono-2.0-bdwgc) do_runtime_invoke (at C:/build/output/Unity-Technologies/mono/mono/metadata/object.c:3066)
0x00007fff9f93d37c (mono-2.0-bdwgc) mono_runtime_invoke (at C:/build/output/Unity-Technologies/mono/mono/metadata/object.c:3113)
0x00007ff682031494 (Unity) scripting_method_invoke
0x00007ff68200f544 (Unity) ScriptingInvocation::Invoke
0x00007ff68200a185 (Unity) ScriptingInvocation::Invoke<void>
0x00007ff682159d6b (Unity) Scripting::UnityEditor::EditorApplicationProxy::Internal_CallUpdateFunctions
0x00007ff682b6128a (Unity) SceneTracker::Update
0x00007ff682c84109 (Unity) Application::TickTimer
0x00007ff6830fd26a (Unity) MainMessageLoop
0x00007ff683102ad0 (Unity) WinMain
0x00007ff6844e61be (Unity) __scrt_common_main_seh
0x00007ff8014a7344 (KERNEL32) BaseThreadInitThunk
0x00007ff802ae26b1 (ntdll) RtlUserThreadStart
|
|
|
Just to let you know, I don't know if this changes anything, I applied the patch provided in https://www.noesisengine.com/bugs/view.php?id=3136 I'm updating to Noesis 3.2.3 and let you know if it sill happens. |
|
|
I can confirm that the crash does not happen in v3.2.3. But unfortunately we cannot update since crash 0003136 happens in v3.2.3, unless you provide a patched version including the fix for it. |
|
|
I generated a patched 3.2.3 library for issue 3136: https://drive.google.com/file/d/1awpvV059eVlotvAejQaIsGlt-7VBcph_/view?usp=sharing |
|
|
can we close this? |
|
|
I will test and let you know if we can close this issue and 0002612 |
|
|
Tested with the patched DLL and everything seems to work and no crashes so far! I think you can close the issue and I really wanted to thank you guys for the quick fix I really appreciate it. |
|
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2023-12-06 13:04 | nadjibus | New Issue | |
| 2023-12-06 13:04 | nadjibus | File Added: crash.dmp | |
| 2023-12-06 13:04 | nadjibus | File Added: Editor.log | |
| 2023-12-07 10:20 | jsantos | Assigned To | => sfernandez |
| 2023-12-07 10:20 | jsantos | Status | new => assigned |
| 2023-12-07 10:20 | jsantos | Target Version | => 3.2.3 |
| 2023-12-07 10:21 | jsantos | Relationship added | related to 0002612 |
| 2024-01-22 11:47 | sfernandez | Target Version | 3.2.3 => 3.2.4 |
| 2024-03-05 18:05 | nadjibus | Note Added: 0009273 | |
| 2024-03-05 18:44 | sfernandez | Note Added: 0009276 | |
| 2024-03-08 11:56 | sfernandez | Note Added: 0009299 | |
| 2024-03-08 11:56 | sfernandez | File Added: EventsShutdownReset.patch | |
| 2024-03-08 11:56 | sfernandez | Status | assigned => feedback |
| 2024-03-08 12:49 | nadjibus | Note Added: 0009302 | |
| 2024-03-08 12:49 | nadjibus | Status | feedback => assigned |
| 2024-03-08 16:00 | sfernandez | Status | assigned => feedback |
| 2024-03-08 16:00 | sfernandez | Note Added: 0009303 | |
| 2024-03-08 17:02 | nadjibus | Note Added: 0009304 | |
| 2024-03-08 17:02 | nadjibus | Status | feedback => assigned |
| 2024-03-08 17:41 | sfernandez | Status | assigned => feedback |
| 2024-03-08 17:41 | sfernandez | Note Added: 0009306 | |
| 2024-03-08 19:05 | nadjibus | Note Added: 0009307 | |
| 2024-03-08 19:05 | nadjibus | File Added: crash-2.dmp | |
| 2024-03-08 19:05 | nadjibus | File Added: Editor-2.log | |
| 2024-03-08 19:05 | nadjibus | Status | feedback => assigned |
| 2024-03-08 20:32 | nadjibus | Note Added: 0009308 | |
| 2024-03-08 20:35 | nadjibus | Note Edited: 0009308 | |
| 2024-03-08 20:43 | nadjibus | Note Added: 0009309 | |
| 2024-03-11 11:15 | sfernandez | Status | assigned => feedback |
| 2024-03-11 11:15 | sfernandez | Note Added: 0009310 | |
| 2024-03-12 12:21 | jsantos | Note Added: 0009315 | |
| 2024-03-12 19:30 | nadjibus | Note Added: 0009317 | |
| 2024-03-12 19:30 | nadjibus | Status | feedback => assigned |
| 2024-03-12 20:28 | nadjibus | Note Added: 0009318 | |
| 2024-06-03 19:55 | sfernandez | Status | assigned => resolved |
| 2024-06-03 19:55 | sfernandez | Resolution | open => fixed |
| 2024-06-03 19:55 | sfernandez | Fixed in Version | => 3.2.4 |
| 2025-10-10 13:29 | jsantos | Category | Unity3D => Unity |