From 89c9dee90814529f8e477d090fd5c8c04ec21a26 Mon Sep 17 00:00:00 2001 From: GitHub Date: Tue, 31 Mar 2026 03:55:26 +0000 Subject: [PATCH 1/4] chore: update src/sentry-dotnet to 6.3.0 --- CHANGELOG.md | 3 +++ src/sentry-dotnet | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d0450ef3..6088f6c8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,9 @@ - Bump CLI from v3.3.3 to v3.3.4 ([#2604](https://github.com/getsentry/sentry-unity/pull/2604)) - [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#334) - [diff](https://github.com/getsentry/sentry-cli/compare/3.3.3...3.3.4) +- Bump .NET SDK from v6.2.0 to v6.3.0 ([#2615](https://github.com/getsentry/sentry-unity/pull/2615)) + - [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#630) + - [diff](https://github.com/getsentry/sentry-dotnet/compare/6.2.0...6.3.0) ## 4.1.2 diff --git a/src/sentry-dotnet b/src/sentry-dotnet index 248f45541..4a79de0a4 160000 --- a/src/sentry-dotnet +++ b/src/sentry-dotnet @@ -1 +1 @@ -Subproject commit 248f45541c5e23e7fe425cdeb98c187389de0aa8 +Subproject commit 4a79de0a4b5f8e0677e14d7c994f1c42cfad7acd From 4b4433aabf6fcb3d117786c8155ba97e30f70146 Mon Sep 17 00:00:00 2001 From: bitsandfoxes Date: Tue, 31 Mar 2026 12:21:16 +0200 Subject: [PATCH 2/4] fixed bump --- .../AndroidJavaScopeObserver.cs | 4 + .../NativeScopeObserver.cs | 4 + src/Sentry.Unity.iOS/NativeScopeObserver.cs | 4 + src/Sentry.Unity/ScopeObserver.cs | 16 + .../ScriptableSentryUnityOptions.cs | 2 +- src/Sentry.Unity/SentrySdk.Dotnet.cs | 32 +- test/IntegrationTest/XBOX_LOG_RETRIEVAL.md | 68 + xbox.log | 9390 +++++++++++++++++ 8 files changed, 9492 insertions(+), 28 deletions(-) create mode 100644 test/IntegrationTest/XBOX_LOG_RETRIEVAL.md create mode 100644 xbox.log diff --git a/src/Sentry.Unity.Android/AndroidJavaScopeObserver.cs b/src/Sentry.Unity.Android/AndroidJavaScopeObserver.cs index 55e51705f..fb037b172 100644 --- a/src/Sentry.Unity.Android/AndroidJavaScopeObserver.cs +++ b/src/Sentry.Unity.Android/AndroidJavaScopeObserver.cs @@ -36,4 +36,8 @@ public override void UnsetUserImpl() => public override void SetTraceImpl(SentryId traceId, SpanId spanId) => _sentryJava.SetTrace(traceId, spanId); + + public override void AddAttachmentImpl(SentryAttachment attachment) { } + + public override void ClearAttachmentsImpl() { } } diff --git a/src/Sentry.Unity.Native/NativeScopeObserver.cs b/src/Sentry.Unity.Native/NativeScopeObserver.cs index bebeae55c..8b1a443de 100644 --- a/src/Sentry.Unity.Native/NativeScopeObserver.cs +++ b/src/Sentry.Unity.Native/NativeScopeObserver.cs @@ -43,6 +43,10 @@ public override void SetUserImpl(SentryUser user) public override void SetTraceImpl(SentryId traceId, SpanId spanId) => C.sentry_set_trace(traceId.ToString(), spanId.ToString()); + public override void AddAttachmentImpl(SentryAttachment attachment) { } + + public override void ClearAttachmentsImpl() { } + private static string GetTimestamp(DateTimeOffset timestamp) => // "o": Using ISO 8601 to make sure the timestamp makes it to the bridge correctly. // https://docs.microsoft.com/en-gb/dotnet/standard/base-types/standard-date-and-time-format-strings#Roundtrip diff --git a/src/Sentry.Unity.iOS/NativeScopeObserver.cs b/src/Sentry.Unity.iOS/NativeScopeObserver.cs index 8c8637eb4..00014bc1e 100644 --- a/src/Sentry.Unity.iOS/NativeScopeObserver.cs +++ b/src/Sentry.Unity.iOS/NativeScopeObserver.cs @@ -34,6 +34,10 @@ internal static string GetTimestamp(DateTimeOffset timestamp) => // https://docs.microsoft.com/en-gb/dotnet/standard/base-types/standard-date-and-time-format-strings#Roundtrip timestamp.ToString("o"); + public override void AddAttachmentImpl(SentryAttachment attachment) { } + + public override void ClearAttachmentsImpl() { } + internal static int GetBreadcrumbLevel(BreadcrumbLevel breadcrumbLevel) => // https://github.com/getsentry/sentry-cocoa/blob/50f955aeb214601dd62b5dae7abdaddc8a1f24d9/Sources/Sentry/Public/SentryDefines.h#L99-L105 breadcrumbLevel switch diff --git a/src/Sentry.Unity/ScopeObserver.cs b/src/Sentry.Unity/ScopeObserver.cs index 556a83da4..d4f66c6cc 100644 --- a/src/Sentry.Unity/ScopeObserver.cs +++ b/src/Sentry.Unity/ScopeObserver.cs @@ -86,4 +86,20 @@ public void SetTrace(SentryId traceId, SpanId spanId) } public abstract void SetTraceImpl(SentryId traceId, SpanId spanId); + + public void AddAttachment(SentryAttachment attachment) + { + _options.LogDebug("{0} Scope Sync - Adding attachment", _name); + AddAttachmentImpl(attachment); + } + + public abstract void AddAttachmentImpl(SentryAttachment attachment); + + public void ClearAttachments() + { + _options.LogDebug("{0} Scope Sync - Clearing attachments", _name); + ClearAttachmentsImpl(); + } + + public abstract void ClearAttachmentsImpl(); } diff --git a/src/Sentry.Unity/ScriptableSentryUnityOptions.cs b/src/Sentry.Unity/ScriptableSentryUnityOptions.cs index 55f4ad6a1..87e93fbb4 100644 --- a/src/Sentry.Unity/ScriptableSentryUnityOptions.cs +++ b/src/Sentry.Unity/ScriptableSentryUnityOptions.cs @@ -228,7 +228,7 @@ internal SentryUnityOptions ToSentryUnityOptions( AddBreadcrumbsWithStructuredLogs = AddBreadcrumbsWithStructuredLogs }; - options.Experimental.EnableMetrics = EnableMetrics; + options.EnableMetrics = EnableMetrics; // By default, the cacheDirectoryPath gets set on known platforms. We're overwriting this behaviour here. if (!EnableOfflineCaching) diff --git a/src/Sentry.Unity/SentrySdk.Dotnet.cs b/src/Sentry.Unity/SentrySdk.Dotnet.cs index 2539aa3b2..5a0849a00 100644 --- a/src/Sentry.Unity/SentrySdk.Dotnet.cs +++ b/src/Sentry.Unity/SentrySdk.Dotnet.cs @@ -56,8 +56,7 @@ public static partial class SentrySdk /// /// /// Use this property to access structured logging functionality. Logs are only sent when - /// 's - /// is set to true. + /// is set to true. /// /// public static SentryStructuredLogger Logger { [DebuggerStepThrough] get => Sentry.SentrySdk.Logger; } @@ -548,32 +547,11 @@ public static void ResumeSession() public static void CauseCrash(CrashType crashType) => Sentry.SentrySdk.CauseCrash(crashType); /// - /// Sentry features that are currently in an experimental state. + /// Gets the metric emitter for emitting counters, gauges, and distributions connected to traces. /// - /// - /// Experimental features are subject to binary, source and behavioral breaking changes in future updates. - /// - public static ExperimentalSentrySdk Experimental { get; } = new(); - - /// - /// Sentry features that are currently in an experimental state. - /// - /// - /// Experimental features are subject to binary, source and behavioral breaking changes in future updates. - /// - public sealed class ExperimentalSentrySdk + public static SentryMetricEmitter Metrics { - internal ExperimentalSentrySdk() - { - } - - /// - /// Gets the metric emitter for emitting counters, gauges, and distributions connected to traces. - /// - public SentryMetricEmitter Metrics - { - [DebuggerStepThrough] - get => Sentry.SentrySdk.Experimental.Metrics; - } + [DebuggerStepThrough] + get => Sentry.SentrySdk.Metrics; } } diff --git a/test/IntegrationTest/XBOX_LOG_RETRIEVAL.md b/test/IntegrationTest/XBOX_LOG_RETRIEVAL.md new file mode 100644 index 000000000..ca22ed0af --- /dev/null +++ b/test/IntegrationTest/XBOX_LOG_RETRIEVAL.md @@ -0,0 +1,68 @@ +# Xbox Integration Test Log Retrieval — Status + +## Problem +Xbox master (non-development) builds suppress all `Debug.Log` output. The integration tests parse app output for `EVENT_CAPTURED:` lines, so they get nothing and fail. + +## What we built +- **`Logger.cs`** — Static helper that writes to both `Debug.Log` and an optional file via `StreamWriter` with `AutoFlush`. Throws on `Open()` failure (no silent swallowing). +- **`IntegrationTester.cs`** — All `Debug.Log` calls replaced with `Logger.Log`. On `UNITY_GAMECORE`, tries candidate paths in order: `D:\Logs\`, `persistentDataPath`, `temporaryCachePath`, `D:\` root. Writes a breadcrumb file (`D:\Logs\unity-integration-test-path.txt`) with the path that succeeded. On total failure, writes diagnostic info to `D:\unity-integration-test-diag.txt` before crashing. +- **`Integration.Tests.ps1`** — `Get-XboxLogOutput` function: checks for breadcrumb file first, then tries candidate xbcopy paths (D:\Logs first), then retrieves diagnostic/crash files and dumps directory listings. + +## What we learned from CI runs + +### Run 1 (single path, `persistentDataPath` only) +- App exited with code 1 — `Application.persistentDataPath` is not writable in packaged master builds. +- `xbdir.exe` doesn't exist in the GDK installation. + +### Run 2 (fallback path logic added) +- App exited with code 0 — one of the 4 candidate paths succeeded. +- `D:\DevelopmentFiles\\LocalState` and `AC\LocalState` don't exist (0x80070002). +- `D:\Logs` exists (xbcopy didn't error) but the log file wasn't in it — the app probably didn't write there. +- `T:\` has a 1.5GB locked file (pagefile?) — error 0x80070020. Our log file wasn't visible there either. +- `xbcopy.exe` not found when called directly — needs full path via `$env:GameDK`. +- **We don't know which candidate path the app actually used.** The breadcrumb file mechanism was added after this run. + +### Run 3 (breadcrumb + diagnostics + 4 candidates: persistentDataPath, temporaryCachePath, D:\Logs\, T:\) +- **message-capture exited with code 1** — all 4 candidate paths failed, app threw `IOException`. +- **exception-capture and crash-capture** ran without exit-code-1 warning but still produced no log file. +- `D:\FullException.dmp` (94KB) and `D:\FullExceptionLogFile.txt` (44 bytes) present on `D:\` — crash dump from our `IOException` throw. +- `D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\` — **does not exist** (0x80070002). No subdirectories exist either (LocalState, AC, TempState all 0x80070002). +- `D:\DevelopmentFiles\` — exists but is **completely empty** (0 files). +- `D:\Logs\` — exists and has 12 files from other apps (`SentryPlayground*.log`, `SentryTower.log`) but **no `unity-integration-test.log`**. This means even though `D:\Logs\` is the 3rd candidate, the app crashes before reaching it (the first two candidates fail in a way that either hard-crashes or throws). +- `T:\` — 1 file (1.5GB pagefile), locked (0x80070020). +- `S:\` — exists but empty. +- `D:\` root — has `FullException.dmp`, `FullExceptionLogFile.txt`, `latest_stderr.txt` (0 bytes), `latest_stdout.txt` (0 bytes), and an old Unreal dump. +- No breadcrumb file was found. +- **Conclusion**: The app crashes attempting to write to the first candidates. `D:\Logs\` was never tried because of the crash. The fix is to try `D:\Logs\` first (known writable path) and also add `D:\` root as a fallback. + +## Changes made after Run 3 +1. **Reordered C# candidates**: `D:\Logs\` first, then `persistentDataPath`, `temporaryCachePath`, then `D:\` root (removed `T:\` — pagefile only). +2. **Safe access to Unity paths**: Wrapped `Application.persistentDataPath`/`temporaryCachePath` in try-catch in case they throw. +3. **Diagnostic file on failure**: App writes `D:\unity-integration-test-diag.txt` with error details before crashing, so the PS harness can read it. +4. **PS-side improvements**: Reordered candidate dirs to match C# order. Added retrieval of `D:\unity-integration-test-diag.txt` and `D:\FullExceptionLogFile.txt` on failure. Removed `T:\` from candidates. + +## Next steps +1. **Push and run CI.** With `D:\Logs\` as the first candidate, the app should succeed in opening the log file there (other apps like SentryPlayground write there successfully). +2. **If `D:\Logs\` also fails for our app** (permission is per-app in master builds), the diagnostic file at `D:\unity-integration-test-diag.txt` will reveal the exact error for each candidate. +3. **If `D:\` root works but `D:\Logs\` doesn't**, we'll know from the diagnostic file and can switch the primary candidate. +4. **If nothing works**, we may need to switch to a development build subtarget or use the Windows Device Portal REST API. + +## Key files +- `test/Scripts.Integration.Test/Scripts/Logger.cs` — File-based logger +- `test/Scripts.Integration.Test/Scripts/IntegrationTester.cs` — Test app entry point +- `test/IntegrationTest/Integration.Tests.ps1` — Test harness (Get-XboxLogOutput, Invoke-XboxDirListing) +- `modules/app-runner/app-runner/Private/DeviceProviders/XboxProvider.ps1` — Xbox device provider (CopyDeviceItem uses xbcopy) + +## Key facts +- Package family name format: `IntegrationTest6000.3.8f1_8wekyb3d8bbwe` +- AUMID format: `IntegrationTest6000.3.8f1_8wekyb3d8bbwe!Game` +- GDK tools at: `C:\Program Files (x86)\Microsoft GDK\bin\` (resolved via `$env:GameDK`) +- `xbcopy` prefix `x` means Xbox device path (e.g., `xD:\Logs`) +- `xbcopy /mirror` copies directory contents, shows file count even on failure +- `xbdir.exe` does NOT exist in this GDK version +- Build is master subtarget (set in `Builder.cs` via `SetXboxSubtargetToMaster()`) +- `D:\DevelopmentFiles\\` does NOT exist for master builds (no sandbox storage) +- `D:\Logs\` is writable by other apps (SentryPlayground, SentryTower) — 12 log files present +- `D:\` root is writable (crash dumps land there: FullException.dmp, FullExceptionLogFile.txt) +- `T:\` only has a locked 1.5GB pagefile — not usable +- `S:\` exists but is empty diff --git a/xbox.log b/xbox.log new file mode 100644 index 000000000..9691f9064 --- /dev/null +++ b/xbox.log @@ -0,0 +1,9390 @@ +2026-03-27T13:57:13.9273088Z Current runner version: '2.333.0' +2026-03-27T13:57:13.9284494Z Runner name: 'win-consoles-vie-0' +2026-03-27T13:57:13.9285274Z Runner group name: 'team-gdx' +2026-03-27T13:57:13.9288425Z Machine name: 'GDX-T1' +2026-03-27T13:57:13.9294746Z ##[group]GITHUB_TOKEN Permissions +2026-03-27T13:57:13.9297712Z Actions: write +2026-03-27T13:57:13.9298255Z ArtifactMetadata: write +2026-03-27T13:57:13.9298888Z Attestations: write +2026-03-27T13:57:13.9299446Z Checks: write +2026-03-27T13:57:13.9299899Z Contents: write +2026-03-27T13:57:13.9300440Z Deployments: write +2026-03-27T13:57:13.9300898Z Discussions: write +2026-03-27T13:57:13.9301358Z Issues: write +2026-03-27T13:57:13.9301846Z Metadata: read +2026-03-27T13:57:13.9302269Z Models: read +2026-03-27T13:57:13.9302711Z Packages: write +2026-03-27T13:57:13.9303172Z Pages: write +2026-03-27T13:57:13.9303635Z PullRequests: write +2026-03-27T13:57:13.9304113Z RepositoryProjects: write +2026-03-27T13:57:13.9304650Z SecurityEvents: write +2026-03-27T13:57:13.9307092Z Statuses: write +2026-03-27T13:57:13.9307787Z ##[endgroup] +2026-03-27T13:57:13.9310560Z Secret source: Actions +2026-03-27T13:57:13.9311231Z Prepare workflow directory +2026-03-27T13:57:14.5450512Z Prepare all required actions +2026-03-27T13:57:14.5492238Z Getting action download info +2026-03-27T13:57:15.2234038Z Download action repository 'actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5) +2026-03-27T13:57:17.4613248Z Download action repository 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) +2026-03-27T13:57:20.5163572Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) +2026-03-27T13:57:25.8620404Z Complete job name: unity integration test +2026-03-27T13:57:26.8153292Z ##[group]Run actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 +2026-03-27T13:57:26.8154627Z with: +2026-03-27T13:57:26.8154848Z path: sentry-xbox +2026-03-27T13:57:26.8155475Z repository: getsentry/sentry-xbox +2026-03-27T13:57:26.8156013Z token: *** +2026-03-27T13:57:26.8156224Z ssh-strict: true +2026-03-27T13:57:26.8156450Z ssh-user: git +2026-03-27T13:57:26.8156776Z persist-credentials: true +2026-03-27T13:57:26.8157034Z clean: true +2026-03-27T13:57:26.8157283Z sparse-checkout-cone-mode: true +2026-03-27T13:57:26.8157559Z fetch-depth: 1 +2026-03-27T13:57:26.8157786Z fetch-tags: false +2026-03-27T13:57:26.8158366Z show-progress: true +2026-03-27T13:57:26.8158606Z lfs: false +2026-03-27T13:57:26.8158817Z submodules: false +2026-03-27T13:57:26.8159562Z set-safe-directory: true +2026-03-27T13:57:26.8160270Z env: +2026-03-27T13:57:26.8160650Z GH_TOKEN: *** +2026-03-27T13:57:26.8160875Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T13:57:26.8161239Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T13:57:26.8161591Z GDK_VERSION: 250400 +2026-03-27T13:57:26.8162041Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T13:57:26.8162746Z SENTRY_AUTH_TOKEN: *** +2026-03-27T13:57:26.8162984Z ##[endgroup] +2026-03-27T13:57:27.5870775Z Syncing repository: getsentry/sentry-xbox +2026-03-27T13:57:27.5872810Z ##[group]Getting Git version info +2026-03-27T13:57:27.5873358Z Working directory is 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-xbox' +2026-03-27T13:57:27.6422525Z [command]"C:\Program Files\Git\cmd\git.exe" version +2026-03-27T13:57:27.7679205Z git version 2.51.1.windows.1 +2026-03-27T13:57:27.7756902Z ##[endgroup] +2026-03-27T13:57:27.7919089Z Temporarily overriding HOME='C:\github_runners\vie_runner_0\_work\_temp\299581c2-640b-4401-89d6-f6e032e9c61c' before making global git config changes +2026-03-27T13:57:27.7920068Z Adding repository directory to the temporary git global config as a safe directory +2026-03-27T13:57:27.7921811Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-xbox +2026-03-27T13:57:27.9623963Z ##[group]Initializing the repository +2026-03-27T13:57:27.9634025Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-xbox +2026-03-27T13:57:28.9501591Z Initialized empty Git repository in C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-xbox/.git/ +2026-03-27T13:57:28.9573280Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/getsentry/sentry-xbox +2026-03-27T13:57:29.2322735Z ##[endgroup] +2026-03-27T13:57:29.2323138Z ##[group]Disabling automatic garbage collection +2026-03-27T13:57:29.2337873Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 +2026-03-27T13:57:29.3617662Z ##[endgroup] +2026-03-27T13:57:29.3618062Z ##[group]Setting up auth +2026-03-27T13:57:29.3828270Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand +2026-03-27T13:57:29.4996427Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" +2026-03-27T13:57:31.9792049Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2026-03-27T13:57:32.1825798Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" +2026-03-27T13:57:35.7719825Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir: +2026-03-27T13:57:35.9516927Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url" +2026-03-27T13:57:39.7010808Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" +2026-03-27T13:57:39.9337015Z ##[endgroup] +2026-03-27T13:57:39.9337911Z ##[group]Fetching the repository +2026-03-27T13:57:39.9338863Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +08a86477d158c8e10e0a84ab6f7da38218ea7332:refs/remotes/pull/111/merge +2026-03-27T13:57:45.2700951Z From https://github.com/getsentry/sentry-xbox +2026-03-27T13:57:45.2701603Z * [new ref] 08a86477d158c8e10e0a84ab6f7da38218ea7332 -> pull/111/merge +2026-03-27T13:57:45.4199897Z ##[endgroup] +2026-03-27T13:57:45.4362245Z ##[group]Determining the checkout info +2026-03-27T13:57:45.4395185Z ##[endgroup] +2026-03-27T13:57:45.4451727Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable +2026-03-27T13:57:45.6209841Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig +2026-03-27T13:57:45.8847876Z ##[group]Checking out the ref +2026-03-27T13:57:45.8848422Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force refs/remotes/pull/111/merge +2026-03-27T13:57:46.5236285Z Note: switching to 'refs/remotes/pull/111/merge'. +2026-03-27T13:57:46.5278995Z +2026-03-27T13:57:46.5340929Z You are in 'detached HEAD' state. You can look around, make experimental +2026-03-27T13:57:46.5441177Z changes and commit them, and you can discard any commits you make in this +2026-03-27T13:57:46.5441961Z state without impacting any branches by switching back to a branch. +2026-03-27T13:57:46.5547629Z +2026-03-27T13:57:46.5653322Z If you want to create a new branch to retain commits you create, you may +2026-03-27T13:57:46.5654321Z do so (now or later) by using -c with the switch command. Example: +2026-03-27T13:57:46.5917926Z +2026-03-27T13:57:46.5918146Z git switch -c +2026-03-27T13:57:46.6076551Z +2026-03-27T13:57:46.6076851Z Or undo this operation with: +2026-03-27T13:57:46.6153900Z +2026-03-27T13:57:46.6154048Z git switch - +2026-03-27T13:57:46.6154160Z +2026-03-27T13:57:46.6154367Z Turn off this advice by setting config variable advice.detachedHead to false +2026-03-27T13:57:46.6154670Z +2026-03-27T13:57:46.6154999Z HEAD is now at 08a8647 Merge 0cf644ed873e6b70b71101b87debb7098f74e726 into 7e7ea220393cbe1f9c0f55d11e3b8328bfb3b563 +2026-03-27T13:57:46.6156280Z ##[endgroup] +2026-03-27T13:57:46.7464518Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H +2026-03-27T13:57:46.9018226Z 08a86477d158c8e10e0a84ab6f7da38218ea7332 +2026-03-27T13:57:47.2673711Z ##[group]Run actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 +2026-03-27T13:57:47.2674231Z with: +2026-03-27T13:57:47.2674411Z repository: getsentry/sentry-unity +2026-03-27T13:57:47.2674655Z ref: feat/xbox-app-runner +2026-03-27T13:57:47.2674855Z path: sentry-unity +2026-03-27T13:57:47.2675244Z token: *** +2026-03-27T13:57:47.2675413Z ssh-strict: true +2026-03-27T13:57:47.2675572Z ssh-user: git +2026-03-27T13:57:47.2675758Z persist-credentials: true +2026-03-27T13:57:47.2675953Z clean: true +2026-03-27T13:57:47.2676125Z sparse-checkout-cone-mode: true +2026-03-27T13:57:47.2676346Z fetch-depth: 1 +2026-03-27T13:57:47.2676513Z fetch-tags: false +2026-03-27T13:57:47.2676685Z show-progress: true +2026-03-27T13:57:47.2676868Z lfs: false +2026-03-27T13:57:47.2677015Z submodules: false +2026-03-27T13:57:47.2678880Z set-safe-directory: true +2026-03-27T13:57:47.2679143Z env: +2026-03-27T13:57:47.2679493Z GH_TOKEN: *** +2026-03-27T13:57:47.2679740Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T13:57:47.2680046Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T13:57:47.2680388Z GDK_VERSION: 250400 +2026-03-27T13:57:47.2680832Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T13:57:47.2681574Z SENTRY_AUTH_TOKEN: *** +2026-03-27T13:57:47.2681784Z ##[endgroup] +2026-03-27T13:57:47.5531538Z Syncing repository: getsentry/sentry-unity +2026-03-27T13:57:47.5537549Z ##[group]Getting Git version info +2026-03-27T13:57:47.5543342Z Working directory is 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity' +2026-03-27T13:57:47.7241655Z [command]"C:\Program Files\Git\cmd\git.exe" version +2026-03-27T13:57:47.8893181Z git version 2.51.1.windows.1 +2026-03-27T13:57:47.9406795Z ##[endgroup] +2026-03-27T13:57:47.9880311Z Temporarily overriding HOME='C:\github_runners\vie_runner_0\_work\_temp\ff746659-8dfb-470f-8716-dfb061ab196e' before making global git config changes +2026-03-27T13:57:47.9997669Z Adding repository directory to the temporary git global config as a safe directory +2026-03-27T13:57:48.0140907Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity +2026-03-27T13:57:48.1828489Z ##[group]Initializing the repository +2026-03-27T13:57:48.1851524Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity +2026-03-27T13:57:48.3886595Z Initialized empty Git repository in C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/.git/ +2026-03-27T13:57:48.4343459Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/getsentry/sentry-unity +2026-03-27T13:57:48.6771663Z ##[endgroup] +2026-03-27T13:57:48.6962000Z ##[group]Disabling automatic garbage collection +2026-03-27T13:57:48.7186157Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 +2026-03-27T13:57:48.8888206Z ##[endgroup] +2026-03-27T13:57:48.8890397Z ##[group]Setting up auth +2026-03-27T13:57:48.8916443Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand +2026-03-27T13:57:49.1120346Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" +2026-03-27T13:57:52.9206212Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2026-03-27T13:57:53.0631691Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" +2026-03-27T13:57:56.4062359Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir: +2026-03-27T13:57:56.6212639Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url" +2026-03-27T13:58:00.2678652Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" +2026-03-27T13:58:00.4378843Z ##[endgroup] +2026-03-27T13:58:00.4449795Z ##[group]Fetching the repository +2026-03-27T13:58:00.4507420Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/feat/xbox-app-runner*:refs/remotes/origin/feat/xbox-app-runner* +refs/tags/feat/xbox-app-runner*:refs/tags/feat/xbox-app-runner* +2026-03-27T13:58:01.7902199Z From https://github.com/getsentry/sentry-unity +2026-03-27T13:58:01.8050805Z * [new branch] feat/xbox-app-runner -> origin/feat/xbox-app-runner +2026-03-27T13:58:02.1436059Z ##[endgroup] +2026-03-27T13:58:02.1476210Z ##[group]Determining the checkout info +2026-03-27T13:58:02.1570670Z [command]"C:\Program Files\Git\cmd\git.exe" branch --list --remote origin/feat/xbox-app-runner +2026-03-27T13:58:02.3076741Z origin/feat/xbox-app-runner +2026-03-27T13:58:02.3459490Z ##[endgroup] +2026-03-27T13:58:02.3491033Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable +2026-03-27T13:58:02.5672105Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig +2026-03-27T13:58:02.7716201Z ##[group]Checking out the ref +2026-03-27T13:58:02.7819768Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force -B feat/xbox-app-runner refs/remotes/origin/feat/xbox-app-runner +2026-03-27T13:58:03.9099856Z Updating files: 74% (385/518) +2026-03-27T13:58:03.9218271Z Updating files: 75% (389/518) +2026-03-27T13:58:03.9426160Z Updating files: 76% (394/518) +2026-03-27T13:58:03.9731010Z Updating files: 77% (399/518) +2026-03-27T13:58:03.9844809Z Updating files: 78% (405/518) +2026-03-27T13:58:04.0128978Z Updating files: 79% (410/518) +2026-03-27T13:58:04.0185267Z Updating files: 80% (415/518) +2026-03-27T13:58:04.0299035Z Updating files: 81% (420/518) +2026-03-27T13:58:04.0613463Z Updating files: 82% (425/518) +2026-03-27T13:58:04.0803188Z Updating files: 83% (430/518) +2026-03-27T13:58:04.1079608Z Updating files: 84% (436/518) +2026-03-27T13:58:04.1189478Z Updating files: 85% (441/518) +2026-03-27T13:58:04.1330261Z Updating files: 86% (446/518) +2026-03-27T13:58:04.1399543Z Updating files: 87% (451/518) +2026-03-27T13:58:04.1508907Z Updating files: 88% (456/518) +2026-03-27T13:58:04.1672099Z Updating files: 89% (462/518) +2026-03-27T13:58:04.1734675Z Updating files: 90% (467/518) +2026-03-27T13:58:04.1809554Z Updating files: 91% (472/518) +2026-03-27T13:58:04.1901130Z Updating files: 92% (477/518) +2026-03-27T13:58:04.2070151Z Updating files: 93% (482/518) +2026-03-27T13:58:04.2202059Z Updating files: 94% (487/518) +2026-03-27T13:58:04.2247973Z Updating files: 95% (493/518) +2026-03-27T13:58:04.2374688Z Updating files: 96% (498/518) +2026-03-27T13:58:04.2650826Z Updating files: 97% (503/518) +2026-03-27T13:58:04.2802941Z Updating files: 98% (508/518) +2026-03-27T13:58:04.3065717Z Updating files: 99% (513/518) +2026-03-27T13:58:04.3235677Z Updating files: 100% (518/518) +2026-03-27T13:58:04.3671558Z Updating files: 100% (518/518), done. +2026-03-27T13:58:04.4804479Z branch 'feat/xbox-app-runner' set up to track 'origin/feat/xbox-app-runner'. +2026-03-27T13:58:04.5453341Z Switched to a new branch 'feat/xbox-app-runner' +2026-03-27T13:58:04.6214618Z ##[endgroup] +2026-03-27T13:58:04.8711551Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H +2026-03-27T13:58:05.0318086Z a75bf9d1a6776c64909630f73aef98f3b62222aa +2026-03-27T13:58:05.3293409Z ##[group]Run git submodule update --init modules/app-runner +2026-03-27T13:58:05.3294109Z git submodule update --init modules/app-runner +2026-03-27T13:58:05.3504822Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" +2026-03-27T13:58:05.3505168Z env: +2026-03-27T13:58:05.3505698Z GH_TOKEN: *** +2026-03-27T13:58:05.3505880Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T13:58:05.3506184Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T13:58:05.3506516Z GDK_VERSION: 250400 +2026-03-27T13:58:05.3506952Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T13:58:05.3507705Z SENTRY_AUTH_TOKEN: *** +2026-03-27T13:58:05.3507905Z ##[endgroup] +2026-03-27T13:58:10.0321547Z Submodule 'modules/app-runner' (https://github.com/getsentry/app-runner.git) registered for path 'modules/app-runner' +2026-03-27T13:58:12.0145078Z Cloning into 'C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/modules/app-runner'... +2026-03-27T13:58:12.8051870Z Submodule path 'modules/app-runner': checked out '63d8c36b34580b6b2bdac3311594d07e937773b8' +2026-03-27T13:58:13.8391914Z ##[group]Run actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 +2026-03-27T13:58:13.8392438Z with: +2026-03-27T13:58:13.8392596Z name: scarlett-unity +2026-03-27T13:58:13.8392798Z path: sentry-native-xbox-unity +2026-03-27T13:58:13.8393019Z merge-multiple: false +2026-03-27T13:58:13.8393220Z repository: getsentry/sentry-xbox +2026-03-27T13:58:13.8393434Z run-id: 23649555595 +2026-03-27T13:58:13.8393594Z env: +2026-03-27T13:58:13.8393931Z GH_TOKEN: *** +2026-03-27T13:58:13.8394135Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T13:58:13.8394402Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T13:58:13.8394706Z GDK_VERSION: 250400 +2026-03-27T13:58:13.8395101Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T13:58:13.8400007Z SENTRY_AUTH_TOKEN: *** +2026-03-27T13:58:13.8400233Z ##[endgroup] +2026-03-27T13:58:14.3579728Z Downloading single artifact +2026-03-27T13:58:15.1910533Z Preparing to download the following artifacts: +2026-03-27T13:58:15.1912365Z - scarlett-unity (ID: 6145107475, Size: 1009318, Expected Digest: sha256:022784e53ac3d6700c080ab5b9f11de5af145cea35733f5a1f593fb9d0815a5f) +2026-03-27T13:58:15.5128979Z Redirecting to blob download url: https://productionresultssa6.blob.core.windows.net/actions-results/0aefecac-2f94-49e0-9754-1a2f7a895eb1/workflow-job-run-1e8d44c5-8900-5431-a82e-86c040a629d8/artifacts/409696d2567c6234a4de30f87986ffa4406907e87c1bb7c5e93b8a684b95100e.zip +2026-03-27T13:58:15.5161074Z Starting download of artifact to: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-native-xbox-unity +2026-03-27T13:58:16.0099985Z (node:24624) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. +2026-03-27T13:58:16.0129020Z (Use `node --trace-deprecation ...` to show where the warning was created) +2026-03-27T13:58:16.6686720Z SHA256 digest of downloaded artifact is 022784e53ac3d6700c080ab5b9f11de5af145cea35733f5a1f593fb9d0815a5f +2026-03-27T13:58:16.6688997Z Artifact download completed successfully. +2026-03-27T13:58:16.6770618Z Total of 1 artifact(s) downloaded +2026-03-27T13:58:16.6778783Z Download artifact has finished successfully +2026-03-27T13:58:16.8600259Z ##[group]Run # Clean up any existing files/directories from previous runs +2026-03-27T13:58:16.8600934Z # Clean up any existing files/directories from previous runs +2026-03-27T13:58:16.8603378Z if (Test-Path "sentry-unity-package.zip") { +2026-03-27T13:58:16.8603733Z  Remove-Item -Force "sentry-unity-package.zip" +2026-03-27T13:58:16.8604010Z } +2026-03-27T13:58:16.8604209Z if (Test-Path "sentry-unity-package") { +2026-03-27T13:58:16.8604544Z  Remove-Item -Recurse -Force "sentry-unity-package" +2026-03-27T13:58:16.8604845Z } +2026-03-27T13:58:16.8605055Z # Get the latest successful workflow run on main +2026-03-27T13:58:16.8606359Z $runsJson = gh run list --repo getsentry/sentry-unity --branch main --status success --workflow CI --limit 1 --json databaseId,headSha | ConvertFrom-Json +2026-03-27T13:58:16.8607376Z $runId = $runsJson[0].databaseId +2026-03-27T13:58:16.8607769Z Write-Host "Downloading artifact from run $runId" +2026-03-27T13:58:16.8608301Z gh run download $runId --repo getsentry/sentry-unity --name package-release --dir . +2026-03-27T13:58:16.8608916Z Rename-Item "package-release.zip" "sentry-unity-package.zip" +2026-03-27T13:58:16.8610038Z Expand-Archive "sentry-unity-package.zip" -DestinationPath "sentry-unity-package" -Force +2026-03-27T13:58:16.8842833Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" +2026-03-27T13:58:16.8843192Z env: +2026-03-27T13:58:16.8843543Z GH_TOKEN: *** +2026-03-27T13:58:16.8843739Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T13:58:16.8844399Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T13:58:16.8844732Z GDK_VERSION: 250400 +2026-03-27T13:58:16.8846835Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T13:58:16.8847630Z SENTRY_AUTH_TOKEN: *** +2026-03-27T13:58:16.8847852Z ##[endgroup] +2026-03-27T13:58:19.5876243Z Downloading artifact from run 23239042374 +2026-03-27T13:59:33.6326305Z ##[group]Run pwsh ./test/Scripts.Integration.Test/integration-test.ps1 ` +2026-03-27T13:59:33.6327400Z pwsh ./test/Scripts.Integration.Test/integration-test.ps1 ` +2026-03-27T13:59:33.6327796Z  -UnityPath "$env:UNITY_ROOT" ` +2026-03-27T13:59:33.6328073Z  -UnityVersion "$env:UNITY_VERSION" ` +2026-03-27T13:59:33.6328348Z  -Platform "XSX" ` +2026-03-27T13:59:33.6328801Z  -PackagePath "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package" ` +2026-03-27T13:59:33.6329528Z  -NativeSDKPath "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-native-xbox-unity" ` +2026-03-27T13:59:33.6330035Z  -SkipTests ` +2026-03-27T13:59:33.6330229Z  -Rebuild +2026-03-27T13:59:33.6432710Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" +2026-03-27T13:59:33.6433068Z env: +2026-03-27T13:59:33.6433800Z GH_TOKEN: *** +2026-03-27T13:59:33.6434059Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T13:59:33.6434380Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T13:59:33.6434734Z GDK_VERSION: 250400 +2026-03-27T13:59:33.6435186Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T13:59:33.6435945Z SENTRY_AUTH_TOKEN: *** +2026-03-27T13:59:33.6436151Z ##[endgroup] +2026-03-27T13:59:35.1499391Z 14:59:35.145 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe +2026-03-27T13:59:35.1556083Z +2026-03-27T13:59:35.1562579Z ================================================================ +2026-03-27T13:59:35.1581703Z CREATING PROJECT +2026-03-27T13:59:35.1586955Z ================================================================ +2026-03-27T13:59:35.1647262Z 14:59:35.162 | Project path: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T13:59:35.2231709Z 14:59:35.222 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe +2026-03-27T13:59:35.2255947Z 14:59:35.225 | Creating directory: 'IntegrationTest6000.3.8f1' +2026-03-27T13:59:35.2312490Z 14:59:35.230 | Directory created +2026-03-27T13:59:35.2318809Z 14:59:35.231 | Creating integration project... +2026-03-27T13:59:35.2535171Z ##[group]Run C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -batchmode -createProject C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -quit -logfile unity.log +2026-03-27T13:59:35.2552427Z Removing Unity log unity.log +2026-03-27T13:59:35.5195956Z Waiting for Unity to finish. +2026-03-27T13:59:36.5626615Z 14:59:36.383 | [Licensing::Module] Trying to connect to existing licensing client channel... +2026-03-27T13:59:36.5867183Z 14:59:36.539 | Built from '6000.3/staging' branch; Version is '6000.3.8f1 (1c7db571dde0) revision 1867189'; Using compiler version '194234433'; Build Type 'Release' +2026-03-27T13:59:36.6113026Z 14:59:36.596 | OS: 'Windows 11 (10.0.26200) Professional' Language: 'en' Physical Memory: 16322 MB +2026-03-27T13:59:36.6195603Z 14:59:36.606 | [Licensing::IpcConnector] Channel LicenseClient-github-runner doesn't exist +2026-03-27T13:59:36.6221080Z 14:59:36.621 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1 +2026-03-27T13:59:36.6236810Z 14:59:36.622 | System architecture: x64 +2026-03-27T13:59:36.6543245Z 14:59:36.633 | Process architecture: x64 +2026-03-27T13:59:36.6601151Z 14:59:36.655 | Date: 2026-03-27T13:59:36Z +2026-03-27T13:59:36.6617984Z 14:59:36.660 | [Licensing::Module] Successfully launched the LicensingClient (PId: 42608) +2026-03-27T13:59:37.5609268Z 14:59:37.479 | +2026-03-27T13:59:37.6653277Z 14:59:37.595 | COMMAND LINE ARGUMENTS: +2026-03-27T13:59:37.8354654Z 14:59:37.725 | C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe +2026-03-27T13:59:37.9802912Z 14:59:37.856 | -batchmode +2026-03-27T13:59:38.0873487Z 14:59:38.027 | -createProject +2026-03-27T13:59:38.2169306Z 14:59:38.111 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T13:59:38.3584600Z 14:59:38.258 | -quit +2026-03-27T13:59:38.4727234Z 14:59:38.410 | -logfile +2026-03-27T13:59:38.5624492Z 14:59:38.494 | unity.log +2026-03-27T13:59:38.6131838Z 14:59:38.575 | C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T13:59:38.6550939Z 14:59:38.625 | [UnityMemory] Configuration Parameters - Can be set up in boot.config +2026-03-27T13:59:38.6969366Z 14:59:38.670 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" +2026-03-27T13:59:38.7154446Z 14:59:38.703 | "memorysetup-temp-allocator-size-audio-worker=65536" +2026-03-27T13:59:38.7295082Z 14:59:38.717 | "memorysetup-temp-allocator-size-gfx=262144" +2026-03-27T13:59:38.7348661Z 14:59:38.731 | "memorysetup-allocator-temp-initial-block-size-main=262144" +2026-03-27T13:59:38.7552859Z 14:59:38.735 | "memorysetup-allocator-temp-initial-block-size-worker=262144" +2026-03-27T13:59:38.8114797Z 14:59:38.775 | "memorysetup-temp-allocator-size-background-worker=32768" +2026-03-27T13:59:38.8526695Z 14:59:38.821 | "memorysetup-temp-allocator-size-job-worker=262144" +2026-03-27T13:59:38.8880996Z 14:59:38.863 | "memorysetup-temp-allocator-size-preload-manager=33554432" +2026-03-27T13:59:38.9261511Z 14:59:38.902 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T13:59:38.9790748Z 14:59:38.940 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T13:59:39.0027486Z 14:59:38.984 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T13:59:39.0282108Z 14:59:39.022 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T13:59:39.0567040Z 14:59:39.029 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T13:59:39.0652165Z 14:59:39.061 | "memorysetup-bucket-allocator-granularity=16" +2026-03-27T13:59:39.0724467Z 14:59:39.069 | "memorysetup-bucket-allocator-bucket-count=8" +2026-03-27T13:59:39.0790244Z 14:59:39.073 | "memorysetup-bucket-allocator-block-size=33554432" +2026-03-27T13:59:39.0824145Z 14:59:39.079 | "memorysetup-bucket-allocator-block-count=8" +2026-03-27T13:59:39.0928229Z 14:59:39.088 | "memorysetup-main-allocator-block-size=16777216" +2026-03-27T13:59:39.0950316Z 14:59:39.094 | "memorysetup-thread-allocator-block-size=16777216" +2026-03-27T13:59:39.0959035Z 14:59:39.095 | "memorysetup-gfx-main-allocator-block-size=16777216" +2026-03-27T13:59:39.1073976Z 14:59:39.098 | "memorysetup-gfx-thread-allocator-block-size=16777216" +2026-03-27T13:59:39.1092740Z 14:59:39.107 | "memorysetup-cache-allocator-block-size=4194304" +2026-03-27T13:59:39.1157100Z 14:59:39.111 | "memorysetup-typetree-allocator-block-size=2097152" +2026-03-27T13:59:39.1378262Z 14:59:39.122 | "memorysetup-profiler-bucket-allocator-granularity=16" +2026-03-27T13:59:39.1505059Z 14:59:39.143 | "memorysetup-profiler-bucket-allocator-bucket-count=8" +2026-03-27T13:59:39.1548217Z 14:59:39.152 | "memorysetup-profiler-bucket-allocator-block-size=33554432" +2026-03-27T13:59:39.1566629Z 14:59:39.155 | "memorysetup-profiler-bucket-allocator-block-count=8" +2026-03-27T13:59:39.1601670Z 14:59:39.157 | "memorysetup-profiler-allocator-block-size=16777216" +2026-03-27T13:59:39.1631980Z 14:59:39.162 | "memorysetup-profiler-editor-allocator-block-size=1048576" +2026-03-27T13:59:39.1675359Z 14:59:39.164 | "memorysetup-temp-allocator-size-main=16777216" +2026-03-27T13:59:39.1695103Z 14:59:39.168 | "memorysetup-job-temp-allocator-block-size=2097152" +2026-03-27T13:59:39.1712680Z 14:59:39.170 | "memorysetup-job-temp-allocator-block-size-background=1048576" +2026-03-27T13:59:39.1878956Z 14:59:39.171 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" +2026-03-27T13:59:39.1905939Z 14:59:39.188 | "memorysetup-temp-allocator-size-cloud-worker=32768" +2026-03-27T13:59:39.1956144Z 14:59:39.192 | Player connection [35500] Target information: +2026-03-27T13:59:39.1981594Z 14:59:39.196 | +2026-03-27T13:59:39.2019708Z 14:59:39.199 | Player connection [35500] * "[IP] 10.2.1.51 [Port] 55504 [Flags] 2 [Guid] 3576363466 [EditorId] 3576363466 [Version] 1048832 [Id] WindowsEditor(7,GDX-T1) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" +2026-03-27T13:59:39.2064279Z 14:59:39.203 | +2026-03-27T13:59:39.2211425Z 14:59:39.207 | Player connection [35500] Host joined multi-casting on [225.0.0.222:54997]... +2026-03-27T13:59:39.2457859Z 14:59:39.231 | Player connection [35500] Host joined alternative multi-casting on [225.0.0.222:34997]... +2026-03-27T13:59:39.2466921Z 14:59:39.246 | Input System module state changed to: Initialized. +2026-03-27T13:59:39.2490627Z 14:59:39.248 | [Physics::Module] Initialized fallback backend. +2026-03-27T13:59:39.2500249Z 14:59:39.249 | [Physics::Module] Id: 0xdecafbad +2026-03-27T13:59:39.2625242Z 14:59:39.257 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner" at "2026-03-27T13:59:37.6710692Z" +2026-03-27T13:59:39.2642645Z 14:59:39.263 | [Package Manager] Connected to IPC stream "Upm-28276" after 0.3 seconds. +2026-03-27T13:59:39.2656115Z 14:59:39.264 | [Licensing::Module] Licensing is not yet initialized. +2026-03-27T13:59:42.5918462Z 14:59:42.537 | [Licensing::Client] Handshaking with LicensingClient: +2026-03-27T13:59:42.6546849Z 14:59:42.605 | Version: 1.17.4+4293ba1 +2026-03-27T13:59:42.7470593Z 14:59:42.687 | Session Id: 8d9d618ae859457f9d2a8835982dc008 +2026-03-27T13:59:42.7754200Z 14:59:42.760 | Correlation Id: 78bd204fafe89efe2b67c2deb7c156dd +2026-03-27T13:59:42.8195628Z 14:59:42.786 | External correlation Id: 8381107155405391938 +2026-03-27T13:59:42.8496555Z 14:59:42.825 | Machine Id: b5cL0vq5etg728hHCfaSnjJzEl4= +2026-03-27T13:59:42.8893239Z 14:59:42.864 | [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-github-runner" (connect: 1.31s, validation: 0.23s, handshake: 4.37s) +2026-03-27T13:59:42.9343904Z 14:59:42.903 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner-notifications" at "2026-03-27T13:59:42.2719249Z" +2026-03-27T13:59:42.9780521Z 14:59:42.943 | [Licensing::Module] Connected to LicensingClient (PId: 42608, launch time: 0.01, total connection time: 5.91s) +2026-03-27T13:59:43.0170869Z 14:59:42.990 | [Licensing::Module] Error: Access token is unavailable; failed to update +2026-03-27T13:59:43.0504151Z 14:59:43.023 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T13:59:43.0700518Z 14:59:43.056 | [Licensing::Module] License group: +2026-03-27T13:59:43.0753211Z 14:59:43.072 | Id: SC-6P43-RKFA-9PYH-ZZ9Q-XXXX +2026-03-27T13:59:43.0760052Z 14:59:43.075 | Product: Unity Pro +2026-03-27T13:59:43.0786577Z 14:59:43.078 | Type: ULF +2026-03-27T13:59:43.0797752Z 14:59:43.079 | Expiration: 2027-03-05T00:00:00Z +2026-03-27T13:59:43.0841803Z 14:59:43.081 | [Licensing::Client] Successfully updated license, isAsync: True, time: 0.04 +2026-03-27T13:59:43.0935790Z 14:59:43.084 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T13:59:43.0944904Z 14:59:43.094 | [Licensing::Module] Licensing Background thread has ended after 6.05s +2026-03-27T13:59:43.0953397Z 14:59:43.094 | [Licensing::Module] Licensing is initialized (took 4.38s). +2026-03-27T13:59:43.0979360Z 14:59:43.095 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T13:59:43.1410985Z 14:59:43.109 | Library Redirect Path: Library/ +2026-03-27T13:59:44.3986059Z 14:59:44.379 | [Physics::Module] Selected backend. +2026-03-27T13:59:44.4375617Z 14:59:44.405 | [Physics::Module] Name: PhysX +2026-03-27T13:59:44.4430015Z 14:59:44.441 | [Physics::Module] Id: 0xf2b8ea05 +2026-03-27T13:59:44.4440762Z 14:59:44.443 | [Physics::Module] SDK Version: 4.1.2 +2026-03-27T13:59:44.4449672Z 14:59:44.444 | [Physics::Module] Integration Version: 1.0.0 +2026-03-27T13:59:44.4477394Z 14:59:44.445 | [Physics::Module] Threading Mode: Multi-Threaded +2026-03-27T13:59:44.4677356Z 14:59:44.455 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. +2026-03-27T13:59:44.5014718Z 14:59:44.470 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T13:59:44.5452251Z 14:59:44.512 | Initialize engine version: 6000.3.8f1 (1c7db571dde0) +2026-03-27T13:59:44.5489341Z 14:59:44.547 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Resources/UnitySubsystems +2026-03-27T13:59:44.5624781Z 14:59:44.551 | [Subsystems] Discovering subsystems at path C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets +2026-03-27T13:59:44.5804822Z 14:59:44.564 | GfxDevice: creating device client; kGfxThreadingModeNonThreaded +2026-03-27T13:59:45.0321874Z 14:59:45.001 | Direct3D: +2026-03-27T13:59:45.0606825Z 14:59:45.042 | Version: Direct3D 11.0 [level 11.1] +2026-03-27T13:59:45.0786544Z 14:59:45.070 | Renderer: NVIDIA GeForce GTX 1080 (ID=0x1b80) +2026-03-27T13:59:45.0921712Z 14:59:45.086 | Vendor: NVIDIA +2026-03-27T13:59:45.0939073Z 14:59:45.093 | VRAM: 8059 MB +2026-03-27T13:59:45.0950418Z 14:59:45.094 | Driver: 32.0.15.7716 +2026-03-27T13:59:45.0956310Z 14:59:45.095 | Initialize mono +2026-03-27T13:59:45.0961827Z 14:59:45.095 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed' +2026-03-27T13:59:45.0970423Z 14:59:45.096 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +2026-03-27T13:59:45.1009170Z 14:59:45.098 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/etc' +2026-03-27T13:59:45.1016945Z 14:59:45.101 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56276 +2026-03-27T13:59:45.5170334Z 14:59:45.516 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts +2026-03-27T13:59:45.5178036Z 14:59:45.517 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts +2026-03-27T13:59:45.5305066Z 14:59:45.517 | ImportWorker Server TCP listen port: 0 +2026-03-27T13:59:45.5305474Z 14:59:45.518 | AcceleratorClientConnectionCallback - disconnected - :0 +2026-03-27T13:59:45.5305870Z 14:59:45.519 | Begin MonoManager ReloadAssembly +2026-03-27T13:59:46.3796492Z 14:59:46.355 | Registering precompiled unity dll's ... +2026-03-27T13:59:46.4031226Z 14:59:46.385 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +2026-03-27T13:59:46.4409194Z 14:59:46.411 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T13:59:46.4849879Z 14:59:46.461 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/PS5Player/UnityEditor.PS5.Extensions.dll +2026-03-27T13:59:46.4876281Z 14:59:46.487 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/UnityEditor.GameCoreScarlett.Extensions.dll +2026-03-27T13:59:46.5099816Z 14:59:46.489 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T13:59:46.5431208Z 14:59:46.520 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +2026-03-27T13:59:46.5870152Z 14:59:46.555 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreXboxOneSupport/UnityEditor.GameCoreXboxOne.Extensions.dll +2026-03-27T13:59:46.6448047Z 14:59:46.613 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T13:59:46.7005331Z 14:59:46.675 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll +2026-03-27T13:59:46.7645142Z 14:59:46.716 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/Switch/UnityEditor.Switch.Extensions.dll +2026-03-27T13:59:46.8182018Z 14:59:46.776 | Registered in 0.100368 seconds. +2026-03-27T13:59:47.2773227Z 14:59:47.233 | - Loaded All Assemblies, in 1.920 seconds +2026-03-27T13:59:49.3488260Z 14:59:49.347 | Native extension for iOS target not found +2026-03-27T13:59:49.7539291Z 14:59:49.752 | Native extension for Android target not found +2026-03-27T13:59:53.0548190Z 14:59:53.005 | Android Extension - Scanning For ADB Devices 3342 ms +2026-03-27T13:59:53.1294913Z 14:59:53.081 | Native extension for WindowsStandalone target not found +2026-03-27T13:59:54.0580850Z 14:59:53.955 | ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:False +2026-03-27T13:59:54.1675603Z 14:59:54.120 | Mono: successfully reloaded assembly +2026-03-27T13:59:54.1813566Z 14:59:54.179 | - Finished resetting the current domain, in 6.915 seconds +2026-03-27T13:59:54.2103270Z 14:59:54.181 | Domain Reload Profiling: 8824ms +2026-03-27T13:59:54.2665941Z 14:59:54.223 | BeginReloadAssembly (628ms) +2026-03-27T13:59:54.3542111Z 14:59:54.273 | ExecutionOrderSort (0ms) +2026-03-27T13:59:54.3575233Z 14:59:54.355 | DisableScriptedObjects (0ms) +2026-03-27T13:59:54.3579467Z 14:59:54.357 | BackupInstance (0ms) +2026-03-27T13:59:54.3747431Z 14:59:54.363 | ReleaseScriptingObjects (0ms) +2026-03-27T13:59:54.4338909Z 14:59:54.376 | CreateAndSetChildDomain (21ms) +2026-03-27T13:59:54.4368888Z 14:59:54.435 | RebuildCommonClasses (242ms) +2026-03-27T13:59:54.4451976Z 14:59:54.444 | RebuildNativeTypeToScriptingClass (22ms) +2026-03-27T13:59:54.4561003Z 14:59:54.446 | initialDomainReloadingComplete (282ms) +2026-03-27T13:59:54.4571655Z 14:59:54.456 | LoadAllAssembliesAndSetupDomain (730ms) +2026-03-27T13:59:54.4682538Z 14:59:54.465 | LoadAssemblies (623ms) +2026-03-27T13:59:54.4751598Z 14:59:54.468 | RebuildTransferFunctionScriptingTraits (0ms) +2026-03-27T13:59:54.4761908Z 14:59:54.475 | AnalyzeDomain (681ms) +2026-03-27T13:59:54.4800804Z 14:59:54.476 | TypeCache.Refresh (665ms) +2026-03-27T13:59:54.4810061Z 14:59:54.480 | TypeCache.ScanAssembly (591ms) +2026-03-27T13:59:54.4815772Z 14:59:54.481 | BuildScriptInfoCaches (3ms) +2026-03-27T13:59:54.4830156Z 14:59:54.481 | ResolveRequiredComponents (12ms) +2026-03-27T13:59:54.4836539Z 14:59:54.483 | FinalizeReload (6920ms) +2026-03-27T13:59:54.5299340Z 14:59:54.497 | ReleaseScriptCaches (0ms) +2026-03-27T13:59:54.5646712Z 14:59:54.548 | RebuildScriptCaches (0ms) +2026-03-27T13:59:54.6059846Z 14:59:54.586 | SetupLoadedEditorAssemblies (6652ms) +2026-03-27T13:59:54.6427144Z 14:59:54.625 | LogAssemblyErrors (0ms) +2026-03-27T13:59:54.6588908Z 14:59:54.645 | InitializePlatformSupportModulesInManaged (5599ms) +2026-03-27T13:59:54.6607482Z 14:59:54.659 | SetLoadedEditorAssemblies (11ms) +2026-03-27T13:59:54.6975070Z 14:59:54.662 | BeforeProcessingInitializeOnLoad (349ms) +2026-03-27T13:59:54.7410000Z 14:59:54.717 | ProcessInitializeOnLoadAttributes (405ms) +2026-03-27T13:59:54.7424421Z 14:59:54.741 | ProcessInitializeOnLoadMethodAttributes (272ms) +2026-03-27T13:59:54.7440250Z 14:59:54.742 | AfterProcessingInitializeOnLoad (0ms) +2026-03-27T13:59:54.7515741Z 14:59:54.744 | EditorAssembliesLoaded (17ms) +2026-03-27T13:59:54.7555004Z 14:59:54.754 | ExecutionOrderSort2 (0ms) +2026-03-27T13:59:54.7564492Z 14:59:54.755 | AwakeInstancesAfterBackupRestoration (0ms) +2026-03-27T13:59:54.7581129Z 14:59:54.757 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T13:59:54.7619974Z 14:59:54.758 | Application.AssetDatabase Initial Refresh Start +2026-03-27T13:59:54.7643426Z 14:59:54.763 | Package Manager log level set to [2] +2026-03-27T14:00:01.3666305Z 15:00:01.336 | [Package Manager] Done resolving packages in 6.57 seconds +2026-03-27T14:00:01.3971262Z 15:00:01.366 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:00:01.4263293Z 15:00:01.413 | [Package Manager] Lock file was modified +2026-03-27T14:00:01.4302576Z 15:00:01.429 | [Package Manager] Registered 37 packages: +2026-03-27T14:00:01.4311647Z 15:00:01.430 | Built-in packages: +2026-03-27T14:00:01.4527556Z 15:00:01.431 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) +2026-03-27T14:00:01.4591406Z 15:00:01.457 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) +2026-03-27T14:00:01.4772031Z 15:00:01.466 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) +2026-03-27T14:00:01.4817667Z 15:00:01.479 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) +2026-03-27T14:00:01.4828445Z 15:00:01.482 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) +2026-03-27T14:00:01.4854784Z 15:00:01.484 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) +2026-03-27T14:00:01.4860928Z 15:00:01.485 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) +2026-03-27T14:00:01.4870371Z 15:00:01.486 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) +2026-03-27T14:00:01.4878768Z 15:00:01.487 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) +2026-03-27T14:00:01.4885102Z 15:00:01.487 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) +2026-03-27T14:00:01.4892322Z 15:00:01.488 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) +2026-03-27T14:00:01.4898708Z 15:00:01.489 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) +2026-03-27T14:00:01.4916292Z 15:00:01.489 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) +2026-03-27T14:00:01.4925275Z 15:00:01.491 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) +2026-03-27T14:00:01.4968604Z 15:00:01.492 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) +2026-03-27T14:00:01.4987287Z 15:00:01.497 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) +2026-03-27T14:00:01.4996113Z 15:00:01.499 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) +2026-03-27T14:00:01.5014154Z 15:00:01.499 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) +2026-03-27T14:00:01.5025151Z 15:00:01.501 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) +2026-03-27T14:00:01.5064351Z 15:00:01.504 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) +2026-03-27T14:00:01.5074054Z 15:00:01.506 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) +2026-03-27T14:00:01.5228850Z 15:00:01.520 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) +2026-03-27T14:00:01.5255540Z 15:00:01.523 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) +2026-03-27T14:00:01.5262186Z 15:00:01.525 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) +2026-03-27T14:00:01.5349277Z 15:00:01.527 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) +2026-03-27T14:00:01.5357710Z 15:00:01.535 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) +2026-03-27T14:00:01.5364195Z 15:00:01.535 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) +2026-03-27T14:00:01.5370530Z 15:00:01.536 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) +2026-03-27T14:00:01.5378619Z 15:00:01.537 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) +2026-03-27T14:00:01.5383810Z 15:00:01.537 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) +2026-03-27T14:00:01.5421320Z 15:00:01.539 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) +2026-03-27T14:00:01.5447988Z 15:00:01.542 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) +2026-03-27T14:00:01.5456711Z 15:00:01.545 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) +2026-03-27T14:00:01.5493571Z 15:00:01.546 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) +2026-03-27T14:00:01.6143852Z 15:00:01.573 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) +2026-03-27T14:00:01.6647090Z 15:00:01.627 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) +2026-03-27T14:00:01.6827065Z 15:00:01.673 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) +2026-03-27T14:00:01.6842049Z 15:00:01.683 | [Subsystems] No new subsystems found in resolved package list. +2026-03-27T14:00:01.6854915Z 15:00:01.684 | [Package Manager] Done registering packages in 0.01 seconds +2026-03-27T14:00:02.1773766Z 15:00:02.100 | [ScriptCompilation] Requested script compilation because: Assembly Definition File(s) changed +2026-03-27T14:00:02.2818115Z 15:00:02.228 | [ScriptCompilation] Requested script compilation because: Assetdatabase observed changes in script compilation related files +2026-03-27T14:00:10.4704204Z 15:00:10.464 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies +2026-03-27T14:00:10.4860384Z 15:00:10.470 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:00:10.8810869Z 15:00:10.880 | ExitCode: 4 Duration: 0s254ms +2026-03-27T14:00:10.8817361Z 15:00:10.881 | [ ] Require frontend run. Library/Bee/1900b0aE.dag couldn't be loaded +2026-03-27T14:00:10.8824594Z 15:00:10.881 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aE.dag.json" "Library/Bee/1900b0aE-inputdata.json" "Library\Bee\buildprogram0.traceevents" +2026-03-27T14:00:10.8838571Z 15:00:10.882 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:00:10.8845009Z 15:00:10.884 | DisplayProgressbar: Compiling Scripts +2026-03-27T14:00:11.5815281Z 15:00:11.328 | ExitCode: 0 Duration: 0s546ms +2026-03-27T14:00:11.7098451Z 15:00:11.616 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aE.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssemblies +2026-03-27T14:00:11.8581565Z 15:00:11.754 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:00:28.2331000Z 15:00:28.231 | ExitCode: 0 Duration: 16s +2026-03-27T14:00:28.2340573Z 15:00:28.233 | Finished compiling graph: 173 nodes, 662 flattened edges (650 ToBuild, 4 ToUse), maximum node priority 24 +2026-03-27T14:00:28.2348002Z 15:00:28.234 | [ 1/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreBusinessMetricsModule.dll_E21A27DA02306F86.mvfrm +2026-03-27T14:00:28.2355482Z 15:00:28.234 | [ 2/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GameCoreScarlett.Extensions.dll_F4A7534BDA97CAF1.mvfrm +2026-03-27T14:00:28.2363360Z 15:00:28.235 | [ 3/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.BuildProfileModule.dll_DD1299C47967626D.mvfrm +2026-03-27T14:00:28.2394807Z 15:00:28.238 | [ 4/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.rsp2 +2026-03-27T14:00:28.2416973Z 15:00:28.239 | [ 5/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.ClothModule.dll_FC2A22823AFF1EBC.mvfrm +2026-03-27T14:00:28.2425441Z 15:00:28.242 | [ 6/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.UnityAdditionalFile.txt +2026-03-27T14:00:28.2435194Z 15:00:28.243 | [ 7/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_A0BBDD63C9E3A540.mvfrm +2026-03-27T14:00:28.2443961Z 15:00:28.243 | [ 8/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_9380B37B6C377051.mvfrm +2026-03-27T14:00:28.2453659Z 15:00:28.244 | [ 9/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.AdaptivePerformanceModule.dll_622F2E5FDBE9408C.mvfrm +2026-03-27T14:00:28.2460020Z 15:00:28.245 | [ 10/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_D8EE391275F34F5F.mvfrm +2026-03-27T14:00:28.2478542Z 15:00:28.246 | [ 11/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.AssetComplianceModule.dll_D996ED52449F896D.mvfrm +2026-03-27T14:00:28.2509174Z 15:00:28.248 | [ 12/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.AccessibilityModule.dll_2101CCB15D09F9C0.mvfrm +2026-03-27T14:00:28.2528418Z 15:00:28.251 | [ 13/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PS5.Extensions.dll_8011F093C424D413.mvfrm +2026-03-27T14:00:28.2551178Z 15:00:28.253 | [ 14/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Switch.Extensions.dll_3FF47390B0FC50A2.mvfrm +2026-03-27T14:00:28.2566666Z 15:00:28.255 | [ 15/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Apple.Extensions.Common.dll_04B90D04B25EB793.mvfrm +2026-03-27T14:00:28.2587224Z 15:00:28.257 | [ 16/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_927379A469FD0C4F.mvfrm +2026-03-27T14:00:28.2596608Z 15:00:28.259 | [ 17/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_DA06E52628C686F6.mvfrm +2026-03-27T14:00:28.2604945Z 15:00:28.260 | [ 18/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_C4E82CD9831320B6.mvfrm +2026-03-27T14:00:28.2617318Z 15:00:28.261 | [ 19/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GameCoreXboxOne.Extensions.dll_638DA3CED7C5E5FF.mvfrm +2026-03-27T14:00:28.2643717Z 15:00:28.262 | [ 20/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GameCoreCommon.Extensions.dll_1B9A37E1ED5A7323.mvfrm +2026-03-27T14:00:28.2704810Z 15:00:28.264 | [ 21/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_06B3EB7A9BA2FC99.mvfrm +2026-03-27T14:00:28.2713677Z 15:00:28.270 | [ 22/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_C5AC2B4998D34832.mvfrm +2026-03-27T14:00:28.2721298Z 15:00:28.271 | [ 23/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GameCoreCommon.Extensions.dll_0594060EF370E380.mvfrm +2026-03-27T14:00:28.2730095Z 15:00:28.272 | [ 24/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_DCEF41A0891B9C93.mvfrm +2026-03-27T14:00:28.2740082Z 15:00:28.273 | [ 25/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_5B39CF6EEF02B707.mvfrm +2026-03-27T14:00:28.2749207Z 15:00:28.274 | [ 26/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_6DA9E512A736E2B9.mvfrm +2026-03-27T14:00:28.2756872Z 15:00:28.275 | [ 27/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_2CF061F6A57359E5.mvfrm +2026-03-27T14:00:28.2765435Z 15:00:28.276 | [ 28/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_0EECEC018EDFE31A.mvfrm +2026-03-27T14:00:28.2774066Z 15:00:28.276 | [ 29/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_287B0C6A65C869A9.mvfrm +2026-03-27T14:00:28.2816022Z 15:00:28.277 | [ 30/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_1170F6C08A478BAF.mvfrm +2026-03-27T14:00:28.2826417Z 15:00:28.281 | [ 31/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_8078065654F18C22.mvfrm +2026-03-27T14:00:28.2864564Z 15:00:28.283 | [ 32/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_230CD006839DF834.mvfrm +2026-03-27T14:00:28.2877289Z 15:00:28.286 | [ 33/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_8724304CC7930704.mvfrm +2026-03-27T14:00:28.2902398Z 15:00:28.288 | [ 34/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_DC3FF8EA9FF6B508.mvfrm +2026-03-27T14:00:28.2954417Z 15:00:28.292 | [ 35/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VectorGraphicsModule.dll_D4553C972935766B.mvfrm +2026-03-27T14:00:28.2983879Z 15:00:28.297 | [ 36/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_23F9A52FC6B80537.mvfrm +2026-03-27T14:00:28.2992611Z 15:00:28.298 | [ 37/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_63A8EA84F601B6D3.mvfrm +2026-03-27T14:00:28.3007263Z 15:00:28.299 | [ 38/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_203D9879758FDB6F.mvfrm +2026-03-27T14:00:28.3019574Z 15:00:28.301 | [ 39/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConsentModule.dll_9751C275A5DDDE82.mvfrm +2026-03-27T14:00:28.3031466Z 15:00:28.302 | [ 40/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_F0837ECFEE906983.mvfrm +2026-03-27T14:00:28.3048735Z 15:00:28.304 | [ 41/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_86EB53EA897F8A99.mvfrm +2026-03-27T14:00:28.3070510Z 15:00:28.305 | [ 42/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_D6432E041F861BF0.mvfrm +2026-03-27T14:00:28.3104342Z 15:00:28.307 | [ 43/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_97DA26EC36CE0C38.mvfrm +2026-03-27T14:00:28.3114570Z 15:00:28.310 | [ 44/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_5CAD772C4356521E.mvfrm +2026-03-27T14:00:28.3167391Z 15:00:28.311 | [ 45/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_9BC8E32174C0E6E5.mvfrm +2026-03-27T14:00:28.3186647Z 15:00:28.317 | [ 46/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_90925E51B3DA2242.mvfrm +2026-03-27T14:00:28.3204302Z 15:00:28.319 | [ 47/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_508167A4A0E189C6.mvfrm +2026-03-27T14:00:28.3238716Z 15:00:28.322 | [ 48/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_D5A8E5E4C40DE431.mvfrm +2026-03-27T14:00:28.3268643Z 15:00:28.324 | [ 49/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_6A6A02C4573C9138.mvfrm +2026-03-27T14:00:28.3315781Z 15:00:28.328 | [ 50/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_BC61EAF0D7D34A98.mvfrm +2026-03-27T14:00:28.3328117Z 15:00:28.332 | [ 51/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_7479B47F484F917A.mvfrm +2026-03-27T14:00:28.3335209Z 15:00:28.333 | [ 52/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_662BA15C54105541.mvfrm +2026-03-27T14:00:28.3343088Z 15:00:28.333 | [ 53/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_F5FD87546194CF97.mvfrm +2026-03-27T14:00:28.3369761Z 15:00:28.334 | [ 54/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_FCCC7BA05D0405DC.mvfrm +2026-03-27T14:00:28.3464791Z 15:00:28.339 | [ 55/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_3D88AF35B071FAAF.mvfrm +2026-03-27T14:00:28.3493937Z 15:00:28.347 | [ 56/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_1952730B1641D189.mvfrm +2026-03-27T14:00:28.3501330Z 15:00:28.349 | [ 57/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_CB95967F4EE870E3.mvfrm +2026-03-27T14:00:28.3509150Z 15:00:28.350 | [ 58/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_FB7E3AFA85C86D2E.mvfrm +2026-03-27T14:00:28.3517278Z 15:00:28.351 | [ 59/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_966BDC5B32F16608.mvfrm +2026-03-27T14:00:28.3530348Z 15:00:28.352 | [ 60/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ShaderVariantAnalyticsModule.dll_9CFA169B4BC2F083.mvfrm +2026-03-27T14:00:28.3539006Z 15:00:28.353 | [ 61/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ShaderRuntimeModule.dll_3D1A68072605E75A.mvfrm +2026-03-27T14:00:28.3546291Z 15:00:28.354 | [ 62/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_2741F599E9AA09D1.mvfrm +2026-03-27T14:00:28.3594396Z 15:00:28.355 | [ 63/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_39B8C30AFC8042A9.mvfrm +2026-03-27T14:00:28.3630846Z 15:00:28.360 | [ 64/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RenderAs2DModule.dll_80C4CA2EB69E8627.mvfrm +2026-03-27T14:00:28.3651607Z 15:00:28.364 | [ 65/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_3F8D07A8D7443BF0.mvfrm +2026-03-27T14:00:28.3658686Z 15:00:28.365 | [ 66/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_E28600318745BCEE.mvfrm +2026-03-27T14:00:28.3666119Z 15:00:28.366 | [ 67/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsBackendPhysXModule.dll_FCD2AAA2F9EAD650.mvfrm +2026-03-27T14:00:28.3673388Z 15:00:28.366 | [ 68/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_EBAC96A66F96EC3B.mvfrm +2026-03-27T14:00:28.3680686Z 15:00:28.367 | [ 69/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_B16375AB67B711E0.mvfrm +2026-03-27T14:00:28.3689066Z 15:00:28.368 | [ 70/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_3D0E0662972F0022.mvfrm +2026-03-27T14:00:28.3695979Z 15:00:28.369 | [ 71/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_5A9D07B97D6E662B.mvfrm +2026-03-27T14:00:28.3733394Z 15:00:28.369 | [ 72/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MultiplayerModule.dll_31DC85B1520DC651.mvfrm +2026-03-27T14:00:28.3745232Z 15:00:28.373 | [ 73/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_9635E6A2E74F0D46.mvfrm +2026-03-27T14:00:28.3759822Z 15:00:28.375 | [ 74/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InsightsModule.dll_45109F1793F17818.mvfrm +2026-03-27T14:00:28.3768189Z 15:00:28.376 | [ 75/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_0D5A4814D53DDD6F.mvfrm +2026-03-27T14:00:28.3781401Z 15:00:28.377 | [ 76/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_C1E4499C08979521.mvfrm +2026-03-27T14:00:28.3789339Z 15:00:28.378 | [ 77/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_437984433137EECA.mvfrm +2026-03-27T14:00:28.3796170Z 15:00:28.379 | [ 78/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputForUIModule.dll_15042283C4797470.mvfrm +2026-03-27T14:00:28.3804145Z 15:00:28.379 | [ 79/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_93CE21525891045E.mvfrm +2026-03-27T14:00:28.3811528Z 15:00:28.380 | [ 80/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_125A9D85BBC36AB8.mvfrm +2026-03-27T14:00:28.3818852Z 15:00:28.381 | [ 81/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IdentifiersModule.dll_8ABDF11A5BBF06F1.mvfrm +2026-03-27T14:00:28.3825617Z 15:00:28.382 | [ 82/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_E60643C0A1ED35CD.mvfrm +2026-03-27T14:00:28.3832906Z 15:00:28.382 | [ 83/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HierarchyCoreModule.dll_245D5BB344AFD5DB.mvfrm +2026-03-27T14:00:28.3840458Z 15:00:28.383 | [ 84/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_9412A2BC2C917173.mvfrm +2026-03-27T14:00:28.3848871Z 15:00:28.384 | [ 85/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GraphicsStateCollectionSerializerModule.dll_0276CC67F8C7B54D.mvfrm +2026-03-27T14:00:28.3857759Z 15:00:28.385 | [ 86/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_727190C50375C69F.mvfrm +2026-03-27T14:00:28.3892509Z 15:00:28.386 | [ 87/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_1251C86A6458D7B4.mvfrm +2026-03-27T14:00:28.3915450Z 15:00:28.390 | [ 88/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_B09B37F07BD4F9BA.mvfrm +2026-03-27T14:00:28.3923246Z 15:00:28.391 | [ 89/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_C804F5D489567559.mvfrm +2026-03-27T14:00:28.3930940Z 15:00:28.392 | [ 90/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_E9FBBD16291D7494.mvfrm +2026-03-27T14:00:28.3970131Z 15:00:28.393 | [ 91/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_AB49D68709742899.mvfrm +2026-03-27T14:00:28.4009860Z 15:00:28.399 | [ 92/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_A6689FD5399EB2C4.mvfrm +2026-03-27T14:00:28.4039530Z 15:00:28.401 | [ 93/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_4B4AC26567C8E0C6.mvfrm +2026-03-27T14:00:28.4050470Z 15:00:28.404 | [ 94/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_B6A186CE143CDB7C.mvfrm +2026-03-27T14:00:28.4057565Z 15:00:28.405 | [ 95/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_C256DEE66C7C4F61.mvfrm +2026-03-27T14:00:28.4064632Z 15:00:28.406 | [ 96/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_57E91C504FD31A4D.mvfrm +2026-03-27T14:00:28.4071845Z 15:00:28.406 | [ 97/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_5B6E81EB925F707D.mvfrm +2026-03-27T14:00:28.4078465Z 15:00:28.407 | [ 98/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_93A80CBAC4E43D4E.mvfrm +2026-03-27T14:00:28.4086521Z 15:00:28.408 | [ 99/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_B2346924994638D9.mvfrm +2026-03-27T14:00:28.4098975Z 15:00:28.409 | [100/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_64BD85BAC6BA1A4B.mvfrm +2026-03-27T14:00:28.4105829Z 15:00:28.410 | [101/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_E8047E4F9E17E6C3.mvfrm +2026-03-27T14:00:28.4112775Z 15:00:28.410 | [102/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AdaptivePerformanceModule.dll_22BEC316172E9391.mvfrm +2026-03-27T14:00:28.4120796Z 15:00:28.411 | [103/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_DA3547B767C6DE85.mvfrm +2026-03-27T14:00:28.4129350Z 15:00:28.412 | [104/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_AD42BED8D6027CE5.mvfrm +2026-03-27T14:00:28.4139660Z 15:00:28.413 | [105/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.XRModule.dll_1CCB3DDF8385833C.mvfrm +2026-03-27T14:00:28.4146707Z 15:00:28.414 | [106/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.VideoModule.dll_BA4B49F223745B7D.mvfrm +2026-03-27T14:00:28.4153984Z 15:00:28.414 | [107/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.VFXModule.dll_054F546D1A977DAA.mvfrm +2026-03-27T14:00:28.4161292Z 15:00:28.415 | [108/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.VectorGraphicsModule.dll_1930DAFC0D48E260.mvfrm +2026-03-27T14:00:28.4189078Z 15:00:28.416 | [109/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UmbraModule.dll_1016719FEE08EB4B.mvfrm +2026-03-27T14:00:28.4226193Z 15:00:28.420 | [110/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_D84CA73A9E4B4787.mvfrm +2026-03-27T14:00:28.4295745Z 15:00:28.425 | [111/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIToolkitAuthoringModule.dll_2970CDB953D8566F.mvfrm +2026-03-27T14:00:28.4307679Z 15:00:28.429 | [112/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_77EEC9E3BE84E750.mvfrm +2026-03-27T14:00:28.4314041Z 15:00:28.430 | [113/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_69BB957C54F877ED.mvfrm +2026-03-27T14:00:28.4328955Z 15:00:28.431 | [114/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_EAC0B6AE5F15BED9.mvfrm +2026-03-27T14:00:28.4356349Z 15:00:28.434 | [115/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIAutomationModule.dll_8DB388B515DB2B2D.mvfrm +2026-03-27T14:00:28.4370649Z 15:00:28.436 | [116/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TreeModule.dll_F12CA889F3FD0590.mvfrm +2026-03-27T14:00:28.4383220Z 15:00:28.437 | [117/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TilemapModule.dll_A94E2A770FB1FFA0.mvfrm +2026-03-27T14:00:28.4397001Z 15:00:28.438 | [118/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextRenderingModule.dll_C440757D27E906A1.mvfrm +2026-03-27T14:00:28.4405603Z 15:00:28.440 | [119/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_3E026F9DC4D58BCD.mvfrm +2026-03-27T14:00:28.4418269Z 15:00:28.440 | [120/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_F61A392C3551D2AF.mvfrm +2026-03-27T14:00:28.4426185Z 15:00:28.442 | [121/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SubstanceModule.dll_4017966B7C151DB2.mvfrm +2026-03-27T14:00:28.4434308Z 15:00:28.442 | [122/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_0A51C2F5F7F51E97.mvfrm +2026-03-27T14:00:28.4443959Z 15:00:28.443 | [123/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SpriteMaskModule.dll_FACFCDB2838453E3.mvfrm +2026-03-27T14:00:28.4452523Z 15:00:28.444 | [124/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SpriteShapeModule.dll_C5CFC6F03CAE605E.mvfrm +2026-03-27T14:00:28.4460339Z 15:00:28.445 | [125/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SketchUpModule.dll_9847F956D0DAED29.mvfrm +2026-03-27T14:00:28.4467934Z 15:00:28.446 | [126/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.ShaderFoundryModule.dll_B97D2384F83BD1D6.mvfrm +2026-03-27T14:00:28.4474134Z 15:00:28.446 | [127/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.ShaderCompilationModule.dll_83BD2C5BA188DC20.mvfrm +2026-03-27T14:00:28.4490256Z 15:00:28.447 | [128/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.ShaderBuildSettingsModule.dll_6A557508AEE871CE.mvfrm +2026-03-27T14:00:28.4524054Z 15:00:28.451 | [129/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_7A9D5341D58C5548.mvfrm +2026-03-27T14:00:28.4538115Z 15:00:28.452 | [130/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_D4E7EC99E18012B3.mvfrm +2026-03-27T14:00:28.4552698Z 15:00:28.454 | [131/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SafeModeModule.dll_B033140685A95112.mvfrm +2026-03-27T14:00:28.4578848Z 15:00:28.456 | [132/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_3EDE9A60D50022A5.mvfrm +2026-03-27T14:00:28.4614004Z 15:00:28.459 | [133/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_6E4B363336DF83E7.mvfrm +2026-03-27T14:00:28.4652114Z 15:00:28.462 | [134/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_519E4273EEB59DAA.mvfrm +2026-03-27T14:00:28.4719466Z 15:00:28.468 | [135/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Physics2DModule.dll_FB7D84C282375FFB.mvfrm +2026-03-27T14:00:28.4730346Z 15:00:28.472 | [136/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PlayModeModule.dll_F62705C024726079.mvfrm +2026-03-27T14:00:28.4741621Z 15:00:28.473 | [137/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PhysicsModule.dll_F00B47872236D5A9.mvfrm +2026-03-27T14:00:28.4749784Z 15:00:28.474 | [138/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.MultiplayerModule.dll_2C16B6223FD3B5CC.mvfrm +2026-03-27T14:00:28.4760814Z 15:00:28.475 | [139/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.MediaModule.dll_6101DF18DF2EC866.mvfrm +2026-03-27T14:00:28.4771228Z 15:00:28.476 | [140/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.LevelPlayModule.dll_358D918212CF4CEA.mvfrm +2026-03-27T14:00:28.4780008Z 15:00:28.477 | [141/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.InAppPurchasingModule.dll_D6F0E879720C0A6C.mvfrm +2026-03-27T14:00:28.4790224Z 15:00:28.478 | [142/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.HierarchyModule.dll_83AC106DAA3C8467.mvfrm +2026-03-27T14:00:28.4818432Z 15:00:28.480 | [143/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GridModule.dll_70F1CF69848C0648.mvfrm +2026-03-27T14:00:28.4827764Z 15:00:28.482 | [144/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GridAndSnapModule.dll_ECF49BA7616D447D.mvfrm +2026-03-27T14:00:28.4836388Z 15:00:28.483 | [145/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_96380991EC5D45A5.mvfrm +2026-03-27T14:00:28.4844264Z 15:00:28.483 | [146/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphicsStateCollectionSerializerModule.dll_F982FF782BC86BE8.mvfrm +2026-03-27T14:00:28.4853268Z 15:00:28.484 | [147/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll.mvfrm.rsp +2026-03-27T14:00:28.4861919Z 15:00:28.485 | [148/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.rsp +2026-03-27T14:00:28.4870398Z 15:00:28.486 | [149/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_56FDE283D69FAB10.mvfrm +2026-03-27T14:00:28.4878810Z 15:00:28.487 | [150/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GIModule.dll_3402FF3597F892D4.mvfrm +2026-03-27T14:00:28.4888581Z 15:00:28.488 | [151/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.EmbreeModule.dll_6EAE6056F67F7CBA.mvfrm +2026-03-27T14:00:28.4961381Z 15:00:28.491 | [152/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.rsp2 +2026-03-27T14:00:28.4984104Z 15:00:28.496 | [153/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.UnityAdditionalFile.txt +2026-03-27T14:00:28.5019192Z 15:00:28.498 | [154/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll.mvfrm.rsp +2026-03-27T14:00:28.5064840Z 15:00:28.504 | [155/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.rsp +2026-03-27T14:00:28.5107309Z 15:00:28.509 | [156/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.dll_9560AEFC2AE2E874.mvfrm +2026-03-27T14:00:28.5116733Z 15:00:28.511 | [157/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_E33BB525DE08878E.mvfrm +2026-03-27T14:00:28.5126203Z 15:00:28.512 | [158/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_C6BF783E541C9768.mvfrm +2026-03-27T14:00:28.5134585Z 15:00:28.512 | [159/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AMDModule.dll_92029AEC8CA9A6EF.mvfrm +2026-03-27T14:00:28.5143864Z 15:00:28.513 | [160/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HierarchyModule.dll_399201568FBC364C.mvfrm +2026-03-27T14:00:28.5151843Z 15:00:28.514 | [161/170 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll.mvfrm +2026-03-27T14:00:28.5160151Z 15:00:28.515 | [161/170 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) [CacheHit 19b455e171463b58c6c2aa304125f0cb00000000000000000000000000000005] +2026-03-27T14:00:28.5172591Z 15:00:28.516 | [162/170 1774620027s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) +2026-03-27T14:00:28.5181733Z 15:00:28.517 | [164/170 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.dll +2026-03-27T14:00:28.5189644Z 15:00:28.518 | [165/170 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.pdb +2026-03-27T14:00:28.5198891Z 15:00:28.519 | [166/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Multiplayer.Center.Common.ref.dll_EE36537354EA42C8.mvfrm +2026-03-27T14:00:28.5285058Z 15:00:28.520 | [167/170 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll.mvfrm +2026-03-27T14:00:28.5332393Z 15:00:28.532 | [166/170 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) [CacheHit 47c15b7f6d1fc9c58f5a596b3def36ed00000000000000000000000000000005] +2026-03-27T14:00:28.5342083Z 15:00:28.533 | [168/170 1774620027s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) +2026-03-27T14:00:28.5349951Z 15:00:28.534 | [170/170 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.pdb +2026-03-27T14:00:28.5358138Z 15:00:28.535 | [171/170 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.dll +2026-03-27T14:00:28.5366622Z 15:00:28.536 | *** Tundra build success (16.70 seconds), 167 items updated, 170 evaluated +2026-03-27T14:00:28.5382656Z 15:00:28.537 | AssetDatabase: script compilation time: 26.196570s +2026-03-27T14:00:28.5395762Z 15:00:28.538 | Begin MonoManager ReloadAssembly +2026-03-27T14:00:28.9495522Z 15:00:28.947 | - Loaded All Assemblies, in 0.793 seconds +2026-03-27T14:00:28.9531560Z 15:00:28.951 | Start importing Assets using Guid(00000000000000001000000000000000) (DefaultImporter) -> (artifact id: '4b55c7cb15071bfc086d0e52a7664a41') in 0.0712909 seconds +2026-03-27T14:00:28.9546327Z 15:00:28.954 | Start importing ProjectSettings/InputManager.asset using Guid(00000000000000002000000000000000) (LibraryAssetImporter) -> (artifact id: '3d278bdfa729973ecf92c670ca181c88') in 0.012098 seconds +2026-03-27T14:00:28.9555946Z 15:00:28.955 | Start importing ProjectSettings/TagManager.asset using Guid(00000000000000003000000000000000) (LibraryAssetImporter) -> (artifact id: '4aa03ef27a83f311e598313a3ec2fbc3') in 0.0045133 seconds +2026-03-27T14:00:28.9564897Z 15:00:28.955 | Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) (LibraryAssetImporter) -> (artifact id: 'b13a03a10f08a5ec957bc9f7393258c6') in 0.0095841 seconds +2026-03-27T14:00:28.9577060Z 15:00:28.957 | Start importing ProjectSettings/AudioManager.asset using Guid(00000000000000006000000000000000) (LibraryAssetImporter) -> (artifact id: '7bb8de31f311db17f0fefe3abfd595f1') in 0.0043553 seconds +2026-03-27T14:00:28.9589788Z 15:00:28.958 | Start importing ProjectSettings/TimeManager.asset using Guid(00000000000000007000000000000000) (LibraryAssetImporter) -> (artifact id: '52c307e924e96ceef905bcc2cea85a00') in 0.0048442 seconds +2026-03-27T14:00:28.9599077Z 15:00:28.959 | Start importing ProjectSettings/DynamicsManager.asset using Guid(00000000000000008000000000000000) (LibraryAssetImporter) -> (artifact id: '1589700bfc0c355f73a0335651f82f22') in 0.0050461 seconds +2026-03-27T14:00:28.9609102Z 15:00:28.960 | Start importing ProjectSettings/QualitySettings.asset using Guid(00000000000000009000000000000000) (LibraryAssetImporter) -> (artifact id: '3d22d777d340243128ed3ffa349fb55a') in 0.0056181 seconds +2026-03-27T14:00:28.9616175Z 15:00:28.961 | Start importing ProjectSettings/EditorBuildSettings.asset using Guid(0000000000000000b000000000000000) (LibraryAssetImporter) -> (artifact id: '1923232d45cb936aef47cec131f33975') in 0.004597 seconds +2026-03-27T14:00:28.9649885Z 15:00:28.963 | Start importing ProjectSettings/EditorSettings.asset using Guid(0000000000000000c000000000000000) (LibraryAssetImporter) -> (artifact id: 'fdcca38f5f1944c9bec0b9f00395ab39') in 0.0046297 seconds +2026-03-27T14:00:28.9672399Z 15:00:28.965 | Start importing ProjectSettings/NavMeshAreas.asset using Guid(00000000000000004100000000000000) (LibraryAssetImporter) -> (artifact id: '4ba0a6bb5cc18b1619eb3b3f4ce570d1') in 0.0058307 seconds +2026-03-27T14:00:28.9683093Z 15:00:28.967 | Start importing ProjectSettings/Physics2DSettings.asset using Guid(00000000000000005100000000000000) (LibraryAssetImporter) +2026-03-27T14:00:29.3893830Z 15:00:29.385 | -> (artifact id: 'bb8ce7f5b2d944741959db20200075a7') in 0.0051252 seconds +2026-03-27T14:00:29.3920896Z 15:00:29.391 | Start importing ProjectSettings/GraphicsSettings.asset using Guid(00000000000000006100000000000000) (LibraryAssetImporter) -> (artifact id: 'b7a369a9c0780e3bb2635b3b3f88ffe1') in 0.0053065 seconds +2026-03-27T14:00:29.3927926Z 15:00:29.392 | Start importing ProjectSettings/ClusterInputManager.asset using Guid(00000000000000007100000000000000) (LibraryAssetImporter) -> (artifact id: '5a028a71a6163b7bc9a46219c48662ec') in 0.0051611 seconds +2026-03-27T14:00:29.3934245Z 15:00:29.392 | Start importing ProjectSettings/UnityConnectSettings.asset using Guid(0000000000000000a100000000000000) (LibraryAssetImporter) -> (artifact id: '5a6e69f8200d884ded3f19f546ea756a') in 0.0048537 seconds +2026-03-27T14:00:29.3940072Z 15:00:29.393 | Start importing ProjectSettings/PresetManager.asset using Guid(0000000000000000b100000000000000) (LibraryAssetImporter) -> (artifact id: '669bd2cb5cdf99ef516d1350fa42393e') in 0.0041537 seconds +2026-03-27T14:00:29.3945589Z 15:00:29.394 | Start importing ProjectSettings/VFXManager.asset using Guid(0000000000000000c100000000000000) (LibraryAssetImporter) -> (artifact id: 'dd6732d958402095937fd19a0cecb735') in 0.0064385 seconds +2026-03-27T14:00:29.3952590Z 15:00:29.394 | Start importing ProjectSettings/VersionControlSettings.asset using Guid(0000000000000000d100000000000000) (LibraryAssetImporter) -> (artifact id: 'b89f810c452b248c014f182ae5caa680') in 0.0081023 seconds +2026-03-27T14:00:29.3957790Z 15:00:29.395 | Start importing ProjectSettings/MemorySettings.asset using Guid(0000000000000000f100000000000000) (LibraryAssetImporter) -> (artifact id: '19f032dc933bd79e61da5c81f7ddd1ac') in 0.0061552 seconds +2026-03-27T14:00:29.3963437Z 15:00:29.395 | Start importing ProjectSettings/MultiplayerManager.asset using Guid(00000000000000000200000000000000) (LibraryAssetImporter) -> (artifact id: 'f060d13f2990d90fc35c577bb4111c66') in 0.0075819 seconds +2026-03-27T14:00:29.3991672Z 15:00:29.396 | Start importing Library/BuildInstructions using Guid(00000000000000002300000000000000) (DefaultImporter) -> (artifact id: 'ade3aeda13ad9960ede0e143cb33502a') in 0.0008569 seconds +2026-03-27T14:00:29.4002513Z 15:00:29.399 | Start importing Packages/com.unity.modules.imgui using Guid(c060426bfd6e82575228df6656368eaa) (DefaultImporter) -> (artifact id: '7d484ab5933192f91b6a2fb9f7498a1e') in 0.0009416 seconds +2026-03-27T14:00:29.4010756Z 15:00:29.400 | Start importing Packages/com.unity.modules.animation using Guid(1158e311a3101950348dcecb1bebc42d) (DefaultImporter) -> (artifact id: 'ad15220686cb46a8486da5a82128437e') in 0.0009407 seconds +2026-03-27T14:00:29.4042365Z 15:00:29.402 | Start importing Packages/com.unity.modules.xr using Guid(515638b803bef8599dbd6d5c8bdaa53e) (DefaultImporter) -> (artifact id: '5cc0ee7d1c42b8eaef23530dfcf3e4db') in 0.0007822 seconds +2026-03-27T14:00:29.4055307Z 15:00:29.405 | Start importing Packages/com.unity.modules.assetbundle using Guid(b219c86ce508e478367c0a46e1aa9fe4) (DefaultImporter) -> (artifact id: 'bc1ccff54e0e81e719a299f618cbc700') in 0.0009519 seconds +2026-03-27T14:00:29.4063619Z 15:00:29.405 | Start importing Packages/com.unity.multiplayer.center using Guid(63792d44a433f53ac2acfbb01766f6e3) (DefaultImporter) -> (artifact id: '7f943148eafd435c6cfcdd8c46be635c') in 0.000724 seconds +2026-03-27T14:00:29.4068450Z 15:00:29.406 | Start importing Packages/com.unity.modules.vectorgraphics using Guid(04c6898809c37620ac863cc2a5d7c4d0) (DefaultImporter) -> (artifact id: '680f930692278d51ab0cb47a297e0ebc') in 0.0008158 seconds +2026-03-27T14:00:29.4073833Z 15:00:29.407 | Start importing Packages/com.unity.modules.screencapture using Guid(5469ef0820152a4ae45d400fdc4626e4) (DefaultImporter) -> (artifact id: '1b898430acdbbeb6302342e1f16ef5fd') in 0.0007908 seconds +2026-03-27T14:00:29.4084140Z 15:00:29.408 | Start importing Packages/com.unity.modules.cloth using Guid(c4df1124e2787ee0c8d1a911de17ee73) (DefaultImporter) -> (artifact id: 'b88b693b590a4a0a52eea9c60170b5d2') in 0.0008087 seconds +2026-03-27T14:00:29.4095462Z 15:00:29.408 | Start importing Packages/com.unity.modules.imageconversion using Guid(850c54ee0b9e1aa740b1c67792eb1f26) (DefaultImporter) -> (artifact id: '77f78b27bd9bac81a00a007ef6f28867') in 0.000733 seconds +2026-03-27T14:00:29.4107084Z 15:00:29.409 | Start importing Packages/com.unity.modules.terrainphysics using Guid(95f85adeda79e994f011eb2152cf4fc9) (DefaultImporter) -> (artifact id: '361f0b2a768839d40a5a079492e0ff7f') in 0.0008339 seconds +2026-03-27T14:00:29.4119276Z 15:00:29.410 | Start importing Packages/com.unity.modules.unitywebrequest using Guid(c522a644a29fcab2eaf63298c118a65b) (DefaultImporter) -> (artifact id: 'd98f38a0b0a3a6ad84b730beb63727de') in 0.0007434 seconds +2026-03-27T14:00:29.4147308Z 15:00:29.412 | Start importing Packages/com.unity.modules.unitywebrequestassetbundle using Guid(d5f0b0adc6826e9dd3b72e292e8438be) (DefaultImporter) -> (artifact id: '4efb6f2729456c035f8d2599b921b1ba') in 0.0013628 seconds +2026-03-27T14:00:29.4155841Z 15:00:29.414 | Start importing Packages/com.unity.modules.subsystems using Guid(56b94a5b6990c879bb0f057719d1064b) (DefaultImporter) -> (artifact id: '04a7449add44c3b40bdab2ee56a390af') in 0.0010497 seconds +2026-03-27T14:00:29.4163552Z 15:00:29.415 | Start importing Packages/com.unity.modules.unityanalytics using Guid(d6c6a000a805f00649b36b542e8426c2) (DefaultImporter) -> (artifact id: '50e342d51c4bbc49e9992c96072b1439') in 0.0010697 seconds +2026-03-27T14:00:29.4168153Z 15:00:29.416 | Start importing Packages/com.unity.modules.physics using Guid(d6db7caf2e852b75ebb9c6098418179c) (DefaultImporter) -> (artifact id: 'b562405fb5bd1c9305c356f8cfe7a672') in 0.001057 seconds +2026-03-27T14:00:29.4179752Z 15:00:29.416 | Start importing Packages/com.unity.modules.vr using Guid(178008567c08e6d84014fa87825d10bb) (DefaultImporter) -> (artifact id: '73cec448275baf0a5bb22c2b6702dc1b') in 0.0008794 seconds +2026-03-27T14:00:29.4187459Z 15:00:29.418 | Start importing Packages/com.unity.modules.physics2d using Guid(376c84ea405e0f2b80562c23bb977216) (DefaultImporter) -> (artifact id: 'f030ba7c21f8c3d36c2700ba9484429e') in 0.0008155 seconds +2026-03-27T14:00:29.4193211Z 15:00:29.418 | Start importing Packages/com.unity.modules.wind using Guid(b77b1ad9c05af0412725856c6c53b037) (DefaultImporter) -> (artifact id: '61b7785e224d7c7b869e66861a5b4394') in 0.0007647 seconds +2026-03-27T14:00:29.4198506Z 15:00:29.419 | Start importing Packages/com.unity.modules.uielements using Guid(2808ba6bccb2478ec9c7209d8bf1f3cc) (DefaultImporter) -> (artifact id: '49f971d306aab8cb20ddbc00ca94734a') in 0.0007688 seconds +2026-03-27T14:00:29.4208651Z 15:00:29.420 | Start importing Packages/com.unity.modules.unitywebrequestaudio using Guid(38e3a8976f0b9c586b6dfbcef4e4066c) (DefaultImporter) -> (artifact id: 'd22a0a5dce520265216aede629a15820') in 0.000741 seconds +2026-03-27T14:00:29.4215625Z 15:00:29.421 | Start importing Packages/com.unity.modules.particlesystem using Guid(48b10b41f58d5b49717f376cda59eeb8) (DefaultImporter) -> (artifact id: '52931c3585e961751803a41152ba5f0c') in 0.0007614 seconds +2026-03-27T14:00:29.4222989Z 15:00:29.421 | Start importing Packages/com.unity.modules.accessibility using Guid(783ee1c8fd4414848db1be97aacf44fb) (DefaultImporter) -> (artifact id: '8e348ba1cb91a7a56d611c91d2d841c4') in 0.0007224 seconds +2026-03-27T14:00:29.4235035Z 15:00:29.422 | Start importing Packages/com.unity.modules.tilemap using Guid(09e28640d754a611467eebfb261ed749) (DefaultImporter) -> (artifact id: 'e25ff35afe7ee7ac44e2f5154ec1bf6d') in 0.0014177 seconds +2026-03-27T14:00:29.4242884Z 15:00:29.423 | Start importing Packages/com.unity.modules.ui using Guid(39728903e57c60021f80449a8bbc0096) (DefaultImporter) -> (artifact id: '9ba448b29b75a8a1f5c4c31201266424') in 0.0008929 seconds +2026-03-27T14:00:29.4253495Z 15:00:29.424 | Start importing Packages/com.unity.modules.androidjni using Guid(995c08a3305ff9f0dab5e86f340bd9a7) (DefaultImporter) -> (artifact id: 'cb17bea8d2250c1b95c120c742c59ba3') in 0.000927 seconds +2026-03-27T14:00:29.4258971Z 15:00:29.425 | Start importing Packages/com.unity.modules.adaptiveperformance using Guid(b975297a992381c1f3257d0e96892c8a) (DefaultImporter) -> (artifact id: '1e6f2dc93c835ec2b681bcb9564bfccc') in 0.0010721 seconds +2026-03-27T14:00:29.4265153Z 15:00:29.425 | Start importing Packages/com.unity.modules.hierarchycore using Guid(6b81377a4453ba7362eb3322f9bcc6c6) (DefaultImporter) -> (artifact id: 'b5ba94375de312bec58cfc03230046fb') in 0.0007715 seconds +2026-03-27T14:00:29.4270404Z 15:00:29.426 | Start importing Packages/com.unity.modules.vehicles using Guid(1cf2469083ffa484da4d78dd70d708e8) (DefaultImporter) -> (artifact id: '9c6c089c957cf9dd84e226d7cd597cc4') in 0.0007183 seconds +2026-03-27T14:00:29.4275468Z 15:00:29.427 | Start importing Packages/com.unity.modules.umbra using Guid(9c7c268fa6492449654839df69f2a2f4) (DefaultImporter) -> (artifact id: '281c95feba9f039879135a452ddf9925') in 0.0007488 seconds +2026-03-27T14:00:29.4288589Z 15:00:29.427 | Start importing Packages/com.unity.modules.unitywebrequestwww using Guid(dcc8c6e92b172a65719af5ddf47dd968) (DefaultImporter) -> (artifact id: '7f5a98437b302707aa44474c2ba685a9') in 0.0007417 seconds +2026-03-27T14:00:29.4296435Z 15:00:29.429 | Start importing Packages/com.unity.modules.jsonserialize using Guid(fc3a810351931f5e6183e16b9beb5563) (DefaultImporter) -> (artifact id: 'ae149b8f46567b37c6b77b16bb572fe8') in 0.0007655 seconds +2026-03-27T14:00:29.4303176Z 15:00:29.429 | Start importing Packages/com.unity.modules.director using Guid(2d142b475fbfb8cf12ba3a795194300a) (DefaultImporter) -> (artifact id: '048fe235c538004c98f298dced6201df') in 0.0007562 seconds +2026-03-27T14:00:29.4312187Z 15:00:29.430 | Start importing Packages/com.unity.modules.audio using Guid(2d6ba5cbe47e6ad3c87474c56174d4e0) (DefaultImporter) -> (artifact id: '2ad5535b0c9fde796c0a268a703c42c8') in 0.0008793 seconds +2026-03-27T14:00:29.4329131Z 15:00:29.431 | Start importing Packages/com.unity.modules.video using Guid(ede0462698a4a5643aa9872c074acd38) (DefaultImporter) -> (artifact id: '3172065d6af8ff17b025e0af8d219d15') in 0.0008594 seconds +2026-03-27T14:00:29.4334942Z 15:00:29.433 | Start importing Packages/com.unity.modules.ai using Guid(fd871a8be47119612f7c254e96a822b7) (DefaultImporter) -> (artifact id: '619e67a2820f0fb43e606df1f0c95aa2') in 0.0010662 seconds +2026-03-27T14:00:29.4341936Z 15:00:29.433 | Start importing Packages/com.unity.modules.terrain using Guid(6e1c8b97ec8aa0464e92506ffe099558) (DefaultImporter) -> (artifact id: 'd262e4fb78f6fff54404eb87b88b9ac4') in 0.0007358 seconds +2026-03-27T14:00:29.4350774Z 15:00:29.434 | Start importing Packages/com.unity.modules.unitywebrequesttexture using Guid(6f1c7ebc8ac78cb951be24c238cbd3ba) (DefaultImporter) -> (artifact id: '590a54cd80ec2a1da1d11f7ee409e01f') in 0.0008536 seconds +2026-03-27T14:00:29.4355706Z 15:00:29.435 | Start importing Packages/com.unity.multiplayer.center/Editor using Guid(72aad6ae0dafb492cbf852432441bb38) (DefaultImporter) -> (artifact id: '1472e7f5e610b0cbc5fd254e2d90e8af') in 0.0018551 seconds +2026-03-27T14:00:29.4365676Z 15:00:29.435 | Start importing Packages/com.unity.multiplayer.center/Common using Guid(f247964bd405431fbd31840f97bef608) (DefaultImporter) -> (artifact id: '80028f5919b4bee936c04608a509d2e3') in 0.0010363 seconds +2026-03-27T14:00:29.4377097Z 15:00:29.436 | Start importing Packages/com.unity.multiplayer.center/Tests using Guid(baf75c9d3de4941df9ee5f3dd1d3bc34) (DefaultImporter) -> (artifact id: 'c292f37aeb22efaba797eb1a89034c56') in 0.001263 seconds +2026-03-27T14:00:29.4382821Z 15:00:29.437 | Start importing Packages/com.unity.multiplayer.center/Editor/Analytics using Guid(21f32d2f4add49b3b11fadb6889a2156) (DefaultImporter) -> (artifact id: '51aff480448f490e143cac19c8fd77f7') in 0.0012573 seconds +2026-03-27T14:00:29.4392486Z 15:00:29.438 | Start importing Packages/com.unity.multiplayer.center/Editor/Features using Guid(22d3dbf8d488d49d2b1130d698010dee) (DefaultImporter) -> (artifact id: '97b7a3470b31512cc10a8dd26ae2abee') in 0.0017419 seconds +2026-03-27T14:00:29.4397802Z 15:00:29.439 | Start importing Packages/com.unity.multiplayer.center/Tests/Editor using Guid(96c71b811fa50403690b154e216fe217) (DefaultImporter) -> (artifact id: 'f201ce797b3b9aaf0bd388d6daf5c8a9') in 0.0012789 seconds +2026-03-27T14:00:29.4402870Z 15:00:29.439 | Start importing Packages/com.unity.multiplayer.center/Editor/OnBoarding using Guid(1726448925bf4bd1af6ca883bae8ff3f) (DefaultImporter) -> (artifact id: 'c547995c98e70de55ed7a0882b0b1d59') in 0.0012774 seconds +2026-03-27T14:00:29.4411860Z 15:00:29.440 | Start importing Packages/com.unity.multiplayer.center/Editor/Recommendations using Guid(97646f506bf040e9bd4568124c8b425e) (DefaultImporter) -> (artifact id: '2b67414499aad658981bbbe944dda5b8') in 0.0011142 seconds +2026-03-27T14:00:29.4417891Z 15:00:29.441 | Start importing Packages/com.unity.multiplayer.center/Editor/Questionnaire using Guid(a7f089ed51c2345ffb7ac0bc3562453f) (DefaultImporter) -> (artifact id: '91939e622deced05437de4135bda5ede') in 0.0011369 seconds +2026-03-27T14:00:29.4423005Z 15:00:29.441 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow using Guid(7a7dcde6448847648629a13d746ce966) (DefaultImporter) -> (artifact id: '25d35bc9e6545f61b784037e02201bc5') in 0.0016667 seconds +2026-03-27T14:00:29.4443839Z 15:00:29.442 | Start importing Packages/com.unity.multiplayer.center/Tests/Runtime using Guid(8e4d240cf158245a9945c4df01d83bc1) (DefaultImporter) -> (artifact id: '9afa31a007ea527f1ed301c6b16e63c9') in 0.0024186 seconds +2026-03-27T14:00:29.4458445Z 15:00:29.445 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI using Guid(9bd34ec3fe8f4aed936c3a0cf2f32e56) (DefaultImporter) -> (artifact id: 'b73da0b57dd0696387d727e85cb54e01') in 0.0012025 seconds +2026-03-27T14:00:29.4477138Z 15:00:29.447 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons using Guid(34a09eb4d6e8d44989194a25525c5147) (DefaultImporter) -> (artifact id: '6eef5c1301b509ae1757bc36a5ed6ea8') in 0.0019442 seconds +2026-03-27T14:00:29.4492374Z 15:00:29.448 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/RecommendationView using Guid(eab7f42d361b483aaa760c5909002312) (DefaultImporter) -> (artifact id: '8eb859fe06dd083b30bd9c27d3ce7755') in 0.0019235 seconds +2026-03-27T14:00:29.4499559Z 15:00:29.449 | Start importing Packages/com.unity.multiplayer.center/Common/Unity.Multiplayer.Center.Common.asmdef using Guid(84abd2ab34a74600a33a3bb9d72859fe) (AssemblyDefinitionImporter) -> (artifact id: '2e15fdfe053455410c46af8108d4b576') in 0.015078 seconds +2026-03-27T14:00:29.4508322Z 15:00:29.450 | Start importing Packages/com.unity.multiplayer.center/Tests/Runtime/Unity.Multiplayer.Center.Tests.asmdef using Guid(2664430aff4254d79887d32c3fc1e221) (AssemblyDefinitionImporter) -> (artifact id: '10a8b6cec249c3f1431650b35fb0b23f') in 0.0058546 seconds +2026-03-27T14:00:29.4515535Z 15:00:29.450 | Start importing Packages/com.unity.multiplayer.center/Tests/Editor/Unity.Multiplayer.Center.Editor.Tests.asmdef using Guid(787ec048daec145b580d1134da5dd278) (AssemblyDefinitionImporter) -> (artifact id: '29dc17f91cb2a01d8b6be8c932a8280d') in 0.006618 seconds +2026-03-27T14:00:29.4523397Z 15:00:29.451 | Start importing Packages/com.unity.multiplayer.center/Editor/Unity.Multiplayer.Center.Editor.asmdef using Guid(be17709716f1648caa5de6d0c38103ed) (AssemblyDefinitionImporter) -> (artifact id: '6ce86c22cc7899b0214f30e55df0ec5c') in 0.0064329 seconds +2026-03-27T14:00:29.4533639Z 15:00:29.452 | Start importing Packages/com.unity.modules.ui/package.ModuleCompilationTrigger using Guid(51fa60bb2bd1e5bc74e8cc95a7bfd5b7) (DefaultImporter) -> (artifact id: '237e32f9541121b786ca4b06eace0dfe') in 0.0530176 seconds +2026-03-27T14:00:29.4545046Z 15:00:29.453 | Start importing Packages/com.unity.modules.unityanalytics/package.ModuleCompilationTrigger using Guid(71136fc5cf34f2cc10be0e33c0b08019) (DefaultImporter) -> (artifact id: '9b0cf4eb7c767f90f530cd263ba24ee4') in 0.0013534 seconds +2026-03-27T14:00:29.4553791Z 15:00:29.454 | Start importing Packages/com.unity.modules.tilemap/package.ModuleCompilationTrigger using Guid(a1c42005fe7c5d78585a77ce396a5eea) (DefaultImporter) -> (artifact id: 'd923349cce1d10fbf9fab4491e59c38f') in 0.001268 seconds +2026-03-27T14:00:29.4561987Z 15:00:29.455 | Start importing Packages/com.unity.modules.hierarchycore/package.ModuleCompilationTrigger using Guid(d104359075a97392b803d3d5aebc77f7) (DefaultImporter) -> (artifact id: '5f087c93c58d9b1c35f89c539ed3a98d') in 0.0012798 seconds +2026-03-27T14:00:29.4570749Z 15:00:29.456 | Start importing Packages/com.unity.modules.assetbundle/package.ModuleCompilationTrigger using Guid(222fc39b0c85d800342910da2cd64781) (DefaultImporter) -> (artifact id: '9a6a8c4ae725acd0e4d082b2f7469352') in 0.0012029 seconds +2026-03-27T14:00:29.4602654Z 15:00:29.457 | Start importing Packages/com.unity.modules.unitywebrequest/package.ModuleCompilationTrigger using Guid(d2ec2d1228c8e67cdd913cb5609176a2) (DefaultImporter) -> (artifact id: '8af4f3e306c0241d03204a437a8fc5e0') in 0.0013911 seconds +2026-03-27T14:00:29.4613399Z 15:00:29.460 | Start importing Packages/com.unity.modules.ai/package.ModuleCompilationTrigger using Guid(e2d09a26ce46dc617b54e49a534ace20) (DefaultImporter) -> (artifact id: 'a71f1fd08e4e9bf1ecd2d64209645034') in 0.0013407 seconds +2026-03-27T14:00:29.4624234Z 15:00:29.461 | Start importing Packages/com.unity.modules.terrain/package.ModuleCompilationTrigger using Guid(23032f4383e95e772bce465c5896d0fd) (DefaultImporter) -> (artifact id: '491a7f75d3e9187fba07a3d515b1da29') in 0.0013291 seconds +2026-03-27T14:00:29.4631834Z 15:00:29.462 | Start importing Packages/com.unity.modules.imageconversion/package.ModuleCompilationTrigger using Guid(830a36a23cf3ab1e61fa47940a6dc35e) (DefaultImporter) -> (artifact id: 'ee0f0c801f95c19382d8b454dc7586e1') in 0.0012938 seconds +2026-03-27T14:00:29.4640824Z 15:00:29.463 | Start importing Packages/com.unity.modules.unitywebrequesttexture/package.ModuleCompilationTrigger using Guid(a31a332ce3485f00f7df8d987302a29c) (DefaultImporter) -> (artifact id: '5b56561b2c8cae5c48817dca1565364f') in 0.0013032 seconds +2026-03-27T14:00:29.4649630Z 15:00:29.464 | Start importing Packages/com.unity.modules.audio/package.ModuleCompilationTrigger using Guid(042dc296246916648e55a43d0eeb2036) (DefaultImporter) -> (artifact id: '93cfeb7be8bf6df4dc4fc167223dc2d5') in 0.001264 seconds +2026-03-27T14:00:29.4656979Z 15:00:29.465 | Start importing Packages/com.unity.modules.unitywebrequestaudio/package.ModuleCompilationTrigger using Guid(553737203d61a8109f9544a97201e1aa) (DefaultImporter) -> (artifact id: '29c8c1952ecab40326be6fe65bf2dc75') in 0.0012373 seconds +2026-03-27T14:00:29.4666256Z 15:00:29.466 | Start importing Packages/com.unity.modules.vr/package.ModuleCompilationTrigger using Guid(b5bd8fa6f4c55ab6f09322b86d18b0e3) (DefaultImporter) -> (artifact id: '7fb6f5a64a18b8abc92ffb2611727976') in 0.0012565 seconds +2026-03-27T14:00:29.4674230Z 15:00:29.466 | Start importing Packages/com.unity.modules.vehicles/package.ModuleCompilationTrigger using Guid(e5c46c19ce0ce2e0103aa6f82df1043a) (DefaultImporter) -> (artifact id: '4efeb502fc9ade03fc8da1a2020cc14d') in 0.0012031 seconds +2026-03-27T14:00:29.4683271Z 15:00:29.467 | Start importing Packages/com.unity.modules.unitywebrequestassetbundle/package.ModuleCompilationTrigger using Guid(7610600f5c83e01041a6fe849d39279f) (DefaultImporter) -> (artifact id: '5ea653cc184754456a13dd8d09c34205') in 0.0012494 seconds +2026-03-27T14:00:29.4695528Z 15:00:29.468 | Start importing Packages/com.unity.modules.jsonserialize/package.ModuleCompilationTrigger using Guid(e6a135e3ea9cb46795d1b0e05ac3e1e5) (DefaultImporter) -> (artifact id: '8d26f1c211bce77f7cf17eccccd57b0d') in 0.0013083 seconds +2026-03-27T14:00:29.4705071Z 15:00:29.469 | Start importing Packages/com.unity.modules.video/package.ModuleCompilationTrigger using Guid(f62135e79edb837b2d2ee3c524da864c) (DefaultImporter) -> (artifact id: '6ebda327ae83705f04de3efed3db9873') in 0.0012284 seconds +2026-03-27T14:00:29.4714131Z 15:00:29.470 | Start importing Packages/com.unity.modules.particlesystem/package.ModuleCompilationTrigger using Guid(17f093324b67f5bd57e55b546736750e) (DefaultImporter) -> (artifact id: '2ff549dcfdc7b1fa23811cebe1444f07') in 0.0013746 seconds +2026-03-27T14:00:29.4721228Z 15:00:29.471 | Start importing Packages/com.unity.modules.accessibility/package.ModuleCompilationTrigger using Guid(4745d06d5a7ca576dcf9e5e67b417652) (DefaultImporter) -> (artifact id: 'ae9e01646ac31a09b3de296582cd6de0') in 0.004085 seconds +2026-03-27T14:00:29.4729314Z 15:00:29.472 | Start importing Packages/com.unity.modules.xr/package.ModuleCompilationTrigger using Guid(c7a8b0317f4e68556d7509828e9e211e) (DefaultImporter) -> (artifact id: 'cff4c28c132f8374585e00aa928dde3a') in 0.0012784 seconds +2026-03-27T14:00:29.4748141Z 15:00:29.473 | Start importing Packages/com.unity.modules.cloth/package.ModuleCompilationTrigger using Guid(082fbee38a82835433261a5e9c00e267) (DefaultImporter) -> (artifact id: 'fb60fe65bd12026494280cd2600d4c8d') in 0.0024289 seconds +2026-03-27T14:00:29.4787634Z 15:00:29.477 | Start importing Packages/com.unity.modules.androidjni/package.ModuleCompilationTrigger using Guid(c82e859b16636ddd2ca4a1f63fd34938) (DefaultImporter) -> (artifact id: '28e4fd36d397729ef98ce8a6b5fe53a2') in 0.0029863 seconds +2026-03-27T14:00:29.4804723Z 15:00:29.479 | Start importing Packages/com.unity.modules.director/package.ModuleCompilationTrigger using Guid(c88e90bad18cceb5d182d0c805883056) (DefaultImporter) -> (artifact id: '8e742e385eae214c44fd937134cf600f') in 0.0028916 seconds +2026-03-27T14:00:29.4833921Z 15:00:29.480 | Start importing Packages/com.unity.modules.adaptiveperformance/package.ModuleCompilationTrigger using Guid(1af35a910338381f753e8a985eb5daab) (DefaultImporter) -> (artifact id: '867fce9a42b816ffb5ac55f16cf2007e') in 0.0012628 seconds +2026-03-27T14:00:29.4846804Z 15:00:29.483 | Start importing Packages/com.unity.modules.wind/package.ModuleCompilationTrigger using Guid(2adec19fac7df68adf1fd6eb83197bb1) (DefaultImporter) -> (artifact id: '7db7181525b7da8ee072e519f9529aab') in 0.0014119 seconds +2026-03-27T14:00:29.4857722Z 15:00:29.485 | Start importing Packages/com.unity.modules.uielements/package.ModuleCompilationTrigger using Guid(8a752aaaadd2410dd9a84e01c1bace9f) (DefaultImporter) -> (artifact id: 'ae37e7f0f1483578fc0d8d28fd17e0e2') in 0.0014825 seconds +2026-03-27T14:00:29.4866907Z 15:00:29.486 | Start importing Packages/com.unity.modules.umbra/package.ModuleCompilationTrigger using Guid(1b6246f2248883964991eac9e9b4817c) (DefaultImporter) -> (artifact id: 'd1507e2ccffaa842e8d211f5b4e1425f') in 0.001511 seconds +2026-03-27T14:00:29.4876300Z 15:00:29.487 | Start importing Packages/com.unity.modules.terrainphysics/package.ModuleCompilationTrigger using Guid(cbb1a39d56ce4d9ac1a46ac505893fa7) (DefaultImporter) -> (artifact id: '8d1d3ac1946fa5f9233e968059d3fb13') in 0.0022813 seconds +2026-03-27T14:00:29.4885479Z 15:00:29.487 | Start importing Packages/com.unity.modules.animation/package.ModuleCompilationTrigger using Guid(db8e609a39b9b231fccc54e5fa4cbd1b) (DefaultImporter) -> (artifact id: '76194af19b6b83e46d258b902c79f26f') in 0.0019927 seconds +2026-03-27T14:00:29.4909236Z 15:00:29.490 | Start importing Packages/com.unity.modules.vectorgraphics/package.ModuleCompilationTrigger using Guid(3cc1ebf2abb7fef6871ad48f499b6e21) (DefaultImporter) -> (artifact id: '51ba5d987381c742b47376b47674c513') in 0.0021354 seconds +2026-03-27T14:00:29.4917524Z 15:00:29.491 | Start importing Packages/com.unity.modules.physics/package.ModuleCompilationTrigger using Guid(5c1ee4056d0ac7ad3c5a16597fcaa38a) (DefaultImporter) -> (artifact id: '288b7a03d6481d4e92cee0ae908758ad') in 0.0012621 seconds +2026-03-27T14:00:29.4928132Z 15:00:29.492 | Start importing Packages/com.unity.modules.subsystems/package.ModuleCompilationTrigger using Guid(8d4bc6bfa28760b29f13174d6b6ea710) (DefaultImporter) -> (artifact id: '86683c86d6892e456463f75256ee724d') in 0.0011725 seconds +2026-03-27T14:00:29.4936424Z 15:00:29.493 | Start importing Packages/com.unity.modules.screencapture/package.ModuleCompilationTrigger using Guid(cd561f5f687aed43bf280c27a84f79e3) (DefaultImporter) -> (artifact id: '9675ccd07d8427f33d815eef637fd3c3') in 0.0015936 seconds +2026-03-27T14:00:29.4944587Z 15:00:29.493 | Start importing Packages/com.unity.modules.unitywebrequestwww/package.ModuleCompilationTrigger using Guid(ae87256f29d9c8b50490f4caf75b2c41) (DefaultImporter) -> (artifact id: '8a97098fbd52b5ae1a5755ce8a67debb') in 0.0012462 seconds +2026-03-27T14:00:29.4952887Z 15:00:29.494 | Start importing Packages/com.unity.modules.imgui/package.ModuleCompilationTrigger using Guid(be13c398521e3c1ad21fb9da30ab2ab6) (DefaultImporter) -> (artifact id: 'ea0574aa05344c7e80357502346d73fc') in 0.0012934 seconds +2026-03-27T14:00:29.4961770Z 15:00:29.495 | Start importing Packages/com.unity.modules.physics2d/package.ModuleCompilationTrigger using Guid(fe6a6957b37b61417b457a1e0541791d) (DefaultImporter) -> (artifact id: 'a5a6ae7d64235baf32ceb35097cc3c10') in 0.0013498 seconds +2026-03-27T14:00:29.4970697Z 15:00:29.496 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. +2026-03-27T14:00:29.9051774Z 15:00:29.903 | Native extension for iOS target not found +2026-03-27T14:00:29.9083055Z 15:00:29.905 | Native extension for Android target not found +2026-03-27T14:00:29.9164267Z 15:00:29.910 | Native extension for WindowsStandalone target not found +2026-03-27T14:00:30.7571426Z 15:00:30.753 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True +2026-03-27T14:00:30.7577130Z 15:00:30.757 | Mono: successfully reloaded assembly +2026-03-27T14:00:30.7583150Z 15:00:30.757 | - Finished resetting the current domain, in 1.265 seconds +2026-03-27T14:00:30.7591286Z 15:00:30.758 | Domain Reload Profiling: 2038ms +2026-03-27T14:00:30.7597287Z 15:00:30.759 | BeginReloadAssembly (555ms) +2026-03-27T14:00:30.7604336Z 15:00:30.759 | ExecutionOrderSort (0ms) +2026-03-27T14:00:30.7611030Z 15:00:30.760 | DisableScriptedObjects (38ms) +2026-03-27T14:00:30.7621878Z 15:00:30.761 | BackupInstance (0ms) +2026-03-27T14:00:30.7629043Z 15:00:30.762 | ReleaseScriptingObjects (0ms) +2026-03-27T14:00:30.7636263Z 15:00:30.763 | CreateAndSetChildDomain (194ms) +2026-03-27T14:00:30.7643900Z 15:00:30.763 | RebuildCommonClasses (60ms) +2026-03-27T14:00:30.7650497Z 15:00:30.764 | RebuildNativeTypeToScriptingClass (21ms) +2026-03-27T14:00:30.7656125Z 15:00:30.765 | initialDomainReloadingComplete (50ms) +2026-03-27T14:00:30.7661812Z 15:00:30.765 | LoadAllAssembliesAndSetupDomain (87ms) +2026-03-27T14:00:30.7667223Z 15:00:30.766 | LoadAssemblies (217ms) +2026-03-27T14:00:30.7673261Z 15:00:30.766 | RebuildTransferFunctionScriptingTraits (0ms) +2026-03-27T14:00:30.7682096Z 15:00:30.767 | AnalyzeDomain (61ms) +2026-03-27T14:00:30.7704362Z 15:00:30.769 | TypeCache.Refresh (54ms) +2026-03-27T14:00:30.7710217Z 15:00:30.770 | TypeCache.ScanAssembly (36ms) +2026-03-27T14:00:30.7716037Z 15:00:30.771 | BuildScriptInfoCaches (3ms) +2026-03-27T14:00:30.7721807Z 15:00:30.771 | ResolveRequiredComponents (1ms) +2026-03-27T14:00:30.7727363Z 15:00:30.772 | FinalizeReload (1265ms) +2026-03-27T14:00:30.7734087Z 15:00:30.772 | ReleaseScriptCaches (0ms) +2026-03-27T14:00:30.7746486Z 15:00:30.773 | RebuildScriptCaches (0ms) +2026-03-27T14:00:30.7754514Z 15:00:30.774 | SetupLoadedEditorAssemblies (983ms) +2026-03-27T14:00:30.7767855Z 15:00:30.775 | LogAssemblyErrors (0ms) +2026-03-27T14:00:30.7780856Z 15:00:30.777 | InitializePlatformSupportModulesInManaged (427ms) +2026-03-27T14:00:30.7794169Z 15:00:30.778 | SetLoadedEditorAssemblies (7ms) +2026-03-27T14:00:30.7823191Z 15:00:30.779 | BeforeProcessingInitializeOnLoad (226ms) +2026-03-27T14:00:30.7850777Z 15:00:30.783 | ProcessInitializeOnLoadAttributes (232ms) +2026-03-27T14:00:30.7858126Z 15:00:30.785 | ProcessInitializeOnLoadMethodAttributes (63ms) +2026-03-27T14:00:30.7864645Z 15:00:30.786 | AfterProcessingInitializeOnLoad (28ms) +2026-03-27T14:00:30.7897141Z 15:00:30.786 | EditorAssembliesLoaded (0ms) +2026-03-27T14:00:30.7925080Z 15:00:30.791 | ExecutionOrderSort2 (0ms) +2026-03-27T14:00:30.7933036Z 15:00:30.792 | AwakeInstancesAfterBackupRestoration (51ms) +2026-03-27T14:00:31.1977958Z 15:00:31.197 | Start importing Library/BuildPlayer.prefs using Guid(00000000000000005000000000000000) (DefaultImporter) -> (artifact id: '083d37eb6b0e82b8f5c1ec86344d848d') in 0.008913 seconds +2026-03-27T14:00:31.1986909Z 15:00:31.198 | Start importing Packages/com.unity.multiplayer.center/Editor/Questionnaire/Questionnaire.questionnaire using Guid(a659150180ae3489ba41c71780ba3779) (DefaultImporter) -> (artifact id: 'f015c12481ca2ebbe281edf6a5646fdb') in 0.0068088 seconds +2026-03-27T14:00:31.1992604Z 15:00:31.198 | Start importing Packages/com.unity.multiplayer.center/Editor/Recommendations/RecommendationData_6000.0.recommendations using Guid(b66d076cdcfe3b14388de66307a0e7ff) (DefaultImporter) -> (artifact id: '1cc2974bd6a9df6f05cc50707f3dca04') in 0.0059014 seconds +2026-03-27T14:00:31.1997805Z 15:00:31.199 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageInstalled@2x.png using Guid(318df756abab5463e9aa361360784865) (TextureImporter) -> (artifact id: 'd48b04cc49cfa733cc56cf9477ff17a9') in 0.0281705 seconds +2026-03-27T14:00:31.2004143Z 15:00:31.199 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Loading.png using Guid(424a8de5def3b46dcb08edd00ad1c7bd) (TextureImporter) -> (artifact id: '3a61c62f382fe54871391a248e6152e2') in 0.0103432 seconds +2026-03-27T14:00:31.2009527Z 15:00:31.200 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Package.png using Guid(525a6cca8dd9a4d28875a8fe824710d9) (TextureImporter) -> (artifact id: '548f73066cab3a98e858aa8efe72dbb9') in 0.0079172 seconds +2026-03-27T14:00:31.2014671Z 15:00:31.201 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CloudCode@2x.png using Guid(a23c0dd570fd44b57a03a8880002fcca) (TextureImporter) -> (artifact id: 'ef7b4e60e001d8ea37396d65cd011a01') in 0.0119496 seconds +2026-03-27T14:00:31.2020197Z 15:00:31.201 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/ClientHosted.png using Guid(b2ce704e56cc84fb3b347499263c6244) (TextureImporter) -> (artifact id: '3c47d40f72c24fed50a1732d92b43a18') in 0.0075237 seconds +2026-03-27T14:00:31.2025367Z 15:00:31.202 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DistributedAuthority@2x.png using Guid(0354877031b64465ea7e5cafea1a2653) (TextureImporter) -> (artifact id: 'f80c791064e9ca756275e82b5271b61e') in 0.0094129 seconds +2026-03-27T14:00:31.2031463Z 15:00:31.202 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NGO@2x.png using Guid(83b28bcaaf34b4fd580114fb05d9f160) (TextureImporter) -> (artifact id: 'a8e9e7005ad411d5abe21dbe0151a322') in 0.0072935 seconds +2026-03-27T14:00:31.2042145Z 15:00:31.203 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageInstalled@2x.png using Guid(0423146d9f51c4563a0f2a8200b6cd38) (TextureImporter) -> (artifact id: 'd5052ecff5a0e604c1c9719435a32c25') in 0.0056031 seconds +2026-03-27T14:00:31.2069113Z 15:00:31.206 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Questionnaire.png using Guid(741761e72e6f24446bd8ba03ea3d0261) (TextureImporter) -> (artifact id: 'cbc7c83ec1aed6dc9d6245966761d44e') in 0.006061 seconds +2026-03-27T14:00:31.2074639Z 15:00:31.206 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/EmptyViewIcon.png using Guid(84e4bbd00035e4671bf14e0380a89001) (TextureImporter) -> (artifact id: '7205c2313fc29d3cad68ca5a54e1b27b') in 0.0094287 seconds +2026-03-27T14:00:31.2080134Z 15:00:31.207 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageManager@2x.png using Guid(9431e8221045c4af189b2fa7174b9e9f) (TextureImporter) -> (artifact id: '264cf9a117a9025669ca3f09b02973db') in 0.0069062 seconds +2026-03-27T14:00:31.2085082Z 15:00:31.208 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NoNetcode@2x.png using Guid(b58a826ca804e4c67bab4283ad5a6102) (TextureImporter) -> (artifact id: 'b0b56a9fa0db7c164e475c2f65e61cbe') in 0.0101539 seconds +2026-03-27T14:00:31.2099548Z 15:00:31.208 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageInstalled.png using Guid(4616b2fa4acd1429e931835b80966c2a) (TextureImporter) -> (artifact id: '196e04625a01a3026b3390f771abd240') in 0.0058984 seconds +2026-03-27T14:00:31.2192325Z 15:00:31.211 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageManager@2x.png using Guid(a6fd0c627f5aa48fa81512221e70a11e) (TextureImporter) -> (artifact id: '9ef9c1ca17a15d3c1f71ad30bf753cda') in 0.0095031 seconds +2026-03-27T14:00:31.2204467Z 15:00:31.219 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DistributedAuthority.png using Guid(d63245ece6d8f476c8c7ca24da9937f6) (TextureImporter) -> (artifact id: '0449910d6d0fa524c5d4d2aa18d3c617') in 0.0088536 seconds +2026-03-27T14:00:31.2215545Z 15:00:31.220 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageManager.png using Guid(679f9999c6f8f497e806a2d5d0511879) (TextureImporter) -> (artifact id: '950fc3cecccddc5b0caedc3a2d8fd3e8') in 0.0072127 seconds +2026-03-27T14:00:31.2222006Z 15:00:31.221 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageInstalled.png using Guid(77be953cf28de42a4ad8532539fef3f5) (TextureImporter) -> (artifact id: 'ec4dc4c3db3783cf0c4fc2b80aa18e21') in 0.0064152 seconds +2026-03-27T14:00:31.2233281Z 15:00:31.222 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/ClientHosted@2x.png using Guid(c7a38e6eccbfc49778cb8b77f594a971) (TextureImporter) -> (artifact id: '6251398aad25a809c32c57dbe83235cf') in 0.0119353 seconds +2026-03-27T14:00:31.2252646Z 15:00:31.224 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CustomNetcode@2x.png using Guid(d7711b0cc806d430b8a95f1e33ec3649) (TextureImporter) -> (artifact id: '6f3e1b3dc451395a96a4728754595b2f') in 0.0094815 seconds +2026-03-27T14:00:31.2316274Z 15:00:31.230 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DedicatedServer@2x.png using Guid(38b78df4a34c94fa6a52c90239606ff1) (TextureImporter) -> (artifact id: 'd91aea1ae284307874e87b940479e766') in 0.0093527 seconds +2026-03-27T14:00:31.2333145Z 15:00:31.232 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Check.png using Guid(29395f0639574c1fbc8b729aa257fb84) (TextureImporter) -> (artifact id: 'f0b7cb6f2538b4c9bccdf390ba8a60e8') in 0.007923 seconds +2026-03-27T14:00:31.2342565Z 15:00:31.233 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NGO.png using Guid(99da7b3894f364efdb5fa1443952a55d) (TextureImporter) -> (artifact id: 'a0ebe5e72b14bf97ed88e7d459bbf1f9') in 0.0090683 seconds +2026-03-27T14:00:31.2350009Z 15:00:31.234 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/N4E.png using Guid(e9669051ff70449b5923861e0e0b8838) (TextureImporter) -> (artifact id: '7ed7b750f3f48f580fdda0b466d37a77') in 0.0115231 seconds +2026-03-27T14:00:31.2358086Z 15:00:31.235 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/EmptyViewIcon@2x.png using Guid(2adffcc506285402aa795dee6f3166d0) (TextureImporter) -> (artifact id: '1d839d66657871a414fc929d5a42aab0') in 0.0424474 seconds +2026-03-27T14:00:31.2365592Z 15:00:31.235 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Loading.png using Guid(dab91f148d99946e7b3c3a87ecf4b973) (TextureImporter) -> (artifact id: '4c72953fd071d95522f476ee9ea21c7f') in 0.0139309 seconds +2026-03-27T14:00:31.2375784Z 15:00:31.236 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageManager.png using Guid(1b4c88814ec6241eb8e327515399c006) (TextureImporter) -> (artifact id: '973e2e8c7e71cae5915c961bcdecac4a') in 0.0090978 seconds +2026-03-27T14:00:31.2383873Z 15:00:31.237 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/N4E@2x.png using Guid(2cb589d4e01184d928bb698f06e77561) (TextureImporter) -> (artifact id: 'd53826b6fbbfe6fbfef490c7c373a470') in 0.0136548 seconds +2026-03-27T14:00:31.2390178Z 15:00:31.238 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CustomNetcode.png using Guid(dce12af736e0a4a1ba35d6424f897dc9) (TextureImporter) -> (artifact id: '4dfa7c2b0de2b4daf193614f6a9e55b6') in 0.0068111 seconds +2026-03-27T14:00:31.2396104Z 15:00:31.239 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NoNetcode.png using Guid(1daed49eec0f94f7ebb36dfef6159884) (TextureImporter) +2026-03-27T14:00:31.6539321Z 15:00:31.647 | -> (artifact id: 'ed932467a20a21d754e72a3be4641e64') in 0.0978888 seconds +2026-03-27T14:00:31.6550679Z 15:00:31.654 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Package.png using Guid(9d9689eab72c8480c90679f4dcf18820) (TextureImporter) -> (artifact id: 'ca7b139d23bc53ca0c7a574a931814db') in 0.0053292 seconds +2026-03-27T14:00:31.6560821Z 15:00:31.655 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CloudCode.png using Guid(ad1d29f4654194951a3c8bf507914d05) (TextureImporter) -> (artifact id: 'd461dd95b7bde19e59c141a5db1892e0') in 0.0058591 seconds +2026-03-27T14:00:31.6576626Z 15:00:31.656 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Questionnaire.png using Guid(dd70cd654275d47db807e918055e004f) (TextureImporter) -> (artifact id: '14fd0c8e541999237ea78674c0eedc1e') in 0.0065441 seconds +2026-03-27T14:00:31.6588179Z 15:00:31.658 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DedicatedServer.png using Guid(3fe892784421e47f5aa40c2784a6cb3e) (TextureImporter) -> (artifact id: 'ed593a26d941302ec21c6a465bdf28dc') in 0.0058546 seconds +2026-03-27T14:00:31.6594119Z 15:00:31.658 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Check.png using Guid(4f78a544322c742b89e63fb68557b1d2) (TextureImporter) -> (artifact id: '53279925e75b5263fd0ca9ed0c91a8a3') in 0.0069381 seconds +2026-03-27T14:00:31.6602631Z 15:00:31.659 | Start importing Packages/com.unity.modules.subsystems/package.json using Guid(30b312a167534621b316172253b08723) (PackageManifestImporter) -> (artifact id: '5fddaf95e1048f20ba7f7820d94a41a8') in 0.0069485 seconds +2026-03-27T14:00:31.6617111Z 15:00:31.661 | Start importing Packages/com.unity.modules.jsonserialize/package.json using Guid(40bf3cec17fa0b49fe04443c8332d638) (PackageManifestImporter) -> (artifact id: '4c54406cdf6f27a0dfd74653ac191550') in 0.0059526 seconds +2026-03-27T14:00:31.6626232Z 15:00:31.662 | Start importing Packages/com.unity.multiplayer.center/LICENSE.md using Guid(70554f6c9e4114e1084bb38f9ea400ce) (TextScriptImporter) -> (artifact id: 'c4bd63aaea861ad58925ef6690300eb1') in 0.0069744 seconds +2026-03-27T14:00:31.6654299Z 15:00:31.664 | Start importing Packages/com.unity.modules.screencapture/package.json using Guid(80beef77cb19e713c7c2d481b65ed485) (PackageManifestImporter) -> (artifact id: '2f4796478e898a299d67d69a4e932b6a') in 0.0051002 seconds +2026-03-27T14:00:31.6669133Z 15:00:31.666 | Start importing Packages/com.unity.modules.cloth/package.json using Guid(906c12bc9cd95d3963c6d58f62522c78) (PackageManifestImporter) -> (artifact id: '3d693bca45ffae6fac5cd7db888ef115') in 0.0055495 seconds +2026-03-27T14:00:31.6677367Z 15:00:31.667 | Start importing Packages/com.unity.modules.unitywebrequesttexture/package.json using Guid(d0e3ad91972c66f5238f5b9b7d5ae58a) (PackageManifestImporter) -> (artifact id: 'e55c9ecf8b6cd2df41ad2d48f83627ef') in 0.0073671 seconds +2026-03-27T14:00:31.6690419Z 15:00:31.668 | Start importing Packages/com.unity.modules.ai/package.json using Guid(f0f13f2ab3d6d13cfc6e4656824bfca8) (PackageManifestImporter) -> (artifact id: '993ffce69848b7fc2884f536f4e72d66') in 0.0055982 seconds +2026-03-27T14:00:31.6745968Z 15:00:31.674 | Start importing Packages/com.unity.modules.assetbundle/package.json using Guid(e1ef8466c8fd01a549f10baa4d51fa17) (PackageManifestImporter) -> (artifact id: 'bd1378d04a55ff92f406f64b548a4dfc') in 0.006065 seconds +2026-03-27T14:00:31.6754363Z 15:00:31.674 | Start importing Packages/com.unity.modules.imgui/package.json using Guid(42fe78c8fe682715a2cb531422e6ccb3) (PackageManifestImporter) -> (artifact id: 'b643c636c8e55776455f8adce1983951') in 0.0061862 seconds +2026-03-27T14:00:31.6809343Z 15:00:31.677 | Start importing Packages/com.unity.modules.tilemap/package.json using Guid(92a378669877c05c6071d0fed687bb95) (PackageManifestImporter) -> (artifact id: '4056b6dbe265f7ea644917ceb3d938ad') in 0.0059452 seconds +2026-03-27T14:00:31.6825225Z 15:00:31.681 | Start importing Packages/com.unity.modules.accessibility/package.json using Guid(43674d438e19b89d7fe6af07234f3252) (PackageManifestImporter) -> (artifact id: '9a98f0a4a23cfb2780f9ebc86419c8bb') in 0.0052729 seconds +2026-03-27T14:00:31.7046808Z 15:00:31.683 | Start importing Packages/com.unity.multiplayer.center/README.md using Guid(c359bcaf4a0bc4040aac650bf14ec619) (TextScriptImporter) -> (artifact id: '1479d3316a4547e823ef71ef56c076f5') in 0.0052233 seconds +2026-03-27T14:00:31.7149267Z 15:00:31.711 | Start importing Packages/com.unity.modules.terrainphysics/package.json using Guid(d3cbe921f7b3d9a3257e7c61a5761796) (PackageManifestImporter) -> (artifact id: 'f5e2c961ee3d9c345b9cfb0721893363') in 0.0054937 seconds +2026-03-27T14:00:31.7163361Z 15:00:31.715 | Start importing Packages/com.unity.modules.unitywebrequestassetbundle/package.json using Guid(05f7f519769978b79b31d063a7fc6fa1) (PackageManifestImporter) -> (artifact id: '4f2160dda0ab469cf2df5b0cd4f92db7') in 0.0132719 seconds +2026-03-27T14:00:31.7184936Z 15:00:31.717 | Start importing Packages/com.unity.modules.imageconversion/package.json using Guid(953fab16d15d5885b3600fcd6388b2ad) (PackageManifestImporter) -> (artifact id: '4914195fadd462954a635b65250787ed') in 0.0116902 seconds +2026-03-27T14:00:31.7192540Z 15:00:31.718 | Start importing Packages/com.unity.modules.unityanalytics/package.json using Guid(26a4f29db434fd79025c91f6126382cc) (PackageManifestImporter) -> (artifact id: '4f55ed6c07c9d593d430c69b12caecd5') in 0.0188001 seconds +2026-03-27T14:00:31.7200899Z 15:00:31.719 | Start importing Packages/com.unity.modules.video/package.json using Guid(96d14b71b907bb52333b2886e665aba6) (PackageManifestImporter) -> (artifact id: '5663ce496606d4af708204c817adcf41') in 0.0084005 seconds +2026-03-27T14:00:31.7210930Z 15:00:31.720 | Start importing Packages/com.unity.modules.particlesystem/package.json using Guid(87d720faa37005c08600090e04d8c739) (PackageManifestImporter) -> (artifact id: 'd6aa8c20d84b997ec285a739a17be19d') in 0.0046294 seconds +2026-03-27T14:00:31.7219098Z 15:00:31.721 | Start importing Packages/com.unity.modules.physics2d/package.json using Guid(f7a8357347c80dc69c08d0b1a05e2122) (PackageManifestImporter) -> (artifact id: 'e2187f6cfb7435ccc7f0487e9567b857') in 0.0044709 seconds +2026-03-27T14:00:31.7320608Z 15:00:31.722 | Start importing Packages/com.unity.modules.vr/package.json using Guid(18a4fadfef534684d5af39ca8dc48fe9) (PackageManifestImporter) -> (artifact id: '84052aabb171f6ab790f35d596f62a3c') in 0.0056422 seconds +2026-03-27T14:00:31.7329807Z 15:00:31.732 | Start importing Packages/com.unity.modules.vectorgraphics/package.json using Guid(78e5667e52329c3ceef41288763404ae) (PackageManifestImporter) -> (artifact id: '8bda5c963352e20d9c07831179d6adc4') in 0.0048755 seconds +2026-03-27T14:00:31.7342568Z 15:00:31.733 | Start importing Packages/com.unity.modules.wind/package.json using Guid(b83f06ac0c0696e9563230865ca72b81) (PackageManifestImporter) -> (artifact id: '48870b0fad529c24ec23948838d08134') in 0.0083518 seconds +2026-03-27T14:00:31.7352166Z 15:00:31.734 | Start importing Packages/com.unity.multiplayer.center/Third Party Notices.md using Guid(c8f6fa942856442b8bd72594d3ce7363) (TextScriptImporter) -> (artifact id: 'f117005acc7b64b33c08eea913553eaf') in 0.0060749 seconds +2026-03-27T14:00:31.7385076Z 15:00:31.735 | Start importing Packages/com.unity.modules.umbra/package.json using Guid(d85e5eeaf8f135aeaaebdc8aa3cff6c3) (PackageManifestImporter) -> (artifact id: '6d849251c9e4cdd9848460d7e0ea0550') in 0.0060887 seconds +2026-03-27T14:00:31.7687493Z 15:00:31.742 | Start importing Packages/com.unity.modules.audio/package.json using Guid(e9df95f53f1c1d0c9199e235d6c42b50) (PackageManifestImporter) -> (artifact id: '14bdb854ae6daae762f5873a0a889a4a') in 0.0081343 seconds +2026-03-27T14:00:31.7908509Z 15:00:31.772 | Start importing Packages/com.unity.modules.physics/package.json using Guid(1a4266815e998967becf686f9c71f0a6) (PackageManifestImporter) -> (artifact id: '4fbeefd29956a8cb2b920ec02d72eda6') in 0.0070132 seconds +2026-03-27T14:00:31.8158354Z 15:00:31.798 | Start importing Packages/com.unity.modules.vehicles/package.json using Guid(6afb166a156df2d20433d981f4bb2832) (PackageManifestImporter) -> (artifact id: '16ef665dac3746b447ea167f980da255') in 0.005553 seconds +2026-03-27T14:00:31.8186785Z 15:00:31.818 | Start importing Packages/com.unity.modules.unitywebrequestwww/package.json using Guid(fa27413e9edb06a6058d6c894eca0338) (PackageManifestImporter) -> (artifact id: '544e02c2e4fff416b5755915f1fd3dbb') in 0.0103842 seconds +2026-03-27T14:00:31.8199461Z 15:00:31.819 | Start importing Packages/com.unity.multiplayer.center/CHANGELOG.md using Guid(3bbd27b3dd7be4a74aeab8da6b0af5cc) (TextScriptImporter) -> (artifact id: 'cc786d9fe9f62ad8c73bc5c3c7572c6b') in 0.0103128 seconds +2026-03-27T14:00:31.8208711Z 15:00:31.820 | Start importing Packages/com.unity.modules.unitywebrequestaudio/package.json using Guid(4b518b37798c97b0f860962cbf615533) (PackageManifestImporter) -> (artifact id: 'ef897d7e225c33dae9315c5417c1634d') in 0.0090192 seconds +2026-03-27T14:00:31.8215259Z 15:00:31.821 | Start importing Packages/com.unity.modules.hierarchycore/package.json using Guid(9b1a5759726ef9d39a0ab82047b615f1) (PackageManifestImporter) -> (artifact id: '2c156e03cb13bcc2a06b8c9b0a7a8ac4') in 0.0108199 seconds +2026-03-27T14:00:31.8221553Z 15:00:31.821 | Start importing Packages/com.unity.modules.xr/package.json using Guid(2c814623cb42764d304be0c5ddd03ceb) (PackageManifestImporter) -> (artifact id: '5cf90f838d6837d1fee4108bf50e9644') in 0.0052047 seconds +2026-03-27T14:00:31.8227508Z 15:00:31.822 | Start importing Packages/com.unity.modules.adaptiveperformance/package.json using Guid(4c413a81cadcce7038e446e56570117e) (PackageManifestImporter) -> (artifact id: 'a6f258ba23d61d479758aecde11c60fd') in 0.0051042 seconds +2026-03-27T14:00:31.8233443Z 15:00:31.822 | Start importing Packages/com.unity.modules.director/package.json using Guid(ec02776fe29df900b897106d61977735) (PackageManifestImporter) -> (artifact id: '050663fa3328fcc8ba0607ef180c9ff4') in 0.0049231 seconds +2026-03-27T14:00:31.8242762Z 15:00:31.823 | Start importing Packages/com.unity.modules.terrain/package.json using Guid(6d56244f8c39a851975d3c0bd432c66f) (PackageManifestImporter) -> (artifact id: '7f03c5409fa603fad1c4d8ccf7d0f4c3') in 0.008766 seconds +2026-03-27T14:00:31.8248660Z 15:00:31.824 | Start importing Packages/com.unity.modules.androidjni/package.json using Guid(bd1af0a6633ee94ae21c7d1d702cdc12) (PackageManifestImporter) -> (artifact id: 'e8484e022b3ccedd12256bf63c408f83') in 0.0056139 seconds +2026-03-27T14:00:31.8256184Z 15:00:31.825 | Start importing Packages/com.unity.modules.animation/package.json using Guid(7ef8348b8ea834d7e1bc214b07f7fb87) (PackageManifestImporter) -> (artifact id: '0ce165297b0905ed3c714c8d81c161e8') in 0.0061315 seconds +2026-03-27T14:00:31.8266749Z 15:00:31.825 | Start importing Packages/com.unity.modules.unitywebrequest/package.json using Guid(3fdd83b151eb8d25c5e2f82fc39dcb04) (PackageManifestImporter) -> (artifact id: 'dd8e3d3d718b3295cafb73aeafc2d7e8') in 0.0058457 seconds +2026-03-27T14:00:31.8273774Z 15:00:31.826 | Start importing Packages/com.unity.modules.uielements/package.json using Guid(4f0f9b9f3ed97ad2b9ba8f1a8e4666c2) (PackageManifestImporter) -> (artifact id: 'b4bf06aa21c6a6487308088a12a0a110') in 0.0068086 seconds +2026-03-27T14:00:31.8279129Z 15:00:31.827 | Start importing Packages/com.unity.modules.ui/package.json using Guid(bfd567a3d1631a761bca9e99fa53d86d) (PackageManifestImporter) -> (artifact id: 'b6a9b41c4f747864b57f61357f87e39b') in 0.0047182 seconds +2026-03-27T14:00:31.8285778Z 15:00:31.828 | Start importing Packages/com.unity.multiplayer.center/package.json using Guid(df0857f6a11054383be91b1f8e1b5800) (PackageManifestImporter) -> (artifact id: 'f7d7a4be8267ea77ff8fe0735c13d1dd') in 0.0061184 seconds +2026-03-27T14:00:31.8293744Z 15:00:31.828 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/light.uss using Guid(f1ac2efb1bcd4dfd95dc196ed3c11367) (ScriptedImporter) -> (artifact id: '458bf44e1ac492fdc83fab3f0ce4a01f') in 0.1339678 seconds +2026-03-27T14:00:31.8300636Z 15:00:31.829 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/dark.uss using Guid(1984cd07fe96417f9e88f5771f6b4b32) (ScriptedImporter) -> (artifact id: 'e3f46b2f53ad9be56c19483d28960867') in 0.0380753 seconds +2026-03-27T14:00:31.8305394Z 15:00:31.830 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/MultiplayerCenterWindow.uss using Guid(bac00d6e07f0b4305bb395363c89d92b) (ScriptedImporter) +2026-03-27T14:00:32.2414479Z 15:00:32.235 | -> (artifact id: 'fd0e67db121a8d5c77fd0c3a4446df4c') in 0.078823 seconds +2026-03-27T14:00:32.2424698Z 15:00:32.241 | Loading style catalogs (6) +2026-03-27T14:00:32.2432560Z 15:00:32.242 | StyleSheets/Extensions/base/common.uss +2026-03-27T14:00:32.2450231Z 15:00:32.243 | UIPackageResources/StyleSheets/Default/Variables/Public/common.uss +2026-03-27T14:00:32.2458819Z 15:00:32.245 | StyleSheets/Northstar/common.uss +2026-03-27T14:00:32.2467366Z 15:00:32.246 | StyleSheets/Extensions/fonts/inter.uss +2026-03-27T14:00:32.2477407Z 15:00:32.247 | StyleSheets/Extensions/base/dark.uss +2026-03-27T14:00:32.2490541Z 15:00:32.248 | UIPackageResources/StyleSheets/Default/Northstar/Palette/dark.uss +2026-03-27T14:00:32.2529534Z 15:00:32.249 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. +2026-03-27T14:00:32.2538828Z 15:00:32.253 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:00:32.2546943Z 15:00:32.254 | Asset Pipeline Refresh (id=90673b4cb721daa4fb1772346d729198): Total: 37.840 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport) +2026-03-27T14:00:32.2574442Z 15:00:32.255 | Summary: +2026-03-27T14:00:32.2582890Z 15:00:32.257 | Imports: total=193 (actual=193, local cache=0, cache server=0) +2026-03-27T14:00:32.2591528Z 15:00:32.258 | Asset DB Process Time: managed=23 ms, native=3701 ms +2026-03-27T14:00:32.2597640Z 15:00:32.259 | Asset DB Callback time: managed=193 ms, native=6900 ms +2026-03-27T14:00:32.2603365Z 15:00:32.260 | Scripting: domain reloads=1, domain reload time=794 ms, compile time=26199 ms, other=27 ms +2026-03-27T14:00:32.2615702Z 15:00:32.260 | Project Asset Count: scripts=112, non-scripts=81 +2026-03-27T14:00:32.2622092Z 15:00:32.261 | Asset File Changes: new=255, changed=255, moved=0, deleted=0 +2026-03-27T14:00:32.2627846Z 15:00:32.262 | Scan Filter Count: 0 +2026-03-27T14:00:32.2633048Z 15:00:32.262 | InvokeCustomDependenciesCallbacks: 0.001ms +2026-03-27T14:00:32.2638382Z 15:00:32.263 | InvokePackagesCallback: 6880.318ms +2026-03-27T14:00:32.2643787Z 15:00:32.263 | ApplyChangesToAssetFolders: 3.943ms +2026-03-27T14:00:32.2650180Z 15:00:32.264 | Scan: 360.110ms +2026-03-27T14:00:32.2662051Z 15:00:32.265 | OnSourceAssetsModified: 26.988ms +2026-03-27T14:00:32.2680253Z 15:00:32.267 | CategorizeAssetsWithTransientArtifact: 6.711ms +2026-03-27T14:00:32.2690876Z 15:00:32.268 | ProcessAssetsWithTransientArtifactChanges: 6.978ms +2026-03-27T14:00:32.2703678Z 15:00:32.269 | CategorizeAssets: 3.575ms +2026-03-27T14:00:32.2712596Z 15:00:32.270 | ImportOutOfDateAssets: 3042.267ms (-24922.005ms without children) +2026-03-27T14:00:32.2720129Z 15:00:32.271 | ImportManagerImport: 1764.900ms (265.271ms without children) +2026-03-27T14:00:32.2726511Z 15:00:32.272 | ImportInProcess: 1499.213ms +2026-03-27T14:00:32.2732886Z 15:00:32.272 | UpdateCategorizedAssets: 0.416ms +2026-03-27T14:00:32.2740105Z 15:00:32.273 | CompileScripts: 26198.731ms +2026-03-27T14:00:32.2747167Z 15:00:32.274 | ReloadNativeAssets: 0.000ms +2026-03-27T14:00:32.2752773Z 15:00:32.274 | UnloadImportedAssets: 0.131ms +2026-03-27T14:00:32.2758707Z 15:00:32.275 | ReloadImportedAssets: 0.014ms +2026-03-27T14:00:32.2764677Z 15:00:32.276 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.057ms +2026-03-27T14:00:32.2770787Z 15:00:32.276 | InitializingProgressBar: 0.007ms +2026-03-27T14:00:32.2776570Z 15:00:32.277 | PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms +2026-03-27T14:00:32.2782464Z 15:00:32.277 | OnDemandSchedulerStart: 0.432ms +2026-03-27T14:00:32.2789466Z 15:00:32.278 | PostProcessAllAssets: 200.948ms +2026-03-27T14:00:32.2794423Z 15:00:32.279 | Hotreload: 1.726ms +2026-03-27T14:00:32.2800354Z 15:00:32.279 | GatherAllCurrentPrimaryArtifactRevisions: 0.585ms +2026-03-27T14:00:32.2858677Z 15:00:32.285 | UnloadStreamsBegin: 2.571ms +2026-03-27T14:00:32.2886472Z 15:00:32.286 | PersistCurrentRevisions: 0.759ms +2026-03-27T14:00:32.2899057Z 15:00:32.289 | UnloadStreamsEnd: 0.002ms +2026-03-27T14:00:32.2907388Z 15:00:32.290 | GenerateScriptTypeHashes: 0.121ms +2026-03-27T14:00:32.2914167Z 15:00:32.290 | Untracked: 27302.649ms +2026-03-27T14:00:32.2921678Z 15:00:32.291 | +2026-03-27T14:00:32.2937943Z 15:00:32.292 | Application.AssetDatabase Initial Refresh End +2026-03-27T14:00:32.2969674Z 15:00:32.294 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.14 seconds +2026-03-27T14:00:33.5167229Z 15:00:33.514 | Scanning for USB devices : 10.618ms +2026-03-27T14:00:33.5182594Z 15:00:33.517 | Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) (LibraryAssetImporter) -> (artifact id: 'f42c94535dc1e4f98ead7c188cc3f784') in 0.0055003 seconds +2026-03-27T14:00:33.5187868Z 15:00:33.518 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. +2026-03-27T14:00:33.5194823Z 15:00:33.518 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:00:33.5202545Z 15:00:33.519 | Asset Pipeline Refresh (id=164e93b9219947045a6a3a74add8ec31): Total: 0.048 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) +2026-03-27T14:00:33.5210414Z 15:00:33.520 | Initializing Unity extensions: +2026-03-27T14:00:33.5217773Z 15:00:33.521 | [MODES] ModeService[none].Initialize +2026-03-27T14:00:33.5224076Z 15:00:33.521 | [MODES] ModeService[none].LoadModes +2026-03-27T14:00:33.5230073Z 15:00:33.522 | [MODES] Loading mode Default (0) for mode-current-id-IntegrationTest6000.3.8f1 +2026-03-27T14:00:40.4981389Z 15:00:40.494 | Unloading 2 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:00:40.5011009Z 15:00:40.500 | Unloading 77 unused Assets / (1.0 MB). Loaded Objects now: 694. +2026-03-27T14:00:40.5017800Z 15:00:40.501 | Memory consumption went from 92.7 MB to 91.7 MB. +2026-03-27T14:00:40.5027129Z 15:00:40.502 | Total: 8.190800 ms (FindLiveObjects: 0.049600 ms CreateObjectMapping: 0.007400 ms MarkObjects: 7.566800 ms DeleteObjects: 0.565700 ms) +2026-03-27T14:00:40.5034479Z 15:00:40.503 | +2026-03-27T14:00:40.5045123Z 15:00:40.504 | [ps5] module:libc.prx +2026-03-27T14:00:40.5068855Z 15:00:40.504 | [ps5] module:libSceFontGsm.prx +2026-03-27T14:00:40.5082055Z 15:00:40.507 | [ps5] module:libSceJobManager.prx +2026-03-27T14:00:40.5137511Z 15:00:40.511 | [ps5] module:libSceJobManager_nosubmission.prx +2026-03-27T14:00:40.5144846Z 15:00:40.514 | [ps5] module:libSceNpCppWebApi.prx +2026-03-27T14:00:40.5150448Z 15:00:40.514 | [ps5] module:libScePfs.prx +2026-03-27T14:00:40.5159574Z 15:00:40.515 | Batchmode quit successfully invoked - shutting down! +2026-03-27T14:00:40.5167761Z 15:00:40.516 | Curl error 42: Callback aborted +2026-03-27T14:00:40.9528832Z 15:00:40.934 | Killing ADB server in 0.1366714 seconds. +2026-03-27T14:00:40.9840618Z 15:00:40.964 | [Physics::Module] Cleanup current backend. +2026-03-27T14:00:40.9888453Z 15:00:40.986 | [Physics::Module] Id: 0xf2b8ea05 +2026-03-27T14:00:40.9917867Z 15:00:40.989 | Input System module state changed to: ShutdownInProgress. +2026-03-27T14:00:41.0019266Z 15:00:40.992 | Input System polling thread exited. +2026-03-27T14:00:41.0106730Z 15:00:41.007 | Input System module state changed to: Shutdown. +2026-03-27T14:00:41.0173578Z 15:00:41.013 | [Licensing::IpcConnector] LicenseClient-github-runner-notifications channel disconnected successfully. +2026-03-27T14:00:41.0250267Z 15:00:41.019 | [Licensing::IpcConnector] LicenseClient-github-runner channel disconnected successfully. +2026-03-27T14:00:41.0257361Z 15:00:41.025 | AcceleratorClientConnectionCallback - disconnected - :0 +2026-03-27T14:00:41.0264013Z 15:00:41.026 | Cleanup mono +2026-03-27T14:00:44.3159360Z 15:00:44.315 | Exiting batchmode successfully now! +2026-03-27T14:00:44.3163692Z 15:00:44.315 | Exiting without the bug reporter. Application will terminate with return code 0 +2026-03-27T14:00:44.7329828Z ##[endgroup] +2026-03-27T14:00:44.7385635Z Unity finished successfully. Time taken: 00:01:09.485 +2026-03-27T14:00:44.7398761Z 15:00:44.739 | Copying Editor scripts to integration project... +2026-03-27T14:00:44.8137199Z 15:00:44.813 | Editor scripts copied +2026-03-27T14:00:44.9085047Z 15:00:44.907 | Checking Unity UI package in manifest.json... +2026-03-27T14:00:44.9234676Z 15:00:44.923 | Adding Unity UI package +2026-03-27T14:00:44.9428754Z 15:00:44.942 | [OK] Project created +2026-03-27T14:00:44.9434423Z +2026-03-27T14:00:44.9438439Z ================================================================ +2026-03-27T14:00:44.9445221Z ADDING SENTRY +2026-03-27T14:00:44.9454020Z ================================================================ +2026-03-27T14:00:44.9459239Z 15:00:44.945 | Package path: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package +2026-03-27T14:00:44.9773423Z 15:00:44.976 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe +2026-03-27T14:00:44.9798184Z 15:00:44.979 | Installing Sentry package... +2026-03-27T14:00:44.9867470Z ##[group]Run C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -batchmode -projectPath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -installSentry Disk -sentryPackagePath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package -logfile unity.log +2026-03-27T14:00:44.9879447Z Removing Unity log unity.log +2026-03-27T14:00:45.0182323Z Waiting for Unity to finish. +2026-03-27T14:00:45.4626590Z 15:00:45.438 | [Licensing::Module] Trying to connect to existing licensing client channel... +2026-03-27T14:00:45.5038624Z 15:00:45.482 | Built from '6000.3/staging' branch; Version is '6000.3.8f1 (1c7db571dde0) revision 1867189'; Using compiler version '194234433'; Build Type 'Release' +2026-03-27T14:00:45.5400481Z 15:00:45.508 | [Licensing::IpcConnector] Channel LicenseClient-github-runner doesn't exist +2026-03-27T14:00:45.5962727Z 15:00:45.564 | OS: 'Windows 11 (10.0.26200) Professional' Language: 'en' Physical Memory: 16322 MB +2026-03-27T14:00:45.6329529Z 15:00:45.603 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1 +2026-03-27T14:00:45.6740832Z 15:00:45.644 | System architecture: x64 +2026-03-27T14:00:45.6763735Z 15:00:45.675 | Process architecture: x64 +2026-03-27T14:00:45.6941642Z 15:00:45.676 | Date: 2026-03-27T14:00:45Z +2026-03-27T14:00:45.7682471Z 15:00:45.701 | [Licensing::Module] Successfully launched the LicensingClient (PId: 39708) +2026-03-27T14:00:45.8563668Z 15:00:45.802 | +2026-03-27T14:00:45.9613102Z 15:00:45.876 | COMMAND LINE ARGUMENTS: +2026-03-27T14:00:45.9965305Z 15:00:45.976 | C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe +2026-03-27T14:00:46.0272387Z 15:00:46.004 | -batchmode +2026-03-27T14:00:46.0716859Z 15:00:46.041 | -projectPath +2026-03-27T14:00:46.0966749Z 15:00:46.079 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:00:46.1264696Z 15:00:46.104 | -installSentry +2026-03-27T14:00:46.1513573Z 15:00:46.136 | Disk +2026-03-27T14:00:46.1521205Z 15:00:46.151 | -sentryPackagePath +2026-03-27T14:00:46.1691817Z 15:00:46.156 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package +2026-03-27T14:00:46.1894274Z 15:00:46.175 | -logfile +2026-03-27T14:00:46.2037656Z 15:00:46.192 | unity.log +2026-03-27T14:00:46.2215762Z 15:00:46.209 | Successfully changed project path to: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:00:46.2977602Z 15:00:46.258 | C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:00:46.3002645Z 15:00:46.299 | [UnityMemory] Configuration Parameters - Can be set up in boot.config +2026-03-27T14:00:46.3034677Z 15:00:46.301 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" +2026-03-27T14:00:46.3041861Z 15:00:46.303 | "memorysetup-temp-allocator-size-audio-worker=65536" +2026-03-27T14:00:46.3143475Z 15:00:46.304 | "memorysetup-temp-allocator-size-gfx=262144" +2026-03-27T14:00:46.3317277Z 15:00:46.315 | "memorysetup-allocator-temp-initial-block-size-main=262144" +2026-03-27T14:00:46.3474091Z 15:00:46.337 | "memorysetup-allocator-temp-initial-block-size-worker=262144" +2026-03-27T14:00:46.3747583Z 15:00:46.361 | "memorysetup-temp-allocator-size-background-worker=32768" +2026-03-27T14:00:46.4055904Z 15:00:46.385 | "memorysetup-temp-allocator-size-job-worker=262144" +2026-03-27T14:00:46.4171519Z 15:00:46.409 | "memorysetup-temp-allocator-size-preload-manager=33554432" +2026-03-27T14:00:46.4246135Z 15:00:46.417 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:00:46.4333353Z 15:00:46.424 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:00:46.4340823Z 15:00:46.433 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:00:46.4383865Z 15:00:46.436 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:00:46.4408903Z 15:00:46.440 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:00:46.4424134Z 15:00:46.441 | "memorysetup-bucket-allocator-granularity=16" +2026-03-27T14:00:46.4431672Z 15:00:46.442 | "memorysetup-bucket-allocator-bucket-count=8" +2026-03-27T14:00:46.4436930Z 15:00:46.443 | "memorysetup-bucket-allocator-block-size=33554432" +2026-03-27T14:00:46.4442034Z 15:00:46.443 | "memorysetup-bucket-allocator-block-count=8" +2026-03-27T14:00:46.4447965Z 15:00:46.444 | "memorysetup-main-allocator-block-size=16777216" +2026-03-27T14:00:46.4453399Z 15:00:46.444 | "memorysetup-thread-allocator-block-size=16777216" +2026-03-27T14:00:46.4459097Z 15:00:46.445 | "memorysetup-gfx-main-allocator-block-size=16777216" +2026-03-27T14:00:46.4464484Z 15:00:46.446 | "memorysetup-gfx-thread-allocator-block-size=16777216" +2026-03-27T14:00:46.4471278Z 15:00:46.446 | "memorysetup-cache-allocator-block-size=4194304" +2026-03-27T14:00:46.4477786Z 15:00:46.447 | "memorysetup-typetree-allocator-block-size=2097152" +2026-03-27T14:00:46.4483478Z 15:00:46.447 | "memorysetup-profiler-bucket-allocator-granularity=16" +2026-03-27T14:00:46.4490178Z 15:00:46.448 | "memorysetup-profiler-bucket-allocator-bucket-count=8" +2026-03-27T14:00:46.4496436Z 15:00:46.449 | "memorysetup-profiler-bucket-allocator-block-size=33554432" +2026-03-27T14:00:46.4501829Z 15:00:46.449 | "memorysetup-profiler-bucket-allocator-block-count=8" +2026-03-27T14:00:46.4507208Z 15:00:46.450 | "memorysetup-profiler-allocator-block-size=16777216" +2026-03-27T14:00:46.4513392Z 15:00:46.450 | "memorysetup-profiler-editor-allocator-block-size=1048576" +2026-03-27T14:00:46.4518618Z 15:00:46.451 | "memorysetup-temp-allocator-size-main=16777216" +2026-03-27T14:00:46.4523909Z 15:00:46.452 | "memorysetup-job-temp-allocator-block-size=2097152" +2026-03-27T14:00:46.4545512Z 15:00:46.452 | "memorysetup-job-temp-allocator-block-size-background=1048576" +2026-03-27T14:00:46.4552438Z 15:00:46.454 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" +2026-03-27T14:00:46.4559294Z 15:00:46.455 | "memorysetup-temp-allocator-size-cloud-worker=32768" +2026-03-27T14:00:46.4569751Z 15:00:46.456 | Player connection [36288] Target information: +2026-03-27T14:00:46.4586514Z 15:00:46.458 | +2026-03-27T14:00:46.4594850Z 15:00:46.459 | Player connection [36288] * "[IP] 10.2.1.51 [Port] 55504 [Flags] 2 [Guid] 4081646423 [EditorId] 4081646423 [Version] 1048832 [Id] WindowsEditor(7,GDX-T1) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" +2026-03-27T14:00:46.4604321Z 15:00:46.460 | +2026-03-27T14:00:46.4612750Z 15:00:46.460 | Player connection [36288] Host joined multi-casting on [225.0.0.222:54997]... +2026-03-27T14:00:46.4617762Z 15:00:46.461 | Player connection [36288] Host joined alternative multi-casting on [225.0.0.222:34997]... +2026-03-27T14:00:46.4622472Z 15:00:46.461 | Input System module state changed to: Initialized. +2026-03-27T14:00:46.4633363Z 15:00:46.462 | [Physics::Module] Initialized fallback backend. +2026-03-27T14:00:46.4640358Z 15:00:46.463 | [Physics::Module] Id: 0xdecafbad +2026-03-27T14:00:46.4646895Z 15:00:46.464 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner" at "2026-03-27T14:00:46.2245575Z" +2026-03-27T14:00:46.4653437Z 15:00:46.464 | [Package Manager] Connected to IPC stream "Upm-33660" after 0.6 seconds. +2026-03-27T14:00:46.4659202Z 15:00:46.465 | [Licensing::Module] Licensing is not yet initialized. +2026-03-27T14:00:49.3703857Z 15:00:49.354 | [Licensing::Client] Handshaking with LicensingClient: +2026-03-27T14:00:49.3768388Z 15:00:49.373 | Version: 1.17.4+4293ba1 +2026-03-27T14:00:49.3776276Z 15:00:49.377 | Session Id: 6c186032bbef4b809d1770643c8ab936 +2026-03-27T14:00:49.3783821Z 15:00:49.377 | Correlation Id: e5cc8eb76b569ceb637cd5a2e41c2a80 +2026-03-27T14:00:49.3789117Z 15:00:49.378 | External correlation Id: 141454462539695518 +2026-03-27T14:00:49.3794954Z 15:00:49.379 | Machine Id: b5cL0vq5etg728hHCfaSnjJzEl4= +2026-03-27T14:00:49.3807246Z 15:00:49.379 | [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-github-runner" (connect: 0.91s, validation: 0.12s, handshake: 2.68s) +2026-03-27T14:00:49.3813670Z 15:00:49.380 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner-notifications" at "2026-03-27T14:00:49.0180963Z" +2026-03-27T14:00:49.3818568Z 15:00:49.381 | [Licensing::Module] Connected to LicensingClient (PId: 39708, launch time: 0.02, total connection time: 3.70s) +2026-03-27T14:00:49.3836780Z 15:00:49.382 | [Licensing::Module] Error: Access token is unavailable; failed to update +2026-03-27T14:00:49.3869448Z 15:00:49.386 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:00:49.3893254Z 15:00:49.387 | [Licensing::Module] License group: +2026-03-27T14:00:49.3988198Z 15:00:49.390 | Id: SC-6P43-RKFA-9PYH-ZZ9Q-XXXX +2026-03-27T14:00:49.3996515Z 15:00:49.399 | Product: Unity Pro +2026-03-27T14:00:49.4006714Z 15:00:49.400 | Type: ULF +2026-03-27T14:00:49.4012691Z 15:00:49.400 | Expiration: 2027-03-05T00:00:00Z +2026-03-27T14:00:49.4018604Z 15:00:49.401 | [Licensing::Client] Successfully updated license, isAsync: True, time: 0.01 +2026-03-27T14:00:49.4025114Z 15:00:49.402 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:00:49.4033120Z 15:00:49.402 | [Licensing::Module] Licensing Background thread has ended after 3.78s +2026-03-27T14:00:49.4038588Z 15:00:49.403 | [Licensing::Module] Licensing is initialized (took 2.63s). +2026-03-27T14:00:49.4043879Z 15:00:49.403 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:00:49.4051923Z 15:00:49.404 | Library Redirect Path: Library/ +2026-03-27T14:00:49.4076265Z 15:00:49.406 | [Physics::Module] Selected backend. +2026-03-27T14:00:49.4084052Z 15:00:49.407 | [Physics::Module] Name: PhysX +2026-03-27T14:00:49.4090188Z 15:00:49.408 | [Physics::Module] Id: 0xf2b8ea05 +2026-03-27T14:00:49.4095230Z 15:00:49.409 | [Physics::Module] SDK Version: 4.1.2 +2026-03-27T14:00:49.4100352Z 15:00:49.409 | [Physics::Module] Integration Version: 1.0.0 +2026-03-27T14:00:49.4106714Z 15:00:49.410 | [Physics::Module] Threading Mode: Multi-Threaded +2026-03-27T14:00:49.4115291Z 15:00:49.410 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. +2026-03-27T14:00:49.4120317Z 15:00:49.411 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:00:49.4125528Z 15:00:49.412 | Initialize engine version: 6000.3.8f1 (1c7db571dde0) +2026-03-27T14:00:49.4133337Z 15:00:49.412 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Resources/UnitySubsystems +2026-03-27T14:00:49.4137589Z 15:00:49.413 | [Subsystems] Discovering subsystems at path C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets +2026-03-27T14:00:49.4142265Z 15:00:49.413 | GfxDevice: creating device client; kGfxThreadingModeNonThreaded +2026-03-27T14:00:49.8444192Z 15:00:49.829 | Direct3D: +2026-03-27T14:00:49.8740316Z 15:00:49.858 | Version: Direct3D 11.0 [level 11.1] +2026-03-27T14:00:49.8891550Z 15:00:49.878 | Renderer: NVIDIA GeForce GTX 1080 (ID=0x1b80) +2026-03-27T14:00:49.8980866Z 15:00:49.890 | Vendor: NVIDIA +2026-03-27T14:00:49.8992382Z 15:00:49.898 | VRAM: 8059 MB +2026-03-27T14:00:49.9040086Z 15:00:49.899 | Driver: 32.0.15.7716 +2026-03-27T14:00:49.9054384Z 15:00:49.904 | Initialize mono +2026-03-27T14:00:49.9100730Z 15:00:49.905 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed' +2026-03-27T14:00:49.9196987Z 15:00:49.917 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +2026-03-27T14:00:49.9464589Z 15:00:49.929 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/etc' +2026-03-27T14:00:49.9489026Z 15:00:49.947 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56660 +2026-03-27T14:00:49.9495007Z 15:00:49.949 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts +2026-03-27T14:00:49.9511565Z 15:00:49.949 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts +2026-03-27T14:00:49.9539256Z 15:00:49.951 | ImportWorker Server TCP listen port: 0 +2026-03-27T14:00:49.9586691Z 15:00:49.957 | AcceleratorClientConnectionCallback - disconnected - :0 +2026-03-27T14:00:49.9661369Z 15:00:49.962 | Begin MonoManager ReloadAssembly +2026-03-27T14:00:50.3761547Z 15:00:50.368 | Registering precompiled unity dll's ... +2026-03-27T14:00:50.3783838Z 15:00:50.377 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +2026-03-27T14:00:50.3798678Z 15:00:50.379 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:00:50.3806947Z 15:00:50.380 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/PS5Player/UnityEditor.PS5.Extensions.dll +2026-03-27T14:00:50.3817679Z 15:00:50.381 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/UnityEditor.GameCoreScarlett.Extensions.dll +2026-03-27T14:00:50.3824652Z 15:00:50.382 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:00:50.3926655Z 15:00:50.382 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +2026-03-27T14:00:50.3937761Z 15:00:50.393 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreXboxOneSupport/UnityEditor.GameCoreXboxOne.Extensions.dll +2026-03-27T14:00:50.3943571Z 15:00:50.393 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:00:50.3956465Z 15:00:50.395 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll +2026-03-27T14:00:50.3982662Z 15:00:50.397 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/Switch/UnityEditor.Switch.Extensions.dll +2026-03-27T14:00:50.4036817Z 15:00:50.402 | Registered in 0.033652 seconds. +2026-03-27T14:00:50.8181185Z 15:00:50.815 | - Loaded All Assemblies, in 0.806 seconds +2026-03-27T14:00:51.2266761Z 15:00:51.220 | Native extension for iOS target not found +2026-03-27T14:00:51.2390793Z 15:00:51.227 | Native extension for Android target not found +2026-03-27T14:00:54.1362014Z 15:00:54.135 | Android Extension - Scanning For ADB Devices 2744 ms +2026-03-27T14:00:54.1372717Z 15:00:54.136 | Native extension for WindowsStandalone target not found +2026-03-27T14:00:54.5545594Z 15:00:54.553 | ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:False +2026-03-27T14:00:54.5556354Z 15:00:54.555 | Mono: successfully reloaded assembly +2026-03-27T14:00:54.5560500Z 15:00:54.555 | - Finished resetting the current domain, in 3.781 seconds +2026-03-27T14:00:54.5565236Z 15:00:54.556 | Domain Reload Profiling: 4578ms +2026-03-27T14:00:54.5573917Z 15:00:54.556 | BeginReloadAssembly (269ms) +2026-03-27T14:00:54.5579237Z 15:00:54.557 | ExecutionOrderSort (0ms) +2026-03-27T14:00:54.5584546Z 15:00:54.558 | DisableScriptedObjects (0ms) +2026-03-27T14:00:54.5590461Z 15:00:54.558 | BackupInstance (0ms) +2026-03-27T14:00:54.5595573Z 15:00:54.559 | ReleaseScriptingObjects (0ms) +2026-03-27T14:00:54.5600941Z 15:00:54.559 | CreateAndSetChildDomain (3ms) +2026-03-27T14:00:54.5605617Z 15:00:54.560 | RebuildCommonClasses (56ms) +2026-03-27T14:00:54.5612170Z 15:00:54.560 | RebuildNativeTypeToScriptingClass (25ms) +2026-03-27T14:00:54.5617348Z 15:00:54.561 | initialDomainReloadingComplete (108ms) +2026-03-27T14:00:54.5623637Z 15:00:54.562 | LoadAllAssembliesAndSetupDomain (337ms) +2026-03-27T14:00:54.5630247Z 15:00:54.562 | LoadAssemblies (259ms) +2026-03-27T14:00:54.5636114Z 15:00:54.563 | RebuildTransferFunctionScriptingTraits (0ms) +2026-03-27T14:00:54.5641076Z 15:00:54.563 | AnalyzeDomain (328ms) +2026-03-27T14:00:54.5648871Z 15:00:54.564 | TypeCache.Refresh (327ms) +2026-03-27T14:00:54.5660431Z 15:00:54.565 | TypeCache.ScanAssembly (304ms) +2026-03-27T14:00:54.5678039Z 15:00:54.566 | BuildScriptInfoCaches (0ms) +2026-03-27T14:00:54.5705807Z 15:00:54.570 | ResolveRequiredComponents (1ms) +2026-03-27T14:00:54.5710806Z 15:00:54.570 | FinalizeReload (3782ms) +2026-03-27T14:00:54.5716763Z 15:00:54.571 | ReleaseScriptCaches (0ms) +2026-03-27T14:00:54.5721897Z 15:00:54.571 | RebuildScriptCaches (0ms) +2026-03-27T14:00:54.5735055Z 15:00:54.572 | SetupLoadedEditorAssemblies (3729ms) +2026-03-27T14:00:54.5741896Z 15:00:54.573 | LogAssemblyErrors (0ms) +2026-03-27T14:00:54.5748949Z 15:00:54.574 | InitializePlatformSupportModulesInManaged (3334ms) +2026-03-27T14:00:54.5757139Z 15:00:54.575 | SetLoadedEditorAssemblies (5ms) +2026-03-27T14:00:54.5759593Z 15:00:54.575 | BeforeProcessingInitializeOnLoad (113ms) +2026-03-27T14:00:54.5765485Z 15:00:54.576 | ProcessInitializeOnLoadAttributes (179ms) +2026-03-27T14:00:54.5771879Z 15:00:54.576 | ProcessInitializeOnLoadMethodAttributes (98ms) +2026-03-27T14:00:54.5777964Z 15:00:54.577 | AfterProcessingInitializeOnLoad (0ms) +2026-03-27T14:00:54.5782840Z 15:00:54.577 | EditorAssembliesLoaded (0ms) +2026-03-27T14:00:54.5789737Z 15:00:54.578 | ExecutionOrderSort2 (0ms) +2026-03-27T14:00:54.5796815Z 15:00:54.579 | AwakeInstancesAfterBackupRestoration (0ms) +2026-03-27T14:00:54.5802414Z 15:00:54.579 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:00:54.5809819Z 15:00:54.580 | Application.AssetDatabase Initial Refresh Start +2026-03-27T14:00:54.5815362Z 15:00:54.581 | Package Manager log level set to [2] +2026-03-27T14:00:54.5821730Z 15:00:54.581 | [Package Manager] Restoring resolved packages state from cache +2026-03-27T14:00:54.5828551Z 15:00:54.582 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:00:54.5845471Z 15:00:54.584 | [Package Manager] Registered 37 packages: +2026-03-27T14:00:54.5851642Z 15:00:54.584 | Built-in packages: +2026-03-27T14:00:54.5859919Z 15:00:54.585 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) +2026-03-27T14:00:54.5869857Z 15:00:54.585 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) +2026-03-27T14:00:54.5874575Z 15:00:54.586 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) +2026-03-27T14:00:54.5892091Z 15:00:54.588 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) +2026-03-27T14:00:54.5903675Z 15:00:54.589 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) +2026-03-27T14:00:54.5912404Z 15:00:54.590 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) +2026-03-27T14:00:54.5921744Z 15:00:54.591 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) +2026-03-27T14:00:54.5930897Z 15:00:54.592 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) +2026-03-27T14:00:54.5941879Z 15:00:54.593 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) +2026-03-27T14:00:54.5958801Z 15:00:54.595 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) +2026-03-27T14:00:54.5974277Z 15:00:54.596 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) +2026-03-27T14:00:54.5997808Z 15:00:54.597 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) +2026-03-27T14:00:54.6013552Z 15:00:54.600 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) +2026-03-27T14:00:54.6022485Z 15:00:54.601 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) +2026-03-27T14:00:54.6030884Z 15:00:54.602 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) +2026-03-27T14:00:54.6039628Z 15:00:54.603 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) +2026-03-27T14:00:54.6049983Z 15:00:54.604 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) +2026-03-27T14:00:54.6058617Z 15:00:54.605 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) +2026-03-27T14:00:54.6067962Z 15:00:54.606 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) +2026-03-27T14:00:54.6094050Z 15:00:54.608 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) +2026-03-27T14:00:54.6098628Z 15:00:54.609 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) +2026-03-27T14:00:54.6105264Z 15:00:54.610 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) +2026-03-27T14:00:54.6115704Z 15:00:54.610 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) +2026-03-27T14:00:54.6122058Z 15:00:54.611 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) +2026-03-27T14:00:54.6131185Z 15:00:54.612 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) +2026-03-27T14:00:54.6182438Z 15:00:54.617 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) +2026-03-27T14:00:54.6247417Z 15:00:54.618 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) +2026-03-27T14:00:54.6256943Z 15:00:54.625 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) +2026-03-27T14:00:54.6262250Z 15:00:54.625 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) +2026-03-27T14:00:54.6268315Z 15:00:54.626 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) +2026-03-27T14:00:54.6283836Z 15:00:54.627 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) +2026-03-27T14:00:54.6427338Z 15:00:54.628 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) +2026-03-27T14:00:54.6435495Z 15:00:54.643 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) +2026-03-27T14:00:54.6447608Z 15:00:54.643 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) +2026-03-27T14:00:54.6468069Z 15:00:54.645 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) +2026-03-27T14:00:54.6475979Z 15:00:54.647 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) +2026-03-27T14:00:54.6483409Z 15:00:54.647 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) +2026-03-27T14:00:54.6493925Z 15:00:54.648 | [Subsystems] No new subsystems found in resolved package list. +2026-03-27T14:00:54.6500167Z 15:00:54.649 | [Package Manager] Done registering packages in 0.04 seconds +2026-03-27T14:01:01.9810455Z 15:01:01.980 | [Package Manager] Done resolving packages in 7.46 seconds +2026-03-27T14:01:01.9816233Z 15:01:01.981 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:01.9821623Z 15:01:01.981 | [Package Manager] Lock file was modified +2026-03-27T14:01:01.9827359Z 15:01:01.982 | [Package Manager] Registered 38 packages: +2026-03-27T14:01:01.9833637Z 15:01:01.982 | Built-in packages: +2026-03-27T14:01:01.9839941Z 15:01:01.983 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) +2026-03-27T14:01:01.9845787Z 15:01:01.984 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) +2026-03-27T14:01:01.9863015Z 15:01:01.984 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) +2026-03-27T14:01:01.9880789Z 15:01:01.986 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) +2026-03-27T14:01:01.9905537Z 15:01:01.988 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) +2026-03-27T14:01:01.9923980Z 15:01:01.990 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) +2026-03-27T14:01:01.9942375Z 15:01:01.992 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) +2026-03-27T14:01:01.9964900Z 15:01:01.994 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) +2026-03-27T14:01:01.9985289Z 15:01:01.997 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) +2026-03-27T14:01:02.0048079Z 15:01:01.999 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) +2026-03-27T14:01:02.0079648Z 15:01:02.007 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) +2026-03-27T14:01:02.0085205Z 15:01:02.008 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) +2026-03-27T14:01:02.0091855Z 15:01:02.008 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) +2026-03-27T14:01:02.0097461Z 15:01:02.009 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) +2026-03-27T14:01:02.0222313Z 15:01:02.009 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) +2026-03-27T14:01:02.0509154Z 15:01:02.032 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) +2026-03-27T14:01:02.0793129Z 15:01:02.057 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) +2026-03-27T14:01:02.0802350Z 15:01:02.079 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) +2026-03-27T14:01:02.0808735Z 15:01:02.080 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) +2026-03-27T14:01:02.0818406Z 15:01:02.080 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) +2026-03-27T14:01:02.0824058Z 15:01:02.081 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) +2026-03-27T14:01:02.0829426Z 15:01:02.082 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) +2026-03-27T14:01:02.0835491Z 15:01:02.083 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) +2026-03-27T14:01:02.0840920Z 15:01:02.083 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) +2026-03-27T14:01:02.0846217Z 15:01:02.084 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) +2026-03-27T14:01:02.0853049Z 15:01:02.084 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) +2026-03-27T14:01:02.0857370Z 15:01:02.085 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) +2026-03-27T14:01:02.0862840Z 15:01:02.085 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) +2026-03-27T14:01:02.0868080Z 15:01:02.086 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) +2026-03-27T14:01:02.0873507Z 15:01:02.086 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) +2026-03-27T14:01:02.0885356Z 15:01:02.087 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) +2026-03-27T14:01:02.0892777Z 15:01:02.088 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) +2026-03-27T14:01:02.0898741Z 15:01:02.089 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) +2026-03-27T14:01:02.0904507Z 15:01:02.089 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) +2026-03-27T14:01:02.0910308Z 15:01:02.090 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) +2026-03-27T14:01:02.0915824Z 15:01:02.091 | com.unity.ugui@2.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc) +2026-03-27T14:01:02.0921999Z 15:01:02.091 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) +2026-03-27T14:01:02.0927689Z 15:01:02.092 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) +2026-03-27T14:01:02.0932853Z 15:01:02.092 | [Subsystems] No new subsystems found in resolved package list. +2026-03-27T14:01:02.0938307Z 15:01:02.093 | [Package Manager] Done registering packages in 0.00 seconds +2026-03-27T14:01:02.5044382Z 15:01:02.503 | [ScriptCompilation] Requested script compilation because: Assembly Definition File(s) changed +2026-03-27T14:01:02.5051839Z 15:01:02.504 | [ScriptCompilation] Requested script compilation because: Assetdatabase observed changes in script compilation related files +2026-03-27T14:01:03.3387262Z 15:01:03.334 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies +2026-03-27T14:01:03.3396859Z 15:01:03.339 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:03.3416900Z 15:01:03.341 | DisplayProgressbar: Compiling Scripts +2026-03-27T14:01:03.3424664Z 15:01:03.342 | ExitCode: 4 Duration: 0s147ms +2026-03-27T14:01:03.3431070Z 15:01:03.342 | Rebuilding DAG because FileSignature timestamp changed: Library/Bee/1900b0aE-inputdata.json +2026-03-27T14:01:03.3437419Z 15:01:03.343 | *** Tundra requires additional run (0.05 seconds), 0 items updated, 161 evaluated +2026-03-27T14:01:03.3444587Z 15:01:03.343 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aE.dag.json" "Library/Bee/1900b0aE-inputdata.json" "Library\Bee\buildprogram0.traceevents" +2026-03-27T14:01:03.3450264Z 15:01:03.344 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:03.7489246Z 15:01:03.748 | ExitCode: 0 Duration: 0s419ms +2026-03-27T14:01:03.7499515Z 15:01:03.749 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aE.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssemblies +2026-03-27T14:01:03.7510474Z 15:01:03.750 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:09.4773891Z 15:01:09.476 | ExitCode: 0 Duration: 5s445ms +2026-03-27T14:01:09.4780817Z 15:01:09.477 | Finished compiling graph: 236 nodes, 1998 flattened edges (1896 ToBuild, 18 ToUse), maximum node priority 103 +2026-03-27T14:01:09.4788370Z 15:01:09.478 | [109/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt +2026-03-27T14:01:09.4794189Z 15:01:09.479 | [137/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp2 +2026-03-27T14:01:09.4801806Z 15:01:09.479 | [155/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp +2026-03-27T14:01:09.4810324Z 15:01:09.480 | [156/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp2 +2026-03-27T14:01:09.4816809Z 15:01:09.481 | [157/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt +2026-03-27T14:01:09.4828211Z 15:01:09.481 | [158/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp +2026-03-27T14:01:09.4836132Z 15:01:09.482 | [159/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.UnityAdditionalFile.txt +2026-03-27T14:01:09.4841522Z 15:01:09.483 | [160/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.rsp2 +2026-03-27T14:01:09.4847059Z 15:01:09.484 | [161/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp +2026-03-27T14:01:09.4854909Z 15:01:09.484 | [162/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp +2026-03-27T14:01:09.4862019Z 15:01:09.485 | [165/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll.mvfrm.rsp +2026-03-27T14:01:09.4870203Z 15:01:09.486 | [166/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp2 +2026-03-27T14:01:09.4876840Z 15:01:09.487 | [167/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt +2026-03-27T14:01:09.4882291Z 15:01:09.487 | [168/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp +2026-03-27T14:01:09.4888287Z 15:01:09.488 | [169/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.rsp +2026-03-27T14:01:09.4893643Z 15:01:09.488 | [172/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll.mvfrm.rsp +2026-03-27T14:01:09.4900466Z 15:01:09.489 | [173/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.rsp2 +2026-03-27T14:01:09.4905308Z 15:01:09.490 | [174/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.rsp +2026-03-27T14:01:09.4911587Z 15:01:09.490 | [175/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp +2026-03-27T14:01:09.4917942Z 15:01:09.491 | [176/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt +2026-03-27T14:01:09.4929492Z 15:01:09.491 | [177/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp2 +2026-03-27T14:01:09.4935076Z 15:01:09.493 | [178/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.UnityAdditionalFile.txt +2026-03-27T14:01:09.4941132Z 15:01:09.493 | [179/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll.mvfrm.rsp +2026-03-27T14:01:09.4947709Z 15:01:09.494 | [180/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll.mvfrm.rsp +2026-03-27T14:01:09.4953112Z 15:01:09.494 | [181/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp +2026-03-27T14:01:09.4958610Z 15:01:09.495 | [182/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.rsp +2026-03-27T14:01:09.4970573Z 15:01:09.496 | [183/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp +2026-03-27T14:01:09.4978377Z 15:01:09.497 | [184/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.UnityAdditionalFile.txt +2026-03-27T14:01:09.4984795Z 15:01:09.498 | [185/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.rsp +2026-03-27T14:01:09.4992222Z 15:01:09.498 | [186/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp2 +2026-03-27T14:01:09.4998411Z 15:01:09.499 | [187/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm.rsp +2026-03-27T14:01:09.5004154Z 15:01:09.499 | [188/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp +2026-03-27T14:01:09.5011472Z 15:01:09.500 | [189/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm +2026-03-27T14:01:09.5018104Z 15:01:09.501 | [189/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others) [CacheHit cd66758ab71f312b050a95a26728b8a300000000000000000000000000000005] +2026-03-27T14:01:09.5024503Z 15:01:09.501 | [190/233 1774620064s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others) +2026-03-27T14:01:09.5031607Z 15:01:09.502 | [192/233 0s] CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb +2026-03-27T14:01:09.5039807Z 15:01:09.503 | [193/233 0s] CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll +2026-03-27T14:01:09.5047564Z 15:01:09.504 | [194/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_08FEAA520A2EFD60.mvfrm +2026-03-27T14:01:09.5055038Z 15:01:09.504 | [195/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm +2026-03-27T14:01:09.5065392Z 15:01:09.505 | [194/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others) [CacheHit 186552fbe1d4aac26983306c37399a4e00000000000000000000000000000005] +2026-03-27T14:01:09.5067461Z 15:01:09.506 | [196/233 1774620064s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others) +2026-03-27T14:01:09.5075449Z 15:01:09.506 | [198/233 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb +2026-03-27T14:01:09.5085286Z 15:01:09.508 | [199/233 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll +2026-03-27T14:01:09.5093158Z 15:01:09.508 | [200/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_4C98D3F7040CD4F5.mvfrm +2026-03-27T14:01:09.5099383Z 15:01:09.509 | [201/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll.mvfrm +2026-03-27T14:01:09.5106334Z 15:01:09.510 | [202/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll.mvfrm +2026-03-27T14:01:09.5112376Z 15:01:09.510 | [200/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) [CacheHit 87ded9aae356225df16cfb7fc17d0e9a00000000000000000000000000000005] +2026-03-27T14:01:09.5118366Z 15:01:09.511 | [203/233 1774620065s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) +2026-03-27T14:01:09.5125063Z 15:01:09.512 | [205/233 0s] CopyFiles Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.004.pdb +2026-03-27T14:01:09.5132603Z 15:01:09.512 | [206/233 0s] CopyFiles Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.004.dll +2026-03-27T14:01:09.5139345Z 15:01:09.513 | [203/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) [CacheHit 4bc2925530fadff46e39b4f44c175e2b00000000000000000000000000000005] +2026-03-27T14:01:09.5145690Z 15:01:09.514 | [207/233 1774620065s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) +2026-03-27T14:01:09.5152583Z 15:01:09.514 | [210/233 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.pdb +2026-03-27T14:01:09.5160029Z 15:01:09.515 | [211/233 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.dll +2026-03-27T14:01:09.5166235Z 15:01:09.516 | [212/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.InternalAPIEngineBridge.004.ref.dll_9F91F1CFF2D20E26.mvfrm +2026-03-27T14:01:09.5173407Z 15:01:09.516 | [213/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll.mvfrm +2026-03-27T14:01:09.5179751Z 15:01:09.517 | [209/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) [CacheHit 6245a68e776e116f0b48695baf5d288200000000000000000000000000000005] +2026-03-27T14:01:09.5185784Z 15:01:09.518 | [214/233 1774620065s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) +2026-03-27T14:01:09.5191797Z 15:01:09.518 | [216/233 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.pdb +2026-03-27T14:01:09.5197910Z 15:01:09.519 | [217/233 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.dll +2026-03-27T14:01:09.5203950Z 15:01:09.519 | [218/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm +2026-03-27T14:01:09.5211903Z 15:01:09.520 | [213/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others) [CacheHit 513b010c3199fe52da3aa0ebd19cef9a00000000000000000000000000000005] +2026-03-27T14:01:09.5219927Z 15:01:09.521 | [219/233 1774620066s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others) +2026-03-27T14:01:09.5226128Z 15:01:09.522 | [221/233 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb +2026-03-27T14:01:09.5232237Z 15:01:09.522 | [222/233 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll +2026-03-27T14:01:09.5241282Z 15:01:09.523 | [223/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Multiplayer.Center.Editor.ref.dll_EB1F4B6E56116D4A.mvfrm +2026-03-27T14:01:09.5248986Z 15:01:09.524 | [224/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_84A4293DBDD182DB.mvfrm +2026-03-27T14:01:09.5255233Z 15:01:09.525 | [225/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll.mvfrm +2026-03-27T14:01:09.5261582Z 15:01:09.525 | [226/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm +2026-03-27T14:01:09.5268547Z 15:01:09.526 | [220/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll (+2 others) [CacheHit d5b24c30f7acef1f92fbc846a24ba37200000000000000000000000000000005] +2026-03-27T14:01:09.5275502Z 15:01:09.527 | [227/233 1774620066s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll (+2 others) +2026-03-27T14:01:09.5281130Z 15:01:09.527 | [229/233 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.Analytics.pdb +2026-03-27T14:01:09.5288577Z 15:01:09.528 | [230/233 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.Analytics.dll +2026-03-27T14:01:09.5295452Z 15:01:09.529 | [223/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others) [CacheHit f58dc401e89db74e0d2b98cb0550931c00000000000000000000000000000005] +2026-03-27T14:01:09.5302074Z 15:01:09.529 | [231/233 1774620066s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others) +2026-03-27T14:01:09.5308085Z 15:01:09.530 | [233/233 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb +2026-03-27T14:01:09.5314707Z 15:01:09.530 | [234/233 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll +2026-03-27T14:01:09.5322652Z 15:01:09.531 | [235/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.Analytics.ref.dll_3B64A5A3A726AD5D.mvfrm +2026-03-27T14:01:09.5330955Z 15:01:09.532 | [236/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm +2026-03-27T14:01:09.5339301Z 15:01:09.533 | [237/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm +2026-03-27T14:01:09.5347448Z 15:01:09.534 | [238/233 1s] Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others) +2026-03-27T14:01:09.5354409Z 15:01:09.535 | [239/233 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb +2026-03-27T14:01:09.5361922Z 15:01:09.535 | [240/233 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll +2026-03-27T14:01:09.5371110Z 15:01:09.536 | *** Tundra build success (5.36 seconds), 67 items updated, 233 evaluated +2026-03-27T14:01:09.5378595Z 15:01:09.537 | AssetDatabase: script compilation time: 6.889462s +2026-03-27T14:01:09.5385403Z 15:01:09.538 | Begin MonoManager ReloadAssembly +2026-03-27T14:01:09.9504303Z 15:01:09.946 | - Loaded All Assemblies, in 0.564 seconds +2026-03-27T14:01:09.9517576Z 15:01:09.951 | Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) (LibraryAssetImporter) -> (artifact id: '81e00aa3890314c0a977affe41918cef') in 0.0242234 seconds +2026-03-27T14:01:09.9525156Z 15:01:09.951 | Start importing Assets/Scenes using Guid(13ebbfc6e1e11454181222829fbe9f6a) (DefaultImporter) -> (artifact id: '0de7ae4d994869e1ceba110cf2c60ca5') in 0.0039984 seconds +2026-03-27T14:01:09.9545274Z 15:01:09.953 | Start importing Packages/com.unity.ugui using Guid(d5f8dee8e32bc95b4dcb826f6c5ee972) (DefaultImporter) -> (artifact id: '4d840d4ceff926363f6b2c1c38699fa7') in 0.0006684 seconds +2026-03-27T14:01:09.9566474Z 15:01:09.955 | Start importing Assets/Editor using Guid(0f65ba13602610f49adeca3530785d12) (DefaultImporter) -> (artifact id: '12f38cbafb89a3ae0d1b46da130b0ef6') in 0.0030921 seconds +2026-03-27T14:01:09.9586003Z 15:01:09.957 | Start importing Packages/com.unity.ugui/Editor Resources using Guid(d1a0a27327b54c3bac52a08929c33f81) (DefaultImporter) -> (artifact id: '89d4bdf381a63d2d738dcc151e624513') in 0.0010635 seconds +2026-03-27T14:01:09.9600025Z 15:01:09.959 | Start importing Packages/com.unity.ugui/Tests using Guid(d850db319a63d2546932ff76fe55a498) (DefaultImporter) -> (artifact id: '87ed2bbc25b91c58b304abd09ed3aaba') in 0.0009689 seconds +2026-03-27T14:01:09.9645424Z 15:01:09.960 | Start importing Packages/com.unity.ugui/Runtime using Guid(aa14b70e6a58c5b4fa6663623e3dca91) (DefaultImporter) -> (artifact id: 'fa7aa1d533b272bf79afdbd5404453cd') in 0.0011076 seconds +2026-03-27T14:01:09.9656065Z 15:01:09.964 | Start importing Packages/com.unity.ugui/Package Resources using Guid(5ec95f4d5b2d1f14e9ff8682562553f9) (DefaultImporter) -> (artifact id: '20161e53e484de6465e75d382f9dbde6') in 0.0009887 seconds +2026-03-27T14:01:09.9668649Z 15:01:09.965 | Start importing Packages/com.unity.ugui/Editor using Guid(bee384ad5b4d1a843a018082e7db53cd) (DefaultImporter) -> (artifact id: 'cc2ff2381a5068f9e19e880ea4d9c9b1') in 0.0009386 seconds +2026-03-27T14:01:09.9674856Z 15:01:09.966 | Start importing Packages/com.unity.ugui/Editor/TMP using Guid(10d1425d9e87841d9a9deafe9e93a6f2) (DefaultImporter) -> (artifact id: 'b78a297ad64c4d78728ae683af3e5658') in 0.0009674 seconds +2026-03-27T14:01:09.9683285Z 15:01:09.967 | Start importing Packages/com.unity.ugui/Runtime/TMP using Guid(619aadd8f276341ca84d7ad5a9c6db21) (DefaultImporter) -> (artifact id: '5308cedcd74d43682790fc7238a9d1e2') in 0.0009061 seconds +2026-03-27T14:01:09.9704084Z 15:01:09.968 | Start importing Packages/com.unity.ugui/Tests/Editor using Guid(936bea4b2545c4a4fad2e623b0f6371f) (DefaultImporter) -> (artifact id: '75f26d3f4c8aedba3eb80398ab395bd8') in 0.0009325 seconds +2026-03-27T14:01:09.9710660Z 15:01:09.970 | Start importing Packages/com.unity.ugui/Tests/Runtime using Guid(c545241cf2e56ec4997d7677f01ef43d) (DefaultImporter) -> (artifact id: '88e2b3e1f7bbb56cb1f91f83f053765b') in 0.0010016 seconds +2026-03-27T14:01:09.9718470Z 15:01:09.971 | Start importing Packages/com.unity.ugui/Editor/Analytics using Guid(c52726d811a9f66459355df6b0c3977b) (DefaultImporter) -> (artifact id: '4154f772d9b7cf6fccdb594f4e326893') in 0.0010106 seconds +2026-03-27T14:01:09.9729043Z 15:01:09.972 | Start importing Packages/com.unity.ugui/Editor/UGUI using Guid(278b6073a5bdd4362acd72ca43ff9e0d) (DefaultImporter) -> (artifact id: 'abf9fbf9f7c10d2af702b2e8085d3ed6') in 0.0009977 seconds +2026-03-27T14:01:09.9737051Z 15:01:09.973 | Start importing Packages/com.unity.ugui/Runtime/UGUI using Guid(1817d28a5343b4ec19b4ec7903730e2c) (DefaultImporter) -> (artifact id: 'd27c003f26a5bcc4ae0be188e216ff3a') in 0.0008981 seconds +2026-03-27T14:01:09.9747394Z 15:01:09.974 | Start importing Packages/com.unity.ugui/Editor Resources/Textures using Guid(f8e6a2d47aba4c6c9b3c5a72d9f48da5) (DefaultImporter) -> (artifact id: '41714146c3f223570fca541b52f7c091') in 0.0009305 seconds +2026-03-27T14:01:09.9753652Z 15:01:09.974 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos using Guid(e93ec7eb6de342aabd156833e253f838) (DefaultImporter) -> (artifact id: 'e3065312f331f86c187a2c34400b2ab5') in 0.0011086 seconds +2026-03-27T14:01:09.9762034Z 15:01:09.975 | Start importing Packages/com.unity.ugui/Runtime/InternalBridge using Guid(bab3a29ab4f214742a44add41efffb7d) (DefaultImporter) -> (artifact id: 'b8ae5a4142d7b3ff7433a144e13442a5') in 0.0009849 seconds +2026-03-27T14:01:09.9798748Z 15:01:09.977 | Start importing Packages/com.unity.ugui/Editor Resources/Shaders using Guid(2da27f5fe80a3a549ac7331d9f52f5f0) (DefaultImporter) -> (artifact id: '8ba95b6473bead211c52ddc79ac818a9') in 0.000996 seconds +2026-03-27T14:01:09.9838452Z 15:01:09.980 | Start importing Packages/com.unity.ugui/Tests/Runtime/TMP using Guid(914613548ded44a43a59eb9852503f18) (DefaultImporter) -> (artifact id: '477b4938addb883f7857c7245a542f61') in 0.0009917 seconds +2026-03-27T14:01:10.0254403Z 15:01:10.003 | Start importing Packages/com.unity.ugui/Runtime/UGUI/Properties using Guid(32e2186f4598cff489784aae586f2215) (DefaultImporter) -> (artifact id: 'd945312145ac0c9dd7a3598fc5b82f23') in 0.0010147 seconds +2026-03-27T14:01:10.0366761Z 15:01:10.035 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI using Guid(53caebc5909234b4ebe1fcaf3dc913a5) (DefaultImporter) -> (artifact id: '6cea7121aaed435492ec2cc2e4bf06a4') in 0.0010556 seconds +2026-03-27T14:01:10.0401383Z 15:01:10.037 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI using Guid(742654cad2425334696ba6ed4495cfef) (DefaultImporter) -> (artifact id: 'd1046547fc52369f9a3a8f6b662ded51') in 0.0010525 seconds +2026-03-27T14:01:10.0429381Z 15:01:10.042 | Start importing Packages/com.unity.ugui/Editor/UGUI/UI using Guid(853edc343b78a7c4c81cbb3851d48c0a) (DefaultImporter) -> (artifact id: '773a517afa854ab194e9e6794bc9a1cf') in 0.001126 seconds +2026-03-27T14:01:10.0442978Z 15:01:10.043 | Start importing Packages/com.unity.ugui/Editor/UGUI/EventSystem using Guid(f525580684527b147b70cf94aaa70dbc) (DefaultImporter) -> (artifact id: '35f8d6adc1fe92d630cb18996309700e') in 0.000963 seconds +2026-03-27T14:01:10.0451244Z 15:01:10.044 | Start importing Packages/com.unity.ugui/Editor/Analytics/IAnalytic using Guid(77417b0f4cf6d334f916c64448d24133) (DefaultImporter) -> (artifact id: 'a22d0db8c8eb6d464d1b5bd50a6655ab') in 0.000919 seconds +2026-03-27T14:01:10.0459910Z 15:01:10.045 | Start importing Packages/com.unity.ugui/Editor/TMP/PropertyDrawers using Guid(ea7c31b5b377c314db28ad3fabbbd38d) (DefaultImporter) -> (artifact id: 'ebc92ba84e6406c25f912a00cf612866') in 0.00118 seconds +2026-03-27T14:01:10.0467679Z 15:01:10.046 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI using Guid(fae3ac1997e164d1eba5fa5c417cbefd) (DefaultImporter) -> (artifact id: 'a65f00dcb82f453aab04a0f34c97e4e8') in 0.0009856 seconds +2026-03-27T14:01:10.0475395Z 15:01:10.046 | Start importing Packages/com.unity.ugui/Tests/Editor/TMP using Guid(3ddaad49a7bcb4087b403f2225d54840) (DefaultImporter) -> (artifact id: 'dc3536d35fb2a75d225a6a19a3e6094d') in 0.0009009 seconds +2026-03-27T14:01:10.0486495Z 15:01:10.047 | Start importing Packages/com.unity.ugui/Editor/TMP/HDRP using Guid(eecc124dc0b994047aac97ccf8c8ed0a) (DefaultImporter) -> (artifact id: '5b5397f7d63b0f449a7a5706eccb0297') in 0.000989 seconds +2026-03-27T14:01:10.0494724Z 15:01:10.048 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem using Guid(7f27709c942d91541be1fd6aa5cb3d78) (DefaultImporter) -> (artifact id: 'f0d60c8b7f149f215e5d223617964474') in 0.0010109 seconds +2026-03-27T14:01:10.0501378Z 15:01:10.049 | Start importing Packages/com.unity.ugui/Editor/UGUI/Properties using Guid(cf97e54bcd5479a46bdbade48da047cc) (DefaultImporter) -> (artifact id: 'bcc5e4cf73302b79631566aee946fa3b') in 0.000981 seconds +2026-03-27T14:01:10.0516706Z 15:01:10.050 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Image using Guid(1091bc2ad06e3234aac2b2fa2841c09d) (DefaultImporter) -> (artifact id: '94034d6d07fdc201b83d5943f5af1dca') in 0.0009695 seconds +2026-03-27T14:01:10.0524714Z 15:01:10.051 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/RectMask2D using Guid(305ca32be1aa5504aa182f583895dfe4) (DefaultImporter) -> (artifact id: '5feb8431e6a2647400681c0df4eb4982') in 0.0009011 seconds +2026-03-27T14:01:10.0531326Z 15:01:10.052 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/InputField using Guid(c16c54fe03afb5740bcc0a2a295cb79d) (DefaultImporter) -> (artifact id: 'f2549288d5f830259850c3bed852b8b1') in 0.0008937 seconds +2026-03-27T14:01:10.0542135Z 15:01:10.053 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core using Guid(12c42068351bb084abde965d725b9887) (DefaultImporter) -> (artifact id: 'cacc7f0504c10a89d30473ce3cb13775') in 0.0009011 seconds +2026-03-27T14:01:10.0547692Z 15:01:10.054 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Toggle using Guid(e210c8bf2e9c6514d90a1bd77586af1f) (DefaultImporter) -> (artifact id: 'dbc3a78b1232d980c5eec42316701d59') in 0.0009523 seconds +2026-03-27T14:01:10.0553302Z 15:01:10.054 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Button using Guid(239dd6edc8e5cd14585c03e09e86a747) (DefaultImporter) -> (artifact id: 'ac27d701a2faade0a9eb1621f0aeec9d') in 0.0012468 seconds +2026-03-27T14:01:10.0560102Z 15:01:10.055 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/ScrollBar using Guid(43b1467da3d29ae4597a733828cdd84a) (DefaultImporter) -> (artifact id: '9d24d5339ee40185803e2696afc4766b') in 0.0010576 seconds +2026-03-27T14:01:10.0566858Z 15:01:10.056 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Graphic using Guid(8313ea704470a264295ec9e09aec6ebc) (DefaultImporter) -> (artifact id: '08e82deac7b1e19a2c784e9398edc209') in 0.0010767 seconds +2026-03-27T14:01:10.0584397Z 15:01:10.057 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/TextEditor using Guid(93effba7cf7f3824ab0bd048a27a9c02) (DefaultImporter) -> (artifact id: '8eef0647cc6fb4855db6a46795a64f66') in 0.0010167 seconds +2026-03-27T14:01:10.0592991Z 15:01:10.058 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventData using Guid(b3cdabf2f1e76854d8aab5930305d70d) (DefaultImporter) -> (artifact id: '8277f8c996e87ca284549912a55a6cd9') in 0.0009212 seconds +2026-03-27T14:01:10.0598787Z 15:01:10.059 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Animation using Guid(5472815444de2ce45bf2053a4af04b9d) (DefaultImporter) -> (artifact id: '41463e8550df76b3752941ecf4af4827') in 0.0010226 seconds +2026-03-27T14:01:10.0621119Z 15:01:10.061 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Slider using Guid(850af9f3bf6d14143baf2ecfbf25db52) (DefaultImporter) -> (artifact id: '437630b46a69623334e22a1b4d23d60a') in 0.0009734 seconds +2026-03-27T14:01:10.0630245Z 15:01:10.062 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem/Raycasters using Guid(46646a5562f14984690c85ee7b946bc9) (DefaultImporter) -> (artifact id: 'e72938d8295fecfa581dc14542b5af2f') in 0.0009791 seconds +2026-03-27T14:01:10.0670412Z 15:01:10.064 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/CanvasRenderer using Guid(a69b08936f9f74179ae333a4bebe7c54) (DefaultImporter) -> (artifact id: '7671a1463691e0f5dc1af47c30eb63be') in 0.0009512 seconds +2026-03-27T14:01:10.0683088Z 15:01:10.067 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/UI using Guid(e7689eda3a8b1a847a8b197dbe90d9a6) (DefaultImporter) -> (artifact id: '5d2bcf29f5611fa4f2365298e1243e46') in 0.0011836 seconds +2026-03-27T14:01:10.0697036Z 15:01:10.068 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/EventSystem using Guid(98d14ab1acf42df4f88a0561822ac807) (DefaultImporter) -> (artifact id: 'bcce928e3f5b35dd22455a42941bc8ae') in 0.0012499 seconds +2026-03-27T14:01:10.0720538Z 15:01:10.070 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/Canvas using Guid(b86b117346968ac4d9cc63e4385becb7) (DefaultImporter) -> (artifact id: '62133acf800fdf2d38044a65fa104ffd') in 0.0010889 seconds +2026-03-27T14:01:10.0731593Z 15:01:10.072 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/UnityEvent using Guid(e90cc37a5ccf4a44dbecc5b7172ec512) (DefaultImporter) -> (artifact id: 'a0ce3d4c23b3d1b988cb587e10b1d85e') in 0.0010746 seconds +2026-03-27T14:01:10.0747702Z 15:01:10.073 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/InputField using Guid(2a28c2fab6b1bb745a844ef6b908e7ee) (DefaultImporter) -> (artifact id: '9dad4aba2acb736bb41bd9f498f4a598') in 0.0010684 seconds +2026-03-27T14:01:10.0753888Z 15:01:10.074 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Canvas using Guid(9a3557da07c729b4eb774b8e30e157a4) (DefaultImporter) -> (artifact id: '81331dc77753752598b07804ea4cff62') in 0.0009928 seconds +2026-03-27T14:01:10.0763958Z 15:01:10.075 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Dropdown using Guid(bae197be297529d4fa735fbe7c91828d) (DefaultImporter) -> (artifact id: '2aa66bb1fd732c209bdffd9958207bc3') in 0.0010499 seconds +2026-03-27T14:01:10.0792933Z 15:01:10.077 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/MaskClipping using Guid(2bc8a181dfd9de24388de89bb8db7713) (DefaultImporter) -> (artifact id: '0a0c449a5ca7d42ce0c9a97eda0d4d04') in 0.0010109 seconds +2026-03-27T14:01:10.0811168Z 15:01:10.079 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/ScrollRect using Guid(9bedab6f9886aee42b33e424bffdb640) (DefaultImporter) -> (artifact id: 'a0e08ced210bbca101c3d35c258f23e3') in 0.0009725 seconds +2026-03-27T14:01:10.0892510Z 15:01:10.082 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/EventSystem using Guid(ab93e1a81defc3243a6e9cd0df3cb443) (DefaultImporter) -> (artifact id: '642b7155e0374f42426082344e328a0f') in 0.0010869 seconds +2026-03-27T14:01:10.0913490Z 15:01:10.089 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/Slider using Guid(4cfe5ade9a1375e40aed87618b92bd12) (DefaultImporter) -> (artifact id: '91a2980309d6499d37b364770f3dc35d') in 0.0014466 seconds +2026-03-27T14:01:10.0948270Z 15:01:10.091 | Start importing Packages/com.unity.ugui/Editor/UGUI/UI/PropertyDrawers using Guid(bc9aa6d5a7945f34882c442e9e201537) (DefaultImporter) -> (artifact id: '270b585cc009643c70718bcb5358bab0') in 0.0010895 seconds +2026-03-27T14:01:10.0957449Z 15:01:10.095 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Layout using Guid(cc313cc004395df4a9884390556690a5) (DefaultImporter) -> (artifact id: '563d44d617bb73e3ce0b9367beb9f7f6') in 0.0009355 seconds +2026-03-27T14:01:10.0984064Z 15:01:10.096 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/LayoutGroup using Guid(2d9b6ff056b6f484ba6500aa8e06bcf3) (DefaultImporter) -> (artifact id: '1c3147b292d515aadba03fbf6013744b') in 0.0009134 seconds +2026-03-27T14:01:10.0994248Z 15:01:10.098 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements using Guid(5dc64c943466a44498be3b620c743b45) (DefaultImporter) -> (artifact id: '96c94b86d87620112b8e860f107d8e93') in 0.0009714 seconds +2026-03-27T14:01:10.1020054Z 15:01:10.101 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules using Guid(8e78f8a8575e4a04f8337a54e241cdc5) (DefaultImporter) -> (artifact id: 'cf1e069480532a8f3dc9085bfcf71e39') in 0.0009378 seconds +2026-03-27T14:01:10.1070697Z 15:01:10.102 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/CanvasRenderer using Guid(ae242449e9279d44789513b922d3178a) (DefaultImporter) -> (artifact id: 'ee5d432a1318ff51cc5f0f75759cfc19') in 0.000953 seconds +2026-03-27T14:01:10.1118793Z 15:01:10.107 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/Dropdown using Guid(1f71aeacc4a9f1a40b22a1a590331f6b) (DefaultImporter) -> (artifact id: 'f07cb706910528267c831c49a6968d8c') in 0.0010245 seconds +2026-03-27T14:01:10.1156042Z 15:01:10.111 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/Text using Guid(4f9ac6e545d53f94b9f09c85b9576f36) (DefaultImporter) -> (artifact id: '5f05d186dcb1976da8af0bac527eb730') in 0.000972 seconds +2026-03-27T14:01:10.1185254Z 15:01:10.115 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Util using Guid(af30a361ab68260438b6ec3fb7e64500) (DefaultImporter) -> (artifact id: '2b58310aa8804f03a037a2d47189a1c9') in 0.0010439 seconds +2026-03-27T14:01:10.1195014Z 15:01:10.118 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/NestedLayout using Guid(efad3ddb7270ac241b9b1357ec5ee2f2) (DefaultImporter) -> (artifact id: '8bbb7177cd104b80d48b4cfb1dc88884') in 0.0011571 seconds +2026-03-27T14:01:10.1233416Z 15:01:10.122 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/UI/PropertyDrawers using Guid(24333a116497b144f9782b1160984b57) (DefaultImporter) -> (artifact id: '38a6a8db8e66efb4b3e00b0b49edce4d') in 0.0009897 seconds +2026-03-27T14:01:10.1265595Z 15:01:10.125 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Utility using Guid(d63dd1a776d383248a21ec2a8a6e7868) (DefaultImporter) -> (artifact id: 'ddf4baa864d390cb48033641e93bc3ab') in 0.0009605 seconds +2026-03-27T14:01:10.1275197Z 15:01:10.126 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling using Guid(27ed3e221887b3544bd9d6505d4a789f) (DefaultImporter) -> (artifact id: 'a8414d4e7a7ce3589ca9a54f2895a3ea') in 0.0009143 seconds +2026-03-27T14:01:10.1296004Z 15:01:10.127 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/SpecializedCollections using Guid(f8ed4321a98682942b9980996131cf26) (DefaultImporter) -> (artifact id: '5a5ef29bec25f7a3bf7676116a5962c1') in 0.0008767 seconds +2026-03-27T14:01:10.1301665Z 15:01:10.129 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout using Guid(1999349e7f492c947bb6eb70f624382e) (DefaultImporter) -> (artifact id: 'a8e41ce3a6fccc9c9b78c2afb86f94a6') in 0.0009526 seconds +2026-03-27T14:01:10.1307245Z 15:01:10.130 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/EventSystem/InputModuleTests using Guid(7a892c920c8ad2848b469ec9579c5219) (DefaultImporter) -> (artifact id: 'ddbbd39c1ecedea9952da13283fac82b') in 0.0010405 seconds +2026-03-27T14:01:10.1378061Z 15:01:10.130 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MaterialModifiers using Guid(7c6295db74da28645bf49db58b7c9c65) (DefaultImporter) -> (artifact id: 'c8309270d25389008b80d2680377db3a') in 0.0010075 seconds +2026-03-27T14:01:10.1495486Z 15:01:10.143 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers using Guid(cfa73a847eeff06448bb50a8ac6a94e0) (DefaultImporter) -> (artifact id: '4854c52cecabffb60fdd5ed9e9763c1c') in 0.0009445 seconds +2026-03-27T14:01:10.1529324Z 15:01:10.151 | Start importing Packages/com.unity.ugui/Runtime/TMP/Unity.TextMeshPro.asmdef using Guid(6055be8ebefd69e48b49212b09b47b2f) (AssemblyDefinitionImporter) -> (artifact id: '755faf4d872606cabacec4dfdc775f71') in 0.0044638 seconds +2026-03-27T14:01:10.1540927Z 15:01:10.153 | Start importing Packages/com.unity.ugui/Runtime/InternalBridge/Unity.InternalAPIEngineBridge.004.asmdef using Guid(43b111c4a445f446abd2c02e77750ff5) (AssemblyDefinitionImporter) -> (artifact id: '7768f0299b485d6ebc39eb408ad5c375') in 0.0044696 seconds +2026-03-27T14:01:10.1547794Z 15:01:10.154 | Start importing Packages/com.unity.ugui/Editor/Analytics/UnityEditor.UI.Analytics.asmdef using Guid(8394c018a82352f41ae354f7bdad54e3) (AssemblyDefinitionImporter) -> (artifact id: '51a42a6dc598d685998182f7c5c967c4') in 0.0042812 seconds +2026-03-27T14:01:10.1571942Z 15:01:10.156 | Start importing Packages/com.unity.ugui/Editor/UGUI/UnityEditor.UI.asmdef using Guid(343deaaf83e0cee4ca978e7df0b80d21) (AssemblyDefinitionImporter) -> (artifact id: '2c8983ec2b8c747ca5d46e4cfaa1fb19') in 0.00401 seconds +2026-03-27T14:01:10.1588963Z 15:01:10.158 | Start importing Packages/com.unity.ugui/Editor/TMP/Unity.TextMeshPro.Editor.asmdef using Guid(6546d7765b4165b40850b3667f981c26) (AssemblyDefinitionImporter) -> (artifact id: '9560f464d4c68b2cd231f1d640031561') in 0.0091051 seconds +2026-03-27T14:01:10.1604877Z 15:01:10.159 | Start importing Packages/com.unity.ugui/Tests/Editor/TMP/Unity.TextMeshPro.Editor.Tests.asmdef using Guid(656e461844099ae43a609ff6109b0877) (AssemblyDefinitionImporter) -> (artifact id: '30072da98643a3dd2fb6cd04c1e7f82b') in 0.0116644 seconds +2026-03-27T14:01:10.1621702Z 15:01:10.161 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/UnityEngine.UI.Tests.asmdef using Guid(e9745f6a32442194c8dc5a43e9ab86f9) (AssemblyDefinitionImporter) -> (artifact id: '671361ac3978847d29e63ee1cf5da131') in 0.005284 seconds +2026-03-27T14:01:10.1645714Z 15:01:10.163 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UnityEngine.UI.asmdef using Guid(2bafac87e7f4b9b418d9448d219b01ab) (AssemblyDefinitionImporter) -> (artifact id: '535f7aafa4dd215a60024f56978e8d8a') in 0.0062631 seconds +2026-03-27T14:01:10.1657758Z 15:01:10.165 | Start importing Packages/com.unity.ugui/Tests/Runtime/TMP/Unity.TextMeshPro.Tests.asmdef using Guid(bb05cab7d802aa5468f8f2f86840d984) (AssemblyDefinitionImporter) -> (artifact id: '89d48fa439e205f5072672939dd03b3e') in 0.0082333 seconds +2026-03-27T14:01:10.1664652Z 15:01:10.165 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/UnityEditor.UI.EditorTests.asmdef using Guid(7c04f0dfa9243c04681a55d90d3ff3fc) (AssemblyDefinitionImporter) -> (artifact id: 'b0030b2b8f67d12eacbc22c1af1fbac4') in 0.0077054 seconds +2026-03-27T14:01:10.1680886Z 15:01:10.167 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. +2026-03-27T14:01:10.5847543Z 15:01:10.583 | Native extension for iOS target not found +2026-03-27T14:01:10.5854995Z 15:01:10.584 | Native extension for Android target not found +2026-03-27T14:01:10.5865415Z 15:01:10.585 | Native extension for WindowsStandalone target not found +2026-03-27T14:01:11.0075433Z 15:01:11.007 | Sentry Package Installation: Checking if Sentry is installed +2026-03-27T14:01:12.2482123Z 15:01:12.242 | Sentry Package Installation: Project does not contain Sentry. +2026-03-27T14:01:12.2490259Z 15:01:12.248 | Sentry Package Installation: Installing Sentry from Disk +2026-03-27T14:01:12.2495389Z 15:01:12.249 | Sentry Package Installation: Sentry package Path is file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package +2026-03-27T14:01:15.1035039Z 15:01:15.102 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:15.1043966Z 15:01:15.103 | Sentry Package Installation: SUCCESS +2026-03-27T14:01:15.1052015Z 15:01:15.104 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True +2026-03-27T14:01:15.1061002Z 15:01:15.105 | Mono: successfully reloaded assembly +2026-03-27T14:01:15.1071932Z 15:01:15.106 | - Finished resetting the current domain, in 5.026 seconds +2026-03-27T14:01:15.1089274Z 15:01:15.108 | Domain Reload Profiling: 5579ms +2026-03-27T14:01:15.1097280Z 15:01:15.109 | BeginReloadAssembly (391ms) +2026-03-27T14:01:15.1104604Z 15:01:15.109 | ExecutionOrderSort (0ms) +2026-03-27T14:01:15.1113925Z 15:01:15.110 | DisableScriptedObjects (15ms) +2026-03-27T14:01:15.1125438Z 15:01:15.111 | BackupInstance (0ms) +2026-03-27T14:01:15.1134649Z 15:01:15.112 | ReleaseScriptingObjects (0ms) +2026-03-27T14:01:15.1141229Z 15:01:15.113 | CreateAndSetChildDomain (166ms) +2026-03-27T14:01:15.1148503Z 15:01:15.114 | RebuildCommonClasses (51ms) +2026-03-27T14:01:15.1155297Z 15:01:15.115 | RebuildNativeTypeToScriptingClass (16ms) +2026-03-27T14:01:15.1161570Z 15:01:15.115 | initialDomainReloadingComplete (34ms) +2026-03-27T14:01:15.1174077Z 15:01:15.116 | LoadAllAssembliesAndSetupDomain (61ms) +2026-03-27T14:01:15.1180815Z 15:01:15.117 | LoadAssemblies (174ms) +2026-03-27T14:01:15.1188228Z 15:01:15.118 | RebuildTransferFunctionScriptingTraits (0ms) +2026-03-27T14:01:15.1193829Z 15:01:15.118 | AnalyzeDomain (42ms) +2026-03-27T14:01:15.1200348Z 15:01:15.119 | TypeCache.Refresh (31ms) +2026-03-27T14:01:15.1207070Z 15:01:15.120 | TypeCache.ScanAssembly (23ms) +2026-03-27T14:01:15.1212581Z 15:01:15.120 | BuildScriptInfoCaches (7ms) +2026-03-27T14:01:15.1218770Z 15:01:15.121 | ResolveRequiredComponents (2ms) +2026-03-27T14:01:15.1224713Z 15:01:15.122 | FinalizeReload (5026ms) +2026-03-27T14:01:15.1230410Z 15:01:15.122 | ReleaseScriptCaches (0ms) +2026-03-27T14:01:15.1235714Z 15:01:15.123 | RebuildScriptCaches (0ms) +2026-03-27T14:01:15.1240876Z 15:01:15.123 | SetupLoadedEditorAssemblies (4748ms) +2026-03-27T14:01:15.1246770Z 15:01:15.124 | LogAssemblyErrors (0ms) +2026-03-27T14:01:15.1253018Z 15:01:15.124 | InitializePlatformSupportModulesInManaged (328ms) +2026-03-27T14:01:15.1259580Z 15:01:15.125 | SetLoadedEditorAssemblies (3ms) +2026-03-27T14:01:15.1265871Z 15:01:15.126 | BeforeProcessingInitializeOnLoad (175ms) +2026-03-27T14:01:15.1271501Z 15:01:15.126 | ProcessInitializeOnLoadAttributes (139ms) +2026-03-27T14:01:15.1277660Z 15:01:15.127 | ProcessInitializeOnLoadMethodAttributes (4085ms) +2026-03-27T14:01:15.1289958Z 15:01:15.127 | AfterProcessingInitializeOnLoad (17ms) +2026-03-27T14:01:15.1296555Z 15:01:15.129 | EditorAssembliesLoaded (0ms) +2026-03-27T14:01:15.1302674Z 15:01:15.129 | ExecutionOrderSort2 (0ms) +2026-03-27T14:01:15.1308506Z 15:01:15.130 | AwakeInstancesAfterBackupRestoration (18ms) +2026-03-27T14:01:15.5372767Z 15:01:15.536 | [Package Manager] Done resolving packages in 0.15 seconds +2026-03-27T14:01:15.5379856Z 15:01:15.537 | [Package Manager] Registered 39 packages: +2026-03-27T14:01:15.5385237Z 15:01:15.538 | Built-in packages: +2026-03-27T14:01:15.5394169Z 15:01:15.538 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) +2026-03-27T14:01:15.5405413Z 15:01:15.539 | com.unity.ugui@2.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc) +2026-03-27T14:01:15.5410264Z 15:01:15.540 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) +2026-03-27T14:01:15.5416908Z 15:01:15.541 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) +2026-03-27T14:01:15.5423157Z 15:01:15.541 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) +2026-03-27T14:01:15.5428715Z 15:01:15.542 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) +2026-03-27T14:01:15.5433978Z 15:01:15.542 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) +2026-03-27T14:01:15.5439865Z 15:01:15.543 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) +2026-03-27T14:01:15.5445140Z 15:01:15.544 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) +2026-03-27T14:01:15.5452890Z 15:01:15.544 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) +2026-03-27T14:01:15.5459023Z 15:01:15.545 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) +2026-03-27T14:01:15.5466871Z 15:01:15.546 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) +2026-03-27T14:01:15.5474058Z 15:01:15.546 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) +2026-03-27T14:01:15.5479609Z 15:01:15.547 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) +2026-03-27T14:01:15.5484965Z 15:01:15.548 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) +2026-03-27T14:01:15.5490714Z 15:01:15.548 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) +2026-03-27T14:01:15.5496120Z 15:01:15.549 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) +2026-03-27T14:01:15.5501301Z 15:01:15.549 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) +2026-03-27T14:01:15.5506921Z 15:01:15.550 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) +2026-03-27T14:01:15.5512990Z 15:01:15.550 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) +2026-03-27T14:01:15.5517934Z 15:01:15.551 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) +2026-03-27T14:01:15.5523706Z 15:01:15.551 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) +2026-03-27T14:01:15.5533719Z 15:01:15.552 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) +2026-03-27T14:01:15.5541524Z 15:01:15.553 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) +2026-03-27T14:01:15.5546999Z 15:01:15.554 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) +2026-03-27T14:01:15.5552420Z 15:01:15.554 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) +2026-03-27T14:01:15.5557505Z 15:01:15.555 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) +2026-03-27T14:01:15.5562683Z 15:01:15.555 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) +2026-03-27T14:01:15.5571048Z 15:01:15.556 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) +2026-03-27T14:01:15.5577825Z 15:01:15.557 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) +2026-03-27T14:01:15.5582843Z 15:01:15.557 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) +2026-03-27T14:01:15.5588111Z 15:01:15.558 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) +2026-03-27T14:01:15.5593184Z 15:01:15.558 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) +2026-03-27T14:01:15.5599565Z 15:01:15.559 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) +2026-03-27T14:01:15.5607464Z 15:01:15.560 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) +2026-03-27T14:01:15.5616177Z 15:01:15.560 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) +2026-03-27T14:01:15.5622161Z 15:01:15.561 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) +2026-03-27T14:01:15.5631040Z 15:01:15.562 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) +2026-03-27T14:01:15.5636768Z 15:01:15.563 | Local packages: +2026-03-27T14:01:15.5643554Z 15:01:15.563 | io.sentry.unity@file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package) +2026-03-27T14:01:15.5648980Z 15:01:15.564 | [Subsystems] No new subsystems found in resolved package list. +2026-03-27T14:01:15.5654371Z 15:01:15.565 | [Package Manager] Done registering packages in 0.00 seconds +2026-03-27T14:01:15.5659666Z 15:01:15.565 | Refreshing native plugins compatible for Editor in 5.06 ms, found 1 plugins. +2026-03-27T14:01:17.1591627Z 15:01:16.805 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:17.4349227Z 15:01:17.284 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.Switch.dll" --timestamp 639102204764504749 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" +2026-03-27T14:01:17.4662812Z 15:01:17.459 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:17.5073501Z 15:01:17.468 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Editor/iOS/Sentry.Unity.Editor.iOS.dll" --timestamp 639102204759465959 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" +2026-03-27T14:01:17.5157474Z 15:01:17.510 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:17.5195779Z 15:01:17.516 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Editor/Sentry.Unity.Editor.dll" --timestamp 639102204758228259 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" +2026-03-27T14:01:17.5226416Z 15:01:17.517 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:17.5255177Z 15:01:17.518 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Android.dll" --timestamp 639102204761994715 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" +2026-03-27T14:01:17.5288996Z 15:01:17.519 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:17.5321354Z 15:01:17.520 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.PlayStation.dll" --timestamp 639102204763271162 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" +2026-03-27T14:01:17.5360247Z 15:01:17.523 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:17.5393798Z 15:01:17.523 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.dll" --timestamp 639102204756923087 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" +2026-03-27T14:01:17.5422108Z 15:01:17.524 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:17.5451059Z 15:01:17.526 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.iOS.dll" --timestamp 639102204765772180 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" +2026-03-27T14:01:17.5476387Z 15:01:17.527 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:17.5504171Z 15:01:17.533 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.dll" --timestamp 639102204760753690 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" +2026-03-27T14:01:17.9467962Z 15:01:17.946 | [API Updater] Processing imported assemblies took 2071 ms (8/8 assembly(ies)). +2026-03-27T14:01:19.2576285Z 15:01:18.814 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:19.6803001Z 15:01:19.370 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmpdd9b93e.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" +2026-03-27T14:01:19.9335097Z 15:01:19.775 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:20.4205577Z 15:01:20.071 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:20.9755343Z 15:01:20.576 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp5c2506d9.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" +2026-03-27T14:01:21.0290453Z 15:01:21.027 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:21.0374433Z 15:01:21.029 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Editor/Sentry.Unity.Editor.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp5c860459.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEditor.dll" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" +2026-03-27T14:01:21.0946704Z 15:01:21.046 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:21.1336045Z 15:01:21.108 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.iOS.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp3d797e5f.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" +2026-03-27T14:01:21.1444048Z 15:01:21.135 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:21.1489516Z 15:01:21.144 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Android.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp50e59810.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" +2026-03-27T14:01:21.1533079Z 15:01:21.151 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:21.1575356Z 15:01:21.153 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.Switch.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp36e64478.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" +2026-03-27T14:01:21.1682518Z 15:01:21.160 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe +2026-03-27T14:01:21.1782149Z 15:01:21.169 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.PlayStation.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp180b80ba.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" +2026-03-27T14:01:21.1871425Z 15:01:21.179 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Editor/iOS/Sentry.Unity.Editor.iOS.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp24c2e7c8.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEditor.dll" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" +2026-03-27T14:01:22.0098717Z 15:01:22.008 | [API Updater] Assemblies not requiring updates: +2026-03-27T14:01:22.0119869Z 15:01:22.010 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.dll +2026-03-27T14:01:22.0131232Z 15:01:22.012 | [API Updater] Packages/io.sentry.unity/Editor/Sentry.Unity.Editor.dll +2026-03-27T14:01:22.0139703Z 15:01:22.013 | [API Updater] Packages/io.sentry.unity/Editor/iOS/Sentry.Unity.Editor.iOS.dll +2026-03-27T14:01:22.0152735Z 15:01:22.014 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.dll +2026-03-27T14:01:22.0159305Z 15:01:22.015 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.Android.dll +2026-03-27T14:01:22.0172153Z 15:01:22.016 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.PlayStation.dll +2026-03-27T14:01:22.0179294Z 15:01:22.017 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.Switch.dll +2026-03-27T14:01:22.0185536Z 15:01:22.018 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.iOS.dll +2026-03-27T14:01:22.0194914Z 15:01:22.018 | [API Updater] Update finished with success in 4004 ms (0/8 assembly(ies) updated). +2026-03-27T14:01:22.0204284Z 15:01:22.019 | Assembly Updater Post Process Assets time: 6.082088s +2026-03-27T14:01:22.0209683Z 15:01:22.020 | [ScriptCompilation] Requested script compilation because: Assembly Definition File(s) changed +2026-03-27T14:01:22.0223734Z 15:01:22.021 | [ScriptCompilation] Requested script compilation because: Assetdatabase observed changes in script compilation related files +2026-03-27T14:01:22.0369667Z 15:01:22.027 | AssetDatabase: script compilation time: 0.000705s +2026-03-27T14:01:22.0439625Z 15:01:22.039 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies +2026-03-27T14:01:22.0533276Z 15:01:22.051 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:22.4598968Z 15:01:22.459 | ExitCode: 4 Duration: 0s136ms +2026-03-27T14:01:22.4609913Z 15:01:22.460 | Rebuilding DAG because FileSignature timestamp changed: Library/Bee/1900b0aE-inputdata.json +2026-03-27T14:01:22.4620207Z 15:01:22.461 | *** Tundra requires additional run (0.04 seconds), 0 items updated, 120 evaluated +2026-03-27T14:01:22.4630648Z 15:01:22.462 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aE.dag.json" "Library/Bee/1900b0aE-inputdata.json" "Library\Bee\buildprogram0.traceevents" +2026-03-27T14:01:22.4636551Z 15:01:22.463 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:22.8889494Z 15:01:22.879 | ExitCode: 0 Duration: 0s450ms +2026-03-27T14:01:22.8897619Z 15:01:22.889 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aE.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssemblies +2026-03-27T14:01:22.8904661Z 15:01:22.889 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:28.6207071Z 15:01:28.617 | ExitCode: 0 Duration: 5s983ms +2026-03-27T14:01:28.6243153Z 15:01:28.622 | Finished compiling graph: 252 nodes, 2367 flattened edges (2243 ToBuild, 22 ToUse), maximum node priority 113 +2026-03-27T14:01:28.6251349Z 15:01:28.624 | [175/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.rsp2 +2026-03-27T14:01:28.6259355Z 15:01:28.625 | [176/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp +2026-03-27T14:01:28.6271423Z 15:01:28.626 | [180/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp +2026-03-27T14:01:28.6281436Z 15:01:28.627 | [181/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp +2026-03-27T14:01:28.6289982Z 15:01:28.628 | [182/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.rsp +2026-03-27T14:01:28.6298151Z 15:01:28.629 | [183/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.UnityAdditionalFile.txt +2026-03-27T14:01:28.6305015Z 15:01:28.630 | [184/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.rsp +2026-03-27T14:01:28.6315099Z 15:01:28.631 | [185/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.dll.mvfrm.rsp +2026-03-27T14:01:28.6386100Z 15:01:28.632 | [186/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.rsp +2026-03-27T14:01:28.6423059Z 15:01:28.640 | [187/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp +2026-03-27T14:01:28.6459768Z 15:01:28.644 | [188/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.rsp +2026-03-27T14:01:28.6486925Z 15:01:28.646 | [189/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.rsp +2026-03-27T14:01:28.6520493Z 15:01:28.651 | [190/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.UnityAdditionalFile.txt +2026-03-27T14:01:28.6528949Z 15:01:28.652 | [194/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.rsp2 +2026-03-27T14:01:28.6536566Z 15:01:28.653 | [195/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.dll.mvfrm.rsp +2026-03-27T14:01:28.6544950Z 15:01:28.654 | [196/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.rsp +2026-03-27T14:01:28.6562601Z 15:01:28.654 | [197/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp +2026-03-27T14:01:28.6585146Z 15:01:28.657 | [198/249 1s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others) +2026-03-27T14:01:28.6593198Z 15:01:28.658 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6609103Z 15:01:28.659 | [201/249 0s] CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb +2026-03-27T14:01:28.6616815Z 15:01:28.661 | [202/249 0s] CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll +2026-03-27T14:01:28.6629211Z 15:01:28.661 | [203/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others) +2026-03-27T14:01:28.6640261Z 15:01:28.663 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6651646Z 15:01:28.664 | [207/249 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb +2026-03-27T14:01:28.6659604Z 15:01:28.665 | [208/249 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll +2026-03-27T14:01:28.6671068Z 15:01:28.666 | [209/249 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.dll.mvfrm +2026-03-27T14:01:28.6682224Z 15:01:28.667 | [210/249 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.dll.mvfrm +2026-03-27T14:01:28.6691783Z 15:01:28.668 | [211/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) +2026-03-27T14:01:28.6698402Z 15:01:28.669 | [212/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) +2026-03-27T14:01:28.6706374Z 15:01:28.670 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6719065Z 15:01:28.671 | [215/249 0s] CopyFiles Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.004.dll +2026-03-27T14:01:28.6727589Z 15:01:28.672 | [216/249 0s] CopyFiles Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.004.pdb +2026-03-27T14:01:28.6734400Z 15:01:28.673 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6742657Z 15:01:28.673 | [219/249 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.dll +2026-03-27T14:01:28.6752930Z 15:01:28.674 | [220/249 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.pdb +2026-03-27T14:01:28.6759551Z 15:01:28.675 | [221/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.dll (+2 others) +2026-03-27T14:01:28.6773123Z 15:01:28.676 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6789641Z 15:01:28.678 | [222/249 0s] CopyFiles Library/ScriptAssemblies/io.sentry.unity.runtime.pdb +2026-03-27T14:01:28.6796554Z 15:01:28.679 | [223/249 0s] CopyFiles Library/ScriptAssemblies/io.sentry.unity.runtime.dll +2026-03-27T14:01:28.6809583Z 15:01:28.680 | [224/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) +2026-03-27T14:01:28.6816704Z 15:01:28.681 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6823013Z 15:01:28.681 | [226/249 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.pdb +2026-03-27T14:01:28.6831044Z 15:01:28.682 | [227/249 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.dll +2026-03-27T14:01:28.6838458Z 15:01:28.683 | [228/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.dll (+2 others) +2026-03-27T14:01:28.6845341Z 15:01:28.684 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6851505Z 15:01:28.684 | [229/249 0s] CopyFiles Library/ScriptAssemblies/io.sentry.unity.editor.pdb +2026-03-27T14:01:28.6859744Z 15:01:28.685 | [230/249 0s] CopyFiles Library/ScriptAssemblies/io.sentry.unity.editor.dll +2026-03-27T14:01:28.6868086Z 15:01:28.686 | [231/249 1s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others) +2026-03-27T14:01:28.6874944Z 15:01:28.687 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6883728Z 15:01:28.687 | [235/249 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb +2026-03-27T14:01:28.6889562Z 15:01:28.688 | [236/249 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll +2026-03-27T14:01:28.6896839Z 15:01:28.689 | [237/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll (+2 others) +2026-03-27T14:01:28.6904662Z 15:01:28.689 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6911751Z 15:01:28.690 | [239/249 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.Analytics.pdb +2026-03-27T14:01:28.6919065Z 15:01:28.691 | [240/249 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.Analytics.dll +2026-03-27T14:01:28.6925638Z 15:01:28.692 | [241/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others) +2026-03-27T14:01:28.6942657Z 15:01:28.692 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:01:28.6952635Z 15:01:28.694 | [244/249 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb +2026-03-27T14:01:28.6960101Z 15:01:28.695 | [245/249 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll +2026-03-27T14:01:28.6968820Z 15:01:28.696 | [246/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others) +2026-03-27T14:01:28.6979798Z 15:01:28.697 | [247/249 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb +2026-03-27T14:01:28.6987773Z 15:01:28.698 | [248/249 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll +2026-03-27T14:01:28.6995097Z 15:01:28.699 | *** Tundra build success (5.90 seconds), 52 items updated, 249 evaluated +2026-03-27T14:01:28.7000803Z 15:01:28.699 | Reloading assemblies after forced synchronous recompile. +2026-03-27T14:01:28.7007078Z 15:01:28.700 | Begin MonoManager ReloadAssembly +2026-03-27T14:01:29.9495651Z 15:01:29.924 | - Loaded All Assemblies, in 1.214 seconds +2026-03-27T14:01:29.9513373Z 15:01:29.950 | Start importing Packages/io.sentry.unity using Guid(ffbfb28b43bc86bfc160c31ef4dbee72) (DefaultImporter) -> (artifact id: 'c3b4df25ed0d46f047478b363ecc217e') in 0.0198375 seconds +2026-03-27T14:01:30.0053121Z 15:01:29.962 | Start importing Packages/io.sentry.unity/Prefabs using Guid(51fe92947d3333656a0735e1a0733e7e) (DefaultImporter) -> (artifact id: 'da3533932b662fd2670fa895e6e79ae2') in 0.0011656 seconds +2026-03-27T14:01:30.0417542Z 15:01:30.016 | Start importing Packages/io.sentry.unity/Runtime using Guid(235ff351c28694b85b96cec3402537c5) (DefaultImporter) -> (artifact id: '0950db5a1b2b92224a4edc84e13a9f4a') in 0.001197 seconds +2026-03-27T14:01:30.0912162Z 15:01:30.057 | Start importing Packages/io.sentry.unity/Editor using Guid(370a7eb2c00d5e9ec826bffee981bb1d) (DefaultImporter) -> (artifact id: '298149fc3c44536cf616da833447a341') in 0.0011148 seconds +2026-03-27T14:01:30.1407804Z 15:01:30.112 | Start importing Packages/io.sentry.unity/Plugins using Guid(690efafeb9bc95f97b1171bd3246d1d0) (DefaultImporter) -> (artifact id: 'd1afe3dab59a82b5d78ca263a7a9156f') in 0.0011662 seconds +2026-03-27T14:01:30.1764013Z 15:01:30.159 | Start importing Packages/io.sentry.unity/Textures using Guid(8b787da61b571759f94b625b3dd0159a) (DefaultImporter) -> (artifact id: '1b4c1106cf2104d13da047ee8d5d6eb0') in 0.0013268 seconds +2026-03-27T14:01:30.2455180Z 15:01:30.204 | Start importing Packages/io.sentry.unity/Plugins/Switch using Guid(b12de30df69aa2562b993a4304f54337) (DefaultImporter) -> (artifact id: '7fa63d9871e382c3e5453e9001da266c') in 0.0012828 seconds +2026-03-27T14:01:30.2968858Z 15:01:30.259 | Start importing Packages/io.sentry.unity/Plugins/Windows using Guid(735fcb55e3f4de568b42bad429cb4bc9) (DefaultImporter) -> (artifact id: 'bb6deec5da95575a05dfefceb52d1422') in 0.001162 seconds +2026-03-27T14:01:30.3531158Z 15:01:30.312 | Start importing Packages/io.sentry.unity/Plugins/macOS using Guid(c3e00d44b0b82397e83dac57bac36e5a) (DefaultImporter) -> (artifact id: '4552e09eb92dcae6b326ffaf60d234e6') in 0.0011588 seconds +2026-03-27T14:01:30.3872841Z 15:01:30.362 | Start importing Packages/io.sentry.unity/Plugins/Android using Guid(64e962d9a6b927ccab1bb8fa454e1594) (DefaultImporter) -> (artifact id: '1952278358d58bacd08ce4c6c35a9c70') in 0.0011974 seconds +2026-03-27T14:01:30.4027193Z 15:01:30.396 | Start importing Packages/io.sentry.unity/Plugins/Linux using Guid(2658da86ffaa8887083aee971c512504) (DefaultImporter) -> (artifact id: '66e3d332e93d0fe53760383ce9d35798') in 0.0013335 seconds +2026-03-27T14:01:30.4335884Z 15:01:30.407 | Start importing Packages/io.sentry.unity/Editor/sentry-cli using Guid(09e1774b205d95ce5b1eb2f6d8d2d115) (DefaultImporter) -> (artifact id: 'c7dc63c47762fea8e0b66ac0717003e4') in 0.0023411 seconds +2026-03-27T14:01:30.4634279Z 15:01:30.449 | Start importing Packages/io.sentry.unity/Plugins/PS5 using Guid(9b642d893b854679c940cf1b670a3dad) (DefaultImporter) -> (artifact id: 'd681a91cebaa2a4f01c955fdf589ba69') in 0.0029894 seconds +2026-03-27T14:01:30.4688747Z 15:01:30.463 | Start importing Packages/io.sentry.unity/Plugins/iOS using Guid(5c30a880f9fe94f5f8919a9408c31603) (DefaultImporter) -> (artifact id: 'e835e66fb50c889fcc05f581cf9ebfeb') in 0.0030988 seconds +2026-03-27T14:01:30.4703991Z 15:01:30.469 | Start importing Packages/io.sentry.unity/Editor/iOS using Guid(2eed947c7b31be004a8f6343419604d3) (DefaultImporter) -> (artifact id: 'd66e5795d9c81389f27cd33e59feca01') in 0.0014709 seconds +2026-03-27T14:01:30.5088028Z 15:01:30.476 | Start importing Packages/io.sentry.unity/Plugins/Windows/Sentry using Guid(e77f31e2d39d8812093b6153cc9cf7c0) (DefaultImporter) -> (artifact id: '29b974c9e328c7d01e67b200538a607c') in 0.0011965 seconds +2026-03-27T14:01:30.5513285Z 15:01:30.518 | Start importing Packages/io.sentry.unity/Plugins/Linux/Sentry using Guid(f967294226874f3439ffb388b1b4c870) (DefaultImporter) -> (artifact id: '7c89b5ad017c1b18364d4754b8a7a60a') in 0.0014315 seconds +2026-03-27T14:01:30.5711456Z 15:01:30.560 | Start importing Packages/io.sentry.unity/Plugins/macOS/Sentry using Guid(5c763816d22d40c8084337fa1e644eb3) (DefaultImporter) -> (artifact id: '8ce4d0e09356a65bf60358ff56bc0fd0') in 0.0012162 seconds +2026-03-27T14:01:30.5779449Z 15:01:30.575 | Start importing Packages/io.sentry.unity/Runtime/io.sentry.unity.runtime.asmdef using Guid(c18c74693c5844315b1f3cd5ae87afb4) (AssemblyDefinitionImporter) -> (artifact id: '6df188ee3ced27f362a9b50d6b4c59e4') in 0.0143566 seconds +2026-03-27T14:01:30.5789076Z 15:01:30.578 | Start importing Packages/io.sentry.unity/Editor/io.sentry.unity.editor.asmdef using Guid(44d1302543d7846bfb5a312d6ccf57d8) (AssemblyDefinitionImporter) -> (artifact id: 'ffa75af808648c14e14cf5d1d28e026c') in 0.0099099 seconds +2026-03-27T14:01:30.5796491Z 15:01:30.579 | Refreshing native plugins compatible for Editor in 15.56 ms, found 1 plugins. +2026-03-27T14:01:31.0487239Z 15:01:30.987 | Native extension for iOS target not found +2026-03-27T14:01:31.0855054Z 15:01:31.056 | Native extension for Android target not found +2026-03-27T14:01:31.1287326Z 15:01:31.094 | Native extension for WindowsStandalone target not found +2026-03-27T14:01:31.5560044Z 15:01:31.550 | Sentry Package Installation: Checking if Sentry is installed +2026-03-27T14:01:32.7888986Z 15:01:32.778 | Sentry Package Installation: Project contains Sentry. +2026-03-27T14:01:32.8207560Z 15:01:32.796 | Sentry Package Installation: Installing Sentry from Disk +2026-03-27T14:01:32.8225258Z 15:01:32.821 | Sentry Package Installation: Sentry package Path is file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package +2026-03-27T14:01:35.6701724Z 15:01:35.669 | Sentry Package Installation: SUCCESS +2026-03-27T14:01:35.6707732Z 15:01:35.670 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True +2026-03-27T14:01:35.6713617Z 15:01:35.670 | Mono: successfully reloaded assembly +2026-03-27T14:01:35.6719224Z 15:01:35.671 | - Finished resetting the current domain, in 5.550 seconds +2026-03-27T14:01:35.6726909Z 15:01:35.672 | Domain Reload Profiling: 6740ms +2026-03-27T14:01:35.6733288Z 15:01:35.672 | BeginReloadAssembly (536ms) +2026-03-27T14:01:35.6738806Z 15:01:35.673 | ExecutionOrderSort (0ms) +2026-03-27T14:01:35.6744893Z 15:01:35.674 | DisableScriptedObjects (20ms) +2026-03-27T14:01:35.6750259Z 15:01:35.674 | BackupInstance (0ms) +2026-03-27T14:01:35.6756797Z 15:01:35.675 | ReleaseScriptingObjects (0ms) +2026-03-27T14:01:35.6761167Z 15:01:35.675 | CreateAndSetChildDomain (167ms) +2026-03-27T14:01:35.6767966Z 15:01:35.676 | RebuildCommonClasses (55ms) +2026-03-27T14:01:35.6773577Z 15:01:35.676 | RebuildNativeTypeToScriptingClass (23ms) +2026-03-27T14:01:35.6779177Z 15:01:35.677 | initialDomainReloadingComplete (108ms) +2026-03-27T14:01:35.6784588Z 15:01:35.678 | LoadAllAssembliesAndSetupDomain (467ms) +2026-03-27T14:01:35.6790534Z 15:01:35.678 | LoadAssemblies (661ms) +2026-03-27T14:01:35.6796825Z 15:01:35.679 | RebuildTransferFunctionScriptingTraits (0ms) +2026-03-27T14:01:35.6801958Z 15:01:35.679 | AnalyzeDomain (103ms) +2026-03-27T14:01:35.6807702Z 15:01:35.680 | TypeCache.Refresh (86ms) +2026-03-27T14:01:35.6813613Z 15:01:35.680 | TypeCache.ScanAssembly (77ms) +2026-03-27T14:01:35.6818758Z 15:01:35.681 | BuildScriptInfoCaches (11ms) +2026-03-27T14:01:35.6823848Z 15:01:35.682 | ResolveRequiredComponents (3ms) +2026-03-27T14:01:35.6829046Z 15:01:35.682 | FinalizeReload (5550ms) +2026-03-27T14:01:35.6835963Z 15:01:35.683 | ReleaseScriptCaches (0ms) +2026-03-27T14:01:35.6841219Z 15:01:35.683 | RebuildScriptCaches (0ms) +2026-03-27T14:01:35.6849922Z 15:01:35.684 | SetupLoadedEditorAssemblies (5270ms) +2026-03-27T14:01:35.6855348Z 15:01:35.685 | LogAssemblyErrors (0ms) +2026-03-27T14:01:35.6861565Z 15:01:35.685 | InitializePlatformSupportModulesInManaged (593ms) +2026-03-27T14:01:35.6869020Z 15:01:35.686 | SetLoadedEditorAssemblies (4ms) +2026-03-27T14:01:35.6877894Z 15:01:35.687 | BeforeProcessingInitializeOnLoad (358ms) +2026-03-27T14:01:35.6883886Z 15:01:35.687 | ProcessInitializeOnLoadAttributes (212ms) +2026-03-27T14:01:35.6891311Z 15:01:35.688 | ProcessInitializeOnLoadMethodAttributes (4084ms) +2026-03-27T14:01:35.6897954Z 15:01:35.689 | AfterProcessingInitializeOnLoad (17ms) +2026-03-27T14:01:35.6904216Z 15:01:35.689 | EditorAssembliesLoaded (0ms) +2026-03-27T14:01:35.6911509Z 15:01:35.690 | ExecutionOrderSort2 (0ms) +2026-03-27T14:01:35.6917295Z 15:01:35.691 | AwakeInstancesAfterBackupRestoration (23ms) +2026-03-27T14:01:35.6923091Z 15:01:35.691 | Start importing Assets/Scenes/Test.unity using Guid(111b0e90e6e19204eb5c7921bda41757) (DefaultImporter) -> (artifact id: '373666bb460e00c59dae36229f70664b') in 0.0179651 seconds +2026-03-27T14:01:35.6932032Z 15:01:35.692 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.Switch.pdb using Guid(657d0cd4b6ba18e2fb324a39c987d116) (DefaultImporter) +2026-03-27T14:01:36.1089946Z 15:01:36.103 | -> (artifact id: 'b9bd2fd0eb441124fc2a97036ee8f5d6') in 0.0411861 seconds +2026-03-27T14:01:36.1290153Z 15:01:36.124 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.iOS.pdb using Guid(3692fdba3858c6f898e6a6e8f188a2ed) (DefaultImporter) -> (artifact id: '45688bf50184359a303984816778e8f2') in 0.0014065 seconds +2026-03-27T14:01:36.1300874Z 15:01:36.129 | Start importing Packages/io.sentry.unity/Runtime/Sentry.pdb using Guid(97648842ca815ef60bcffa8b80998858) (DefaultImporter) -> (artifact id: '4f50cc795364e9a913680e0841724a8b') in 0.001233 seconds +2026-03-27T14:01:36.1308101Z 15:01:36.130 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.pdb using Guid(8863cec8b0af7476c8cc68ab331c6603) (DefaultImporter) -> (artifact id: 'a5708bd74363b2b895be26b254cb246a') in 0.001108 seconds +2026-03-27T14:01:36.1315474Z 15:01:36.131 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.pdb using Guid(e896c2a235545d90d8028dbb2b67b813) (DefaultImporter) -> (artifact id: 'ea4ec048c30fdd1a507bd6bd600a48fd') in 0.0012158 seconds +2026-03-27T14:01:36.1323204Z 15:01:36.131 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.PlayStation.pdb using Guid(1c9e3ddd2d7cc15819d9679059aaf1f0) (DefaultImporter) -> (artifact id: '969d6dd92fbef73ffa7523015fdc9d20') in 0.0013069 seconds +2026-03-27T14:01:36.1330843Z 15:01:36.132 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.Android.pdb using Guid(2c8453925b682a03a9d2d686cf70f282) (DefaultImporter) -> (artifact id: 'a46e5fc4a2f01f3544ce47bfbbe3a46c') in 0.0011141 seconds +2026-03-27T14:01:36.1336689Z 15:01:36.133 | Start importing Packages/com.unity.ugui/Package Resources/TMP Examples & Extras.unitypackage using Guid(bc00e25696e4132499f56528d3fed2e3) (DefaultImporter) -> (artifact id: '36912524d77e494bff28eadb6545a86b') in 0.0197487 seconds +2026-03-27T14:01:36.1342589Z 15:01:36.133 | Start importing Packages/com.unity.ugui/Package Resources/TMP Essential Resources.unitypackage using Guid(ce4ff17ca867d2b48b5c8a4181611901) (DefaultImporter) -> (artifact id: 'c9b9d0e8e0d8a5df2fad0e13885ca7c4') in 0.0012645 seconds +2026-03-27T14:01:36.1348344Z 15:01:36.134 | Start importing Packages/io.sentry.unity/Editor/sentry-cli/sentry-cli-Windows-x86_64.exe using Guid(458578f2a4add5c07bd4f73bb827199e) (DefaultImporter) -> (artifact id: '187545e59ebd1def8701ef5979ee0aa2') in 0.0058071 seconds +2026-03-27T14:01:36.1372807Z 15:01:36.134 | Start importing Packages/io.sentry.unity/Editor/sentry-cli/sentry-cli-Linux-x86_64 using Guid(a8b351b309efd0c4db3e088be0decddb) (DefaultImporter) -> (artifact id: '97738751ba96d41e3ec70e41ff77bb89') in 0.0012501 seconds +2026-03-27T14:01:36.1384896Z 15:01:36.138 | Start importing Packages/io.sentry.unity/Plugins/Android/proguard-sentry-unity.pro using Guid(6979c20e239edd8b2bb9b2a47e5ae9c8) (DefaultImporter) -> (artifact id: 'e421db79c0792ffb6e1cc1c1ce53a3f7') in 0.0075675 seconds +2026-03-27T14:01:36.1390300Z 15:01:36.138 | Start importing Packages/io.sentry.unity/Editor/sentry-cli/sentry-cli-Darwin-universal using Guid(0aa329d55d5014f7185675f43e85e97f) (DefaultImporter) -> (artifact id: '9bd82b9599931c2d5d90972a9994b82a') in 0.0012611 seconds +2026-03-27T14:01:36.1404031Z 15:01:36.139 | Start importing Packages/io.sentry.unity/Plugins/macOS/Sentry/Sentry.dylib.dSYM using Guid(713b32144a49c1be3b86ffdd32ee534c) (DefaultImporter) -> (artifact id: 'c67724dccaf94ea96de3057afaa6bd2b') in 0.0059599 seconds +2026-03-27T14:01:36.1514114Z 15:01:36.143 | Start importing Packages/io.sentry.unity/Plugins/Windows/Sentry/crashpad_handler.exe using Guid(a37666dba90004ad1b0a84a5d133b88a) (DefaultImporter) -> (artifact id: '73ebe3a8661b89b264c6438a9b4311ad') in 0.0014963 seconds +2026-03-27T14:01:36.1541124Z 15:01:36.153 | Start importing Packages/io.sentry.unity/Plugins/Windows/Sentry/sentry.pdb using Guid(c3e1ea2e738644c3691d0ae4ba554ebd) (DefaultImporter) -> (artifact id: '5bf8947e196f111365e7839fffff47fe') in 0.0012873 seconds +2026-03-27T14:01:36.1545588Z 15:01:36.154 | Start importing Packages/io.sentry.unity/Textures/Logo.png using Guid(d0c73c7edf6ed43b698bca840264c8a4) (TextureImporter) -> (artifact id: '909711a3ce3a435fdd99931f2fe5cd05') in 0.0346791 seconds +2026-03-27T14:01:36.1557075Z 15:01:36.154 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignRight_Light.psd using Guid(e05ace3bd15740cda0bad60d89092a5b) (TextureImporter) -> (artifact id: '3ae2da72bf1686738c7601cd42aaeb24') in 0.0179429 seconds +2026-03-27T14:01:36.1563224Z 15:01:36.155 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMiddle.psd using Guid(41b96614b2e6494ba995ddcd252d11ae) (TextureImporter) -> (artifact id: '3e6a22371aae2fa8979dc9002e0c4b2d') in 0.0076289 seconds +2026-03-27T14:01:36.1570911Z 15:01:36.156 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenter.psd using Guid(81ed8c76d2bc4a4c95d092c98af4e58f) (TextureImporter) -> (artifact id: 'd580bcccf1f72402bf3514320ec9a359') in 0.0067999 seconds +2026-03-27T14:01:36.1576488Z 15:01:36.157 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignLeft_Light.psd using Guid(12736c98af174f91827a26b66d2b01b9) (TextureImporter) -> (artifact id: '5e37a4dbf8a2192d921188f40c120843') in 0.0062546 seconds +2026-03-27T14:01:36.1587307Z 15:01:36.158 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignJustified.psd using Guid(92027f7f8cfc4feaa477da0dc38d3d46) (TextureImporter) -> (artifact id: '36165dea4c57002841d731bbe900e79b') in 0.0082353 seconds +2026-03-27T14:01:36.1594047Z 15:01:36.158 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignLeft.psd using Guid(9288066c33474b94b6ee5465f4df1cc0) (TextureImporter) -> (artifact id: '6fc1c81b1e592892edc1f8e8b69f3a5e') in 0.0065843 seconds +2026-03-27T14:01:36.1599863Z 15:01:36.159 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMidLine.psd using Guid(c2f7f6a88b4c4f20a53deb72f3d9144c) (TextureImporter) -> (artifact id: '3781f0bdb3e2d0ea2607934bec2312ea') in 0.0058002 seconds +2026-03-27T14:01:36.1605340Z 15:01:36.160 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/SectionHeader_Light.psd using Guid(e3b0f810fdea84e40ab4ba20f256f7e8) (TextureImporter) -> (artifact id: 'b0f169dbaea8eb4c122911ad6cf336d4') in 0.0057109 seconds +2026-03-27T14:01:36.1611628Z 15:01:36.160 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignRight.psd using Guid(342a0f8aca7f4f0691338912faec0494) (TextureImporter) -> (artifact id: 'c9354f64110ee8e6a604bb87abb4700e') in 0.0062432 seconds +2026-03-27T14:01:36.1620664Z 15:01:36.161 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignFlush_Light.psd using Guid(64b9fad609434c489c32b1cdf2004a1c) (TextureImporter) -> (artifact id: '68e147723765e53a92f74a0f1ecac749') in 0.0105863 seconds +2026-03-27T14:01:36.1627962Z 15:01:36.162 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenterGeo_Light.psd using Guid(35ff0937876540d3bd4b6a941df62a92) (TextureImporter) -> (artifact id: 'b2dbfa2e919c523144acf4d29a4086b4') in 0.006324 seconds +2026-03-27T14:01:36.1633768Z 15:01:36.162 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMiddle_Light.psd using Guid(066619c9c9c84f89acb1b48c11a7efe2) (TextureImporter) -> (artifact id: '4f0fef57b5323515800ee9e3fd4137ca') in 0.0098815 seconds +2026-03-27T14:01:36.1654401Z 15:01:36.163 | Start importing Packages/io.sentry.unity/Textures/Megaphone.png using Guid(c68f744cc289b4ab1823c5e1159527ec) (TextureImporter) -> (artifact id: '4179c0cd1de6d42ab007201f3b3694a4') in 0.0099641 seconds +2026-03-27T14:01:36.1751747Z 15:01:36.168 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Dropdown Icon.psd using Guid(a7ec9e7ad8b847b7ae4510af83c5d868) (TextureImporter) -> (artifact id: 'badae5e6f9bcdb7a89e0b50331f66ebe') in 0.0075394 seconds +2026-03-27T14:01:36.1778522Z 15:01:36.176 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenterGeo.psd using Guid(c76700ea0062413d9f69409b4e9e151b) (TextureImporter) -> (artifact id: '661f2381c95b068549ad6120b100e68e') in 0.0056951 seconds +2026-03-27T14:01:36.1785150Z 15:01:36.177 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBaseLine_Light.psd using Guid(18775b51e3bd42299fd30bd036ea982f) (TextureImporter) -> (artifact id: '7c3898717057e66bb893aad313df4048') in 0.0061411 seconds +2026-03-27T14:01:36.1798480Z 15:01:36.179 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignTop.psd using Guid(48d034c499ee4697af9dd6e327110249) (TextureImporter) -> (artifact id: '377e2bc0c8a46a7feac89b0a868b49ea') in 0.0113603 seconds +2026-03-27T14:01:36.1808948Z 15:01:36.180 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBottom_Light.psd using Guid(585b70cb75dd43efbfead809c30a1731) (TextureImporter) -> (artifact id: 'ddd843b4cd58bf3fe5836972210b70f4') in 0.0064229 seconds +2026-03-27T14:01:36.1819173Z 15:01:36.181 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCapLine_Light.psd using Guid(49679f302ac6408697f6b9314a38985c) (TextureImporter) -> (artifact id: 'f3fa05c979b30fab1804c431895dbed5') in 0.0090703 seconds +2026-03-27T14:01:36.1830979Z 15:01:36.182 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignFlush.psd using Guid(691475c57a824010be0c6f474caeb7e1) (TextureImporter) -> (artifact id: '61800d9cc974cac89df6e246933e989c') in 0.0265042 seconds +2026-03-27T14:01:36.1865596Z 15:01:36.184 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenter_Light.psd using Guid(6ace62d30f494c948b71d5594afce11d) (TextureImporter) -> (artifact id: 'fde0c963a7583bcd13c4b52439b14f56') in 0.0110497 seconds +2026-03-27T14:01:36.2082337Z 15:01:36.188 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBottom.psd using Guid(ca51b19024094d1b87f3e07edb0a75fb) (TextureImporter) -> (artifact id: 'ee8a53f75400888e77881f338fffdb8b') in 0.0147151 seconds +2026-03-27T14:01:36.2107567Z 15:01:36.209 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignJustified_Light.psd using Guid(fa6bd40a216346b783a4cce741d277a5) (TextureImporter) -> (artifact id: '54891ceb02fa3a16455d60a5f0b33e5d') in 0.0127456 seconds +2026-03-27T14:01:36.2114736Z 15:01:36.210 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBaseLine.psd using Guid(8bc445bb79654bf496c92d0407840a92) (TextureImporter) -> (artifact id: '5eed749faac936ec4575dbb4080dbc58') in 0.0069826 seconds +2026-03-27T14:01:36.2121285Z 15:01:36.211 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMidline_Light.psd using Guid(bb42b2d967d6427983c901a4ffc8ecd9) (TextureImporter) -> (artifact id: 'c472d3099093e430e34f947338a13f87') in 0.010851 seconds +2026-03-27T14:01:36.2256920Z 15:01:36.212 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/SectionHeader_Dark.psd using Guid(fb5730e24283d0c489e5c7d0bee023d9) (TextureImporter) -> (artifact id: '3d7b0a2c1a2ff9005d4ead61e6e14280') in 0.0074494 seconds +2026-03-27T14:01:36.2278354Z 15:01:36.227 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Sprite Asset Icon.psd using Guid(ec7c645d93308c04d8840982af12101e) (TextureImporter) -> (artifact id: '3235c1058a15e38e6ca2680818755ffb') in 0.0074405 seconds +2026-03-27T14:01:36.2297145Z 15:01:36.228 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCapLine.psd using Guid(0d9a36012a224080966c7b55896aa0f9) (TextureImporter) -> (artifact id: 'd63113fc13a2580993720e317e3df39c') in 0.0094743 seconds +2026-03-27T14:01:36.2384278Z 15:01:36.230 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignTop_Light.psd using Guid(ed041e68439749a69d0efa0e3d896c2e) (TextureImporter) -> (artifact id: '3b3d28dadc602d7233d4867a9e8c1438') in 0.0198146 seconds +2026-03-27T14:01:36.2391429Z 15:01:36.238 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Input Field Icon.psd using Guid(3ee40aa79cd242a5b53b0b0ca4f13f0f) (TextureImporter) -> (artifact id: 'b65162605744e453138e152af86801d4') in 0.0098707 seconds +2026-03-27T14:01:36.2398617Z 15:01:36.239 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Font Asset Icon.psd using Guid(ee148e281f3c41c5b4ff5f8a5afe5a6c) (TextureImporter) -> (artifact id: '73ff30085a95e94327fbed6915b7a1c0') in 0.0089624 seconds +2026-03-27T14:01:36.2408136Z 15:01:36.240 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Text Component Icon.psd using Guid(2fd6421f253b4ef1a19526541f9ffc0c) (TextureImporter) -> (artifact id: '8411a3809c882ad7c8b526b6f6e00d81') in 0.0182661 seconds +2026-03-27T14:01:36.2415250Z 15:01:36.241 | Start importing Packages/com.unity.ugui/Editor Resources/Shaders/TMP_SDF_SSD.cginc using Guid(abe6991365a27d341a10580f3b7c0f44) (ShaderIncludeImporter) -> (artifact id: '6210c9b75bcff879a66d3acd3c6dd96f') in 0.0063236 seconds +2026-03-27T14:01:36.2431724Z 15:01:36.242 | Start importing Packages/com.unity.ugui/Editor Resources/Shaders/TMP_Properties.cginc using Guid(3c6c403084eacec478a1129ce20061ea) (ShaderIncludeImporter) -> (artifact id: '0b6510a7584c4ccb00079dbc08b3b282') in 0.0060127 seconds +2026-03-27T14:01:36.2439666Z 15:01:36.243 | Start importing Packages/com.unity.ugui/Editor Resources/Shaders/TMP_SDF Internal Editor.shader using Guid(9c442dc870b456e48b615cd8add0e9ef) (ShaderImporter) +2026-03-27T14:01:36.6536754Z 15:01:36.651 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds +2026-03-27T14:01:36.6544933Z 15:01:36.653 | -> (artifact id: '1d84de99b17eddc779fc1f69810430fa') in 0.4045807 seconds +2026-03-27T14:01:36.6552485Z 15:01:36.654 | Start importing Packages/com.unity.ugui/README.md using Guid(e0ae6629cc70b514889df37fccb76832) (TextScriptImporter) -> (artifact id: '44afeb028f510a9f4544ce88fd1cf112') in 0.0055287 seconds +2026-03-27T14:01:36.6559649Z 15:01:36.655 | Start importing Packages/com.unity.ugui/package.json using Guid(319b8889f363f5947acf209c17a94149) (PackageManifestImporter) -> (artifact id: '1726dd8c871d3437e8b0c3114bbdb32b') in 0.0050629 seconds +2026-03-27T14:01:36.6566434Z 15:01:36.656 | Start importing Packages/io.sentry.unity/Runtime/Sentry.xml using Guid(41902a87e842efbd4b9aa51ab056e0bc) (TextScriptImporter) -> (artifact id: 'a8f6234e3ac7baed368f8567e47ee0ad') in 0.0063816 seconds +2026-03-27T14:01:36.6575376Z 15:01:36.657 | Start importing Packages/com.unity.ugui/PackageConversionData.json using Guid(05f5bfd584002f948982a1498890f9a9) (TextScriptImporter) -> (artifact id: 'd9e43e27959cd399247c69832ab9dc4f') in 0.0056106 seconds +2026-03-27T14:01:36.6583753Z 15:01:36.657 | Start importing Packages/io.sentry.unity/package.json using Guid(1524ebfb840f4075483e213d4429e42a) (PackageManifestImporter) -> (artifact id: '90116a6eaaa05d1e7557e168bfac1dd3') in 0.0045466 seconds +2026-03-27T14:01:36.6591073Z 15:01:36.658 | Start importing Packages/com.unity.ugui/CHANGELOG.md using Guid(c851bee4305bddf438cc6ffc515991ce) (TextScriptImporter) -> (artifact id: '80aa7e1c8215b9d3824af55dd65c9c21') in 0.0045995 seconds +2026-03-27T14:01:36.6600110Z 15:01:36.659 | Start importing Packages/io.sentry.unity/README.md using Guid(4ad34b1eec706de22b2938baf2bb6255) (TextScriptImporter) -> (artifact id: '702e956347e775bdc58eb12f3a7f100c') in 0.0044189 seconds +2026-03-27T14:01:36.6611247Z 15:01:36.660 | Start importing Packages/io.sentry.unity/LICENSE.md using Guid(4adb3edb303941c0881bb6c28b005a07) (TextScriptImporter) -> (artifact id: '1477f609353968f1d8e06e0da2e297a0') in 0.0069913 seconds +2026-03-27T14:01:36.6620428Z 15:01:36.661 | Start importing Packages/io.sentry.unity/CHANGELOG.md using Guid(abe52f7254eb429ba00a02e7e937ad7a) (TextScriptImporter) -> (artifact id: '0159e4f5c68b470f52b20ca3aabcebde') in 0.0069643 seconds +2026-03-27T14:01:36.6635963Z 15:01:36.662 | Start importing Packages/com.unity.ugui/LICENSE.md using Guid(4d3d51749e989f747b2674e0b4d9b3d7) (TextScriptImporter) -> (artifact id: 'ae566241d6b201e35280c27d51ece7ee') in 0.0046638 seconds +2026-03-27T14:01:36.6637659Z 15:01:36.663 | Start importing Packages/com.unity.ugui/PackageConversionData_Assets.json using Guid(0e0afa652c0031c48896a97b424d027b) (TextScriptImporter) -> (artifact id: '804ed7b65d087f01b748fb71ecdd6f77') in 0.0060174 seconds +2026-03-27T14:01:36.6643887Z 15:01:36.663 | Start importing Packages/io.sentry.unity/Prefabs/SentryUserFeedback.prefab using Guid(fc6aa2b03d79e456baf50accbd54b55e) (PrefabImporter) +2026-03-27T14:01:37.0733883Z 15:01:37.072 | -> (artifact id: '35f50bdde8faecf92c988baa09f39ca5') in 0.040416 seconds +2026-03-27T14:01:37.0784610Z 15:01:37.074 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +2026-03-27T14:01:37.0787738Z 15:01:37.078 | Refreshing native plugins compatible for Editor in 5.11 ms, found 1 plugins. +2026-03-27T14:01:37.0794895Z 15:01:37.079 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:01:37.0801846Z 15:01:37.079 | Asset Pipeline Refresh (id=0b6bf951f1ac3374d9a27ddd2ccd0b77): Total: 42.459 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport) +2026-03-27T14:01:37.0808743Z 15:01:37.080 | Summary: +2026-03-27T14:01:37.0814529Z 15:01:37.081 | Imports: total=171 (actual=171, local cache=0, cache server=0) +2026-03-27T14:01:37.0824647Z 15:01:37.082 | Asset DB Process Time: managed=22 ms, native=12998 ms +2026-03-27T14:01:37.0830227Z 15:01:37.082 | Asset DB Callback time: managed=79 ms, native=7651 ms +2026-03-27T14:01:37.0837417Z 15:01:37.083 | Scripting: domain reloads=2, domain reload time=1817 ms, compile time=19861 ms, other=27 ms +2026-03-27T14:01:37.0842622Z 15:01:37.083 | Project Asset Count: scripts=217, non-scripts=146 +2026-03-27T14:01:37.0849392Z 15:01:37.084 | Asset File Changes: new=563, changed=564, moved=0, deleted=0 +2026-03-27T14:01:37.0855027Z 15:01:37.085 | Scan Filter Count: 0 +2026-03-27T14:01:37.0860334Z 15:01:37.085 | InvokeCustomDependenciesCallbacks: 0.001ms +2026-03-27T14:01:37.0866316Z 15:01:37.086 | InvokePackagesCallback: 7710.823ms +2026-03-27T14:01:37.0871790Z 15:01:37.086 | ApplyChangesToAssetFolders: 1.165ms +2026-03-27T14:01:37.0880063Z 15:01:37.087 | Scan: 564.289ms +2026-03-27T14:01:37.0885748Z 15:01:37.088 | OnSourceAssetsModified: 6.410ms +2026-03-27T14:01:37.0891991Z 15:01:37.088 | CategorizeAssetsWithTransientArtifact: 7.377ms +2026-03-27T14:01:37.0897227Z 15:01:37.089 | ProcessAssetsWithTransientArtifactChanges: 42.068ms +2026-03-27T14:01:37.0903057Z 15:01:37.089 | CategorizeAssets: 3.012ms +2026-03-27T14:01:37.0909409Z 15:01:37.090 | ImportOutOfDateAssets: 11954.816ms (-9253.232ms without children) +2026-03-27T14:01:37.0914854Z 15:01:37.091 | ImportManagerImport: 1340.492ms (20.312ms without children) +2026-03-27T14:01:37.0920418Z 15:01:37.091 | ImportInProcess: 1319.561ms +2026-03-27T14:01:37.0927184Z 15:01:37.092 | UpdateCategorizedAssets: 0.619ms +2026-03-27T14:01:37.0932832Z 15:01:37.092 | CompileScripts: 19860.664ms +2026-03-27T14:01:37.0938895Z 15:01:37.093 | CollectScriptTypesHashes: 0.001ms +2026-03-27T14:01:37.0944421Z 15:01:37.094 | ReloadNativeAssets: 0.000ms +2026-03-27T14:01:37.0950050Z 15:01:37.094 | UnloadImportedAssets: 6.526ms +2026-03-27T14:01:37.0955905Z 15:01:37.095 | ReloadImportedAssets: 0.014ms +2026-03-27T14:01:37.0961498Z 15:01:37.095 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.114ms +2026-03-27T14:01:37.0967487Z 15:01:37.096 | InitializingProgressBar: 0.005ms +2026-03-27T14:01:37.0973006Z 15:01:37.096 | PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms +2026-03-27T14:01:37.0978378Z 15:01:37.097 | OnDemandSchedulerStart: 0.231ms +2026-03-27T14:01:37.0983787Z 15:01:37.097 | PostProcessAllAssets: 181.387ms +2026-03-27T14:01:37.0989259Z 15:01:37.098 | Hotreload: 6.353ms +2026-03-27T14:01:37.0994687Z 15:01:37.099 | GatherAllCurrentPrimaryArtifactRevisions: 0.002ms +2026-03-27T14:01:37.0999967Z 15:01:37.099 | UnloadStreamsBegin: 1.919ms +2026-03-27T14:01:37.1005478Z 15:01:37.100 | PersistCurrentRevisions: 0.563ms +2026-03-27T14:01:37.1011546Z 15:01:37.100 | UnloadStreamsEnd: 0.051ms +2026-03-27T14:01:37.1016728Z 15:01:37.101 | GenerateScriptTypeHashes: 0.590ms +2026-03-27T14:01:37.1021929Z 15:01:37.101 | Untracked: 21978.691ms +2026-03-27T14:01:37.1027634Z 15:01:37.102 | +2026-03-27T14:01:37.1035531Z 15:01:37.102 | Application.AssetDatabase Initial Refresh End +2026-03-27T14:01:37.5222570Z 15:01:37.521 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +2026-03-27T14:01:37.5229358Z 15:01:37.522 | Scanning for USB devices : 10.423ms +2026-03-27T14:01:37.5237561Z 15:01:37.523 | Initializing Unity extensions: +2026-03-27T14:01:37.9424440Z 15:01:37.941 | [MODES] ModeService[none].Initialize +2026-03-27T14:01:37.9430465Z 15:01:37.942 | [MODES] ModeService[none].LoadModes +2026-03-27T14:01:37.9437708Z 15:01:37.943 | [MODES] Loading mode Default (0) for mode-current-id-IntegrationTest6000.3.8f1 +2026-03-27T14:01:41.2095625Z 15:01:41.208 | Unloading 4 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:01:41.2101935Z 15:01:41.209 | Unloading 472 unused Assets / (0.5 MB). Loaded Objects now: 1052. +2026-03-27T14:01:41.2108522Z 15:01:41.210 | Memory consumption went from 100.0 MB to 99.5 MB. +2026-03-27T14:01:41.2114208Z 15:01:41.210 | Total: 7.067600 ms (FindLiveObjects: 0.089200 ms CreateObjectMapping: 0.030900 ms MarkObjects: 6.565200 ms DeleteObjects: 0.381000 ms) +2026-03-27T14:01:41.2118992Z 15:01:41.211 | +2026-03-27T14:01:41.2124048Z 15:01:41.212 | Curl error 42: Callback aborted +2026-03-27T14:01:41.2130363Z 15:01:41.212 | Request timed out while processing request "https://public-cdn.cloud.unity3d.com/config/production", HTTP error code 0 +2026-03-27T14:01:41.2134842Z 15:01:41.213 | .[UnityConnect] Request timed out. +2026-03-27T14:01:41.2139971Z 15:01:41.213 | Killing ADB server in 0.118377 seconds. +2026-03-27T14:01:41.2145308Z 15:01:41.214 | [Physics::Module] Cleanup current backend. +2026-03-27T14:01:41.2150442Z 15:01:41.214 | [Physics::Module] Id: 0xf2b8ea05 +2026-03-27T14:01:41.2155950Z 15:01:41.215 | Input System module state changed to: ShutdownInProgress. +2026-03-27T14:01:41.2161131Z 15:01:41.215 | Input System polling thread exited. +2026-03-27T14:01:41.2166559Z 15:01:41.216 | Input System module state changed to: Shutdown. +2026-03-27T14:01:41.2171955Z 15:01:41.216 | [Licensing::IpcConnector] LicenseClient-github-runner-notifications channel disconnected successfully. +2026-03-27T14:01:41.2177270Z 15:01:41.217 | [Licensing::IpcConnector] LicenseClient-github-runner channel disconnected successfully. +2026-03-27T14:01:41.2182543Z 15:01:41.217 | AcceleratorClientConnectionCallback - disconnected - :0 +2026-03-27T14:01:41.2187475Z 15:01:41.218 | Cleanup mono +2026-03-27T14:01:43.2692195Z 15:01:43.268 | Checking for leaked weakptr: +2026-03-27T14:01:43.2698715Z 15:01:43.269 | Found no leaked weakptrs. +2026-03-27T14:01:43.2709540Z 15:01:43.270 | [Package Manager] Server process was shutdown +2026-03-27T14:01:43.2720823Z 15:01:43.271 | ##utp:{"type":"MemoryLeaks","version":2,"phase":"Immediate","time":1774620102938,"processId":33660,"allocatedMemory":10888059,"memoryLabels":[{"Default":29313},{"Permanent":15236},{"NewDelete":67977},{"Thread":4230384},{"Manager":30237},{"VertexData":8},{"Geometry":816},{"Texture":160},{"Shader":79699},{"Material":24},{"GfxDevice":55257},{"Animation":392},{"Audio":3040},{"FreeType":8},{"FontEngine":736},{"Physics":2090},{"Physics2D":16},{"Serialization":848},{"Input":14984},{"JobScheduler":33024},{"TextLib":216},{"Mono":32},{"ScriptingNativeRuntime":155060},{"BaseObject":1620688},{"Resource":1336},{"Renderer":3000},{"Transform":4685},{"File":1016},{"WebCam":616},{"Culling":32},{"Terrain":11394},{"Wind":24},{"STL":40},{"String":67801},{"DynamicArray":105592},{"HashMap":77563},{"Utility":2659318},{"Curl":1712},{"PoolAlloc":2056},{"AI":80},{"TypeTree":5341},{"ScriptManager":512},{"RuntimeInitializeOnLoadManager":64},{"SpriteAtlas":112},{"GI":7792},{"Director":8240},{"CloudService":19152},{"WebRequest":845},{"VR":47994},{"SceneManager":504},{"Video":64},{"LazyScriptCache":32},{"Camera":17},{"Secure":2113},{"SerializationCache":1576},{"APIUpdating":10320},{"Subsystems":336},{"VirtualTexturing":57888},{"StaticSafetyDebugInfo":278528},{"Analytics":384},{"Hierarchy":608},{"CoreStats":13032},{"Identifiers":12960},{"Gui":96},{"EditorUtility":375044},{"VersionControl":4},{"Undo":947},{"AssetDatabase":721441},{"EditorGi":328},{"UnityConnect":29208},{"Upm":1896},{"AssetCompliance":64},{"DrivenProperties":72},{"LocalIPC":219},{"ProfilerEditor":9746},{"CoreBusinessMetrics":2878},{"Licensing":1232},{"AssetReference":32},{"IPCStream":32}]} +2026-03-27T14:01:43.6805019Z ##[endgroup] +2026-03-27T14:01:43.6820931Z Unity finished successfully. Time taken: 00:00:58.695 +2026-03-27T14:01:43.6853598Z 15:01:43.684 | +2026-03-27T14:01:43.6854251Z AddSentryPackage | SUCCESS because the following text was found: '15:01:15.103 | Sentry Package Installation: SUCCESS 15:01:35.669 | Sentry Package Installation: SUCCESS' +2026-03-27T14:01:43.6858193Z 15:01:43.685 | Copying Integration Test Files... +2026-03-27T14:01:43.7896848Z 15:01:43.789 | [OK] Sentry added +2026-03-27T14:01:43.7901448Z +2026-03-27T14:01:43.7907123Z ================================================================ +2026-03-27T14:01:43.7911905Z CONFIGURING SENTRY +2026-03-27T14:01:43.7916975Z ================================================================ +2026-03-27T14:01:43.8222674Z 15:01:43.821 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe +2026-03-27T14:01:43.8229619Z 15:01:43.822 | Configuring Sentry options... +2026-03-27T14:01:43.8248454Z ##[group]Run C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -quit -batchmode -nographics -disable-assembly-updater -projectPath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -executeMethod Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation.ConfigureOptions -optionsScript IntegrationOptionsConfiguration -cliOptionsScript CliConfiguration -logfile unity.log +2026-03-27T14:01:43.8250643Z Removing Unity log unity.log +2026-03-27T14:01:43.8493042Z Waiting for Unity to finish. +2026-03-27T14:01:44.2628246Z 15:01:44.261 | [Licensing::Module] Trying to connect to existing licensing client channel... +2026-03-27T14:01:44.2641672Z 15:01:44.263 | Built from '6000.3/staging' branch; Version is '6000.3.8f1 (1c7db571dde0) revision 1867189'; Using compiler version '194234433'; Build Type 'Release' +2026-03-27T14:01:44.2665549Z 15:01:44.265 | [Licensing::IpcConnector] Channel LicenseClient-github-runner doesn't exist +2026-03-27T14:01:44.2674330Z 15:01:44.266 | OS: 'Windows 11 (10.0.26200) Professional' Language: 'en' Physical Memory: 16322 MB +2026-03-27T14:01:44.2681648Z 15:01:44.267 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1 +2026-03-27T14:01:44.2693703Z 15:01:44.268 | System architecture: x64 +2026-03-27T14:01:44.2700143Z 15:01:44.269 | Process architecture: x64 +2026-03-27T14:01:44.2705848Z 15:01:44.270 | Date: 2026-03-27T14:01:44Z +2026-03-27T14:01:44.2711893Z 15:01:44.270 | [Licensing::Module] Successfully launched the LicensingClient (PId: 41372) +2026-03-27T14:01:44.6737169Z 15:01:44.673 | +2026-03-27T14:01:44.6743492Z 15:01:44.673 | COMMAND LINE ARGUMENTS: +2026-03-27T14:01:44.6749227Z 15:01:44.674 | C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe +2026-03-27T14:01:44.6754383Z 15:01:44.675 | -quit +2026-03-27T14:01:44.6759308Z 15:01:44.675 | -batchmode +2026-03-27T14:01:44.6765164Z 15:01:44.676 | -nographics +2026-03-27T14:01:44.6772836Z 15:01:44.676 | -disable-assembly-updater +2026-03-27T14:01:44.6777739Z 15:01:44.677 | -projectPath +2026-03-27T14:01:44.6786409Z 15:01:44.678 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:44.6793125Z 15:01:44.678 | -executeMethod +2026-03-27T14:01:44.6810863Z 15:01:44.680 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation.ConfigureOptions +2026-03-27T14:01:44.6830866Z 15:01:44.682 | -optionsScript +2026-03-27T14:01:44.6838927Z 15:01:44.682 | IntegrationOptionsConfiguration +2026-03-27T14:01:44.6846455Z 15:01:44.684 | -cliOptionsScript +2026-03-27T14:01:44.6864435Z 15:01:44.686 | CliConfiguration +2026-03-27T14:01:44.6870549Z 15:01:44.686 | -logfile +2026-03-27T14:01:44.6879087Z 15:01:44.687 | unity.log +2026-03-27T14:01:44.6891135Z 15:01:44.688 | Successfully changed project path to: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:44.6898217Z 15:01:44.689 | C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:44.6902278Z 15:01:44.689 | [UnityMemory] Configuration Parameters - Can be set up in boot.config +2026-03-27T14:01:44.6908996Z 15:01:44.690 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" +2026-03-27T14:01:44.6918541Z 15:01:44.691 | "memorysetup-temp-allocator-size-audio-worker=65536" +2026-03-27T14:01:44.6924129Z 15:01:44.692 | "memorysetup-temp-allocator-size-gfx=262144" +2026-03-27T14:01:44.6985672Z 15:01:44.692 | "memorysetup-allocator-temp-initial-block-size-main=262144" +2026-03-27T14:01:44.7063536Z 15:01:44.701 | "memorysetup-allocator-temp-initial-block-size-worker=262144" +2026-03-27T14:01:44.7111062Z 15:01:44.710 | "memorysetup-temp-allocator-size-background-worker=32768" +2026-03-27T14:01:44.7117475Z 15:01:44.711 | "memorysetup-temp-allocator-size-job-worker=262144" +2026-03-27T14:01:44.7126494Z 15:01:44.712 | "memorysetup-temp-allocator-size-preload-manager=33554432" +2026-03-27T14:01:44.7133843Z 15:01:44.712 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:01:44.7141413Z 15:01:44.713 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:01:44.7148469Z 15:01:44.714 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:01:44.7159799Z 15:01:44.715 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:01:44.7168071Z 15:01:44.716 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:01:44.7173118Z 15:01:44.716 | "memorysetup-bucket-allocator-granularity=16" +2026-03-27T14:01:44.7180825Z 15:01:44.717 | "memorysetup-bucket-allocator-bucket-count=8" +2026-03-27T14:01:44.7204732Z 15:01:44.718 | "memorysetup-bucket-allocator-block-size=33554432" +2026-03-27T14:01:44.7274955Z 15:01:44.724 | "memorysetup-bucket-allocator-block-count=8" +2026-03-27T14:01:44.7300971Z 15:01:44.729 | "memorysetup-main-allocator-block-size=16777216" +2026-03-27T14:01:44.7311327Z 15:01:44.730 | "memorysetup-thread-allocator-block-size=16777216" +2026-03-27T14:01:44.7333267Z 15:01:44.731 | "memorysetup-gfx-main-allocator-block-size=16777216" +2026-03-27T14:01:44.7399536Z 15:01:44.733 | "memorysetup-gfx-thread-allocator-block-size=16777216" +2026-03-27T14:01:44.7412179Z 15:01:44.740 | "memorysetup-cache-allocator-block-size=4194304" +2026-03-27T14:01:44.7434899Z 15:01:44.742 | "memorysetup-typetree-allocator-block-size=2097152" +2026-03-27T14:01:44.7447743Z 15:01:44.744 | "memorysetup-profiler-bucket-allocator-granularity=16" +2026-03-27T14:01:44.7464930Z 15:01:44.745 | "memorysetup-profiler-bucket-allocator-bucket-count=8" +2026-03-27T14:01:44.7473180Z 15:01:44.746 | "memorysetup-profiler-bucket-allocator-block-size=33554432" +2026-03-27T14:01:44.7480297Z 15:01:44.747 | "memorysetup-profiler-bucket-allocator-block-count=8" +2026-03-27T14:01:44.7487854Z 15:01:44.748 | "memorysetup-profiler-allocator-block-size=16777216" +2026-03-27T14:01:44.7517795Z 15:01:44.750 | "memorysetup-profiler-editor-allocator-block-size=1048576" +2026-03-27T14:01:44.7524342Z 15:01:44.752 | "memorysetup-temp-allocator-size-main=16777216" +2026-03-27T14:01:44.7532338Z 15:01:44.752 | "memorysetup-job-temp-allocator-block-size=2097152" +2026-03-27T14:01:44.7540240Z 15:01:44.753 | "memorysetup-job-temp-allocator-block-size-background=1048576" +2026-03-27T14:01:44.7546721Z 15:01:44.754 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" +2026-03-27T14:01:44.7551405Z 15:01:44.754 | "memorysetup-temp-allocator-size-cloud-worker=32768" +2026-03-27T14:01:44.7557584Z 15:01:44.755 | Player connection [42504] Target information: +2026-03-27T14:01:44.7568272Z 15:01:44.755 | +2026-03-27T14:01:44.7589930Z 15:01:44.758 | Player connection [42504] * "[IP] 10.2.1.51 [Port] 55504 [Flags] 2 [Guid] 2858555048 [EditorId] 2858555048 [Version] 1048832 [Id] WindowsEditor(7,GDX-T1) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" +2026-03-27T14:01:44.7594760Z 15:01:44.758 | +2026-03-27T14:01:44.7602172Z 15:01:44.759 | Player connection [42504] Host joined multi-casting on [225.0.0.222:54997]... +2026-03-27T14:01:44.7610321Z 15:01:44.760 | Player connection [42504] Host joined alternative multi-casting on [225.0.0.222:34997]... +2026-03-27T14:01:44.7628228Z 15:01:44.761 | Input System module state changed to: Initialized. +2026-03-27T14:01:44.7663955Z 15:01:44.764 | [Physics::Module] Initialized fallback backend. +2026-03-27T14:01:44.7786533Z 15:01:44.772 | [Physics::Module] Id: 0xdecafbad +2026-03-27T14:01:44.7810813Z 15:01:44.780 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner" at "2026-03-27T14:01:44.6930479Z" +2026-03-27T14:01:45.1955749Z 15:01:45.192 | [Package Manager] Connected to IPC stream "Upm-10040" after 0.5 seconds. +2026-03-27T14:01:45.1965700Z 15:01:45.195 | [Licensing::Module] Licensing is not yet initialized. +2026-03-27T14:01:47.6493669Z 15:01:47.648 | [Licensing::Client] Handshaking with LicensingClient: +2026-03-27T14:01:47.6504086Z 15:01:47.649 | Version: 1.17.4+4293ba1 +2026-03-27T14:01:47.6509167Z 15:01:47.650 | Session Id: 6d75d715b8874d87bd91d9c5be5c2341 +2026-03-27T14:01:47.6515076Z 15:01:47.651 | Correlation Id: cead49048608e2f0a1cee44e9b4e34ae +2026-03-27T14:01:47.6523113Z 15:01:47.651 | External correlation Id: 917524786545028338 +2026-03-27T14:01:47.6529181Z 15:01:47.652 | Machine Id: b5cL0vq5etg728hHCfaSnjJzEl4= +2026-03-27T14:01:47.6535243Z 15:01:47.653 | [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-github-runner" (connect: 0.57s, validation: 0.07s, handshake: 2.53s) +2026-03-27T14:01:47.6541376Z 15:01:47.653 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner-notifications" at "2026-03-27T14:01:47.2962632Z" +2026-03-27T14:01:47.6547604Z 15:01:47.654 | [Licensing::Module] Connected to LicensingClient (PId: 41372, launch time: 0.01, total connection time: 3.17s) +2026-03-27T14:01:47.6553687Z 15:01:47.654 | [Licensing::Module] Error: Access token is unavailable; failed to update +2026-03-27T14:01:47.6560056Z 15:01:47.655 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:47.6573772Z 15:01:47.656 | [Licensing::Module] License group: +2026-03-27T14:01:47.6581186Z 15:01:47.657 | Id: SC-6P43-RKFA-9PYH-ZZ9Q-XXXX +2026-03-27T14:01:47.6588016Z 15:01:47.658 | Product: Unity Pro +2026-03-27T14:01:47.6593384Z 15:01:47.658 | Type: ULF +2026-03-27T14:01:47.6599079Z 15:01:47.659 | Expiration: 2027-03-05T00:00:00Z +2026-03-27T14:01:47.6604592Z 15:01:47.660 | [Licensing::Client] Successfully updated license, isAsync: True, time: 0.01 +2026-03-27T14:01:47.6610085Z 15:01:47.660 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:47.6616952Z 15:01:47.661 | [Licensing::Module] Licensing Background thread has ended after 3.23s +2026-03-27T14:01:47.6622413Z 15:01:47.661 | [Licensing::Module] Licensing is initialized (took 2.25s). +2026-03-27T14:01:47.6640012Z 15:01:47.662 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:47.6659327Z 15:01:47.664 | Library Redirect Path: Library/ +2026-03-27T14:01:47.6669651Z 15:01:47.666 | [Physics::Module] Selected backend. +2026-03-27T14:01:47.6680797Z 15:01:47.667 | [Physics::Module] Name: PhysX +2026-03-27T14:01:47.6687703Z 15:01:47.668 | [Physics::Module] Id: 0xf2b8ea05 +2026-03-27T14:01:47.6695241Z 15:01:47.668 | [Physics::Module] SDK Version: 4.1.2 +2026-03-27T14:01:47.6709951Z 15:01:47.669 | [Physics::Module] Integration Version: 1.0.0 +2026-03-27T14:01:47.6713056Z 15:01:47.670 | [Physics::Module] Threading Mode: Multi-Threaded +2026-03-27T14:01:47.6720718Z 15:01:47.671 | Refreshing native plugins compatible for Editor in 0.89 ms, found 0 plugins. +2026-03-27T14:01:47.6729757Z 15:01:47.672 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:01:47.6737037Z 15:01:47.673 | Initialize engine version: 6000.3.8f1 (1c7db571dde0) +2026-03-27T14:01:47.6743153Z 15:01:47.673 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Resources/UnitySubsystems +2026-03-27T14:01:47.6749490Z 15:01:47.674 | [Subsystems] Discovering subsystems at path C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets +2026-03-27T14:01:47.6754669Z 15:01:47.675 | Forcing GfxDevice: Null +2026-03-27T14:01:47.6761130Z 15:01:47.675 | GfxDevice: creating device client; kGfxThreadingModeNonThreaded +2026-03-27T14:01:47.6767016Z 15:01:47.676 | NullGfxDevice: +2026-03-27T14:01:47.6777398Z 15:01:47.676 | Version: NULL 1.0 [1.0] +2026-03-27T14:01:47.6788427Z 15:01:47.677 | Renderer: Null Device +2026-03-27T14:01:47.6811181Z 15:01:47.680 | Vendor: Unity Technologies +2026-03-27T14:01:47.6824011Z 15:01:47.681 | Initialize mono +2026-03-27T14:01:47.6833223Z 15:01:47.682 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed' +2026-03-27T14:01:47.6847253Z 15:01:47.683 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +2026-03-27T14:01:47.6858071Z 15:01:47.684 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/etc' +2026-03-27T14:01:47.6863776Z 15:01:47.685 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56040 +2026-03-27T14:01:47.6869319Z 15:01:47.686 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts +2026-03-27T14:01:47.6875213Z 15:01:47.687 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts +2026-03-27T14:01:47.6880547Z 15:01:47.687 | ImportWorker Server TCP listen port: 0 +2026-03-27T14:01:47.6887485Z 15:01:47.688 | AcceleratorClientConnectionCallback - disconnected - :0 +2026-03-27T14:01:48.0946684Z 15:01:48.093 | Begin MonoManager ReloadAssembly +2026-03-27T14:01:48.0958775Z 15:01:48.094 | Registering precompiled unity dll's ... +2026-03-27T14:01:48.0967337Z 15:01:48.096 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +2026-03-27T14:01:48.0972699Z 15:01:48.096 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:48.0979256Z 15:01:48.097 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/PS5Player/UnityEditor.PS5.Extensions.dll +2026-03-27T14:01:48.0984508Z 15:01:48.098 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/UnityEditor.GameCoreScarlett.Extensions.dll +2026-03-27T14:01:48.0991115Z 15:01:48.098 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:48.0997395Z 15:01:48.099 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +2026-03-27T14:01:48.1005018Z 15:01:48.100 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreXboxOneSupport/UnityEditor.GameCoreXboxOne.Extensions.dll +2026-03-27T14:01:48.1010254Z 15:01:48.100 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:48.1017490Z 15:01:48.101 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll +2026-03-27T14:01:48.1023131Z 15:01:48.101 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/Switch/UnityEditor.Switch.Extensions.dll +2026-03-27T14:01:48.1028497Z 15:01:48.102 | Registered in 0.043768 seconds. +2026-03-27T14:01:48.5177594Z 15:01:48.517 | - Loaded All Assemblies, in 0.617 seconds +2026-03-27T14:01:48.9289171Z 15:01:48.928 | Native extension for iOS target not found +2026-03-27T14:01:48.9295148Z 15:01:48.929 | Native extension for Android target not found +2026-03-27T14:01:51.7791689Z 15:01:51.778 | Android Extension - Scanning For ADB Devices 2637 ms +2026-03-27T14:01:51.7799506Z 15:01:51.779 | Native extension for WindowsStandalone target not found +2026-03-27T14:01:52.1832141Z 15:01:52.182 | ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:False +2026-03-27T14:01:52.1840102Z 15:01:52.183 | Mono: successfully reloaded assembly +2026-03-27T14:01:52.1847405Z 15:01:52.184 | - Finished resetting the current domain, in 3.521 seconds +2026-03-27T14:01:52.1853171Z 15:01:52.184 | Domain Reload Profiling: 4129ms +2026-03-27T14:01:52.1859009Z 15:01:52.185 | BeginReloadAssembly (196ms) +2026-03-27T14:01:52.1864477Z 15:01:52.186 | ExecutionOrderSort (0ms) +2026-03-27T14:01:52.1869010Z 15:01:52.186 | DisableScriptedObjects (0ms) +2026-03-27T14:01:52.1876264Z 15:01:52.187 | BackupInstance (0ms) +2026-03-27T14:01:52.1888284Z 15:01:52.187 | ReleaseScriptingObjects (0ms) +2026-03-27T14:01:52.1893451Z 15:01:52.188 | CreateAndSetChildDomain (4ms) +2026-03-27T14:01:52.1899353Z 15:01:52.189 | RebuildCommonClasses (47ms) +2026-03-27T14:01:52.1905803Z 15:01:52.190 | RebuildNativeTypeToScriptingClass (16ms) +2026-03-27T14:01:52.1910939Z 15:01:52.190 | initialDomainReloadingComplete (105ms) +2026-03-27T14:01:52.1917454Z 15:01:52.191 | LoadAllAssembliesAndSetupDomain (243ms) +2026-03-27T14:01:52.1924887Z 15:01:52.192 | LoadAssemblies (187ms) +2026-03-27T14:01:52.1930836Z 15:01:52.192 | RebuildTransferFunctionScriptingTraits (0ms) +2026-03-27T14:01:52.1936430Z 15:01:52.193 | AnalyzeDomain (235ms) +2026-03-27T14:01:52.1942181Z 15:01:52.193 | TypeCache.Refresh (234ms) +2026-03-27T14:01:52.1947395Z 15:01:52.194 | TypeCache.ScanAssembly (216ms) +2026-03-27T14:01:52.1952727Z 15:01:52.194 | BuildScriptInfoCaches (0ms) +2026-03-27T14:01:52.1957847Z 15:01:52.195 | ResolveRequiredComponents (1ms) +2026-03-27T14:01:52.1963055Z 15:01:52.195 | FinalizeReload (3522ms) +2026-03-27T14:01:52.1968633Z 15:01:52.196 | ReleaseScriptCaches (0ms) +2026-03-27T14:01:52.1974293Z 15:01:52.197 | RebuildScriptCaches (0ms) +2026-03-27T14:01:52.1983103Z 15:01:52.197 | SetupLoadedEditorAssemblies (3477ms) +2026-03-27T14:01:52.1993110Z 15:01:52.198 | LogAssemblyErrors (0ms) +2026-03-27T14:01:52.2001842Z 15:01:52.199 | InitializePlatformSupportModulesInManaged (3113ms) +2026-03-27T14:01:52.2009209Z 15:01:52.200 | SetLoadedEditorAssemblies (6ms) +2026-03-27T14:01:52.2016480Z 15:01:52.201 | BeforeProcessingInitializeOnLoad (110ms) +2026-03-27T14:01:52.2023254Z 15:01:52.201 | ProcessInitializeOnLoadAttributes (164ms) +2026-03-27T14:01:52.2028920Z 15:01:52.202 | ProcessInitializeOnLoadMethodAttributes (85ms) +2026-03-27T14:01:52.2034958Z 15:01:52.203 | AfterProcessingInitializeOnLoad (0ms) +2026-03-27T14:01:52.2040630Z 15:01:52.203 | EditorAssembliesLoaded (0ms) +2026-03-27T14:01:52.2046953Z 15:01:52.204 | ExecutionOrderSort2 (0ms) +2026-03-27T14:01:52.2053322Z 15:01:52.204 | AwakeInstancesAfterBackupRestoration (0ms) +2026-03-27T14:01:52.2059276Z 15:01:52.205 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:52.2063698Z 15:01:52.206 | Application.AssetDatabase Initial Refresh Start +2026-03-27T14:01:52.2070781Z 15:01:52.206 | Package Manager log level set to [2] +2026-03-27T14:01:52.2076283Z 15:01:52.207 | [Package Manager] Restoring resolved packages state from cache +2026-03-27T14:01:52.2081651Z 15:01:52.207 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:01:52.2087645Z 15:01:52.208 | [Package Manager] Registered 39 packages: +2026-03-27T14:01:52.2092736Z 15:01:52.208 | Built-in packages: +2026-03-27T14:01:52.2098586Z 15:01:52.209 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) +2026-03-27T14:01:52.2104037Z 15:01:52.209 | com.unity.ugui@2.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc) +2026-03-27T14:01:52.2109613Z 15:01:52.210 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) +2026-03-27T14:01:52.2116757Z 15:01:52.211 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) +2026-03-27T14:01:52.2123967Z 15:01:52.211 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) +2026-03-27T14:01:52.2128119Z 15:01:52.212 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) +2026-03-27T14:01:52.2134344Z 15:01:52.212 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) +2026-03-27T14:01:52.2143345Z 15:01:52.213 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) +2026-03-27T14:01:52.2152129Z 15:01:52.214 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) +2026-03-27T14:01:52.2157071Z 15:01:52.215 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) +2026-03-27T14:01:52.2165032Z 15:01:52.216 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) +2026-03-27T14:01:52.2173044Z 15:01:52.216 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) +2026-03-27T14:01:52.2178802Z 15:01:52.217 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) +2026-03-27T14:01:52.2187027Z 15:01:52.218 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) +2026-03-27T14:01:52.2192503Z 15:01:52.218 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) +2026-03-27T14:01:52.2198256Z 15:01:52.219 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) +2026-03-27T14:01:52.2204303Z 15:01:52.219 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) +2026-03-27T14:01:52.2210941Z 15:01:52.220 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) +2026-03-27T14:01:52.2217106Z 15:01:52.221 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) +2026-03-27T14:01:52.2232763Z 15:01:52.222 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) +2026-03-27T14:01:52.2243433Z 15:01:52.223 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) +2026-03-27T14:01:52.2252573Z 15:01:52.224 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) +2026-03-27T14:01:52.2259968Z 15:01:52.225 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) +2026-03-27T14:01:52.2265439Z 15:01:52.226 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) +2026-03-27T14:01:52.2271412Z 15:01:52.226 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) +2026-03-27T14:01:52.2364397Z 15:01:52.230 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) +2026-03-27T14:01:52.2394992Z 15:01:52.236 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) +2026-03-27T14:01:52.2492545Z 15:01:52.240 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) +2026-03-27T14:01:52.2550295Z 15:01:52.253 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) +2026-03-27T14:01:52.2667501Z 15:01:52.257 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) +2026-03-27T14:01:52.2675869Z 15:01:52.267 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) +2026-03-27T14:01:52.2685300Z 15:01:52.268 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) +2026-03-27T14:01:52.2701059Z 15:01:52.269 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) +2026-03-27T14:01:52.2753915Z 15:01:52.270 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) +2026-03-27T14:01:52.2762154Z 15:01:52.275 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) +2026-03-27T14:01:52.2823704Z 15:01:52.276 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) +2026-03-27T14:01:52.2908461Z 15:01:52.286 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) +2026-03-27T14:01:52.2969972Z 15:01:52.291 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) +2026-03-27T14:01:52.3001605Z 15:01:52.298 | Local packages: +2026-03-27T14:01:52.3010318Z 15:01:52.300 | io.sentry.unity@file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package) +2026-03-27T14:01:52.3181087Z 15:01:52.302 | [Subsystems] No new subsystems found in resolved package list. +2026-03-27T14:01:52.3191154Z 15:01:52.318 | [Package Manager] Done registering packages in 0.03 seconds +2026-03-27T14:01:52.3214148Z 15:01:52.319 | [ScriptCompilation] Requested script compilation because: Assetdatabase observed changes in script compilation related files +2026-03-27T14:01:53.1349231Z 15:01:53.132 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies +2026-03-27T14:01:53.1404365Z 15:01:53.137 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:53.1423915Z 15:01:53.141 | DisplayProgressbar: Compiling Scripts +2026-03-27T14:01:53.1430834Z 15:01:53.142 | ExitCode: 4 Duration: 0s163ms +2026-03-27T14:01:53.1440852Z 15:01:53.143 | Rebuilding DAG because FileSignature timestamp changed: Library/Bee/1900b0aE-inputdata.json +2026-03-27T14:01:53.1516867Z 15:01:53.144 | *** Tundra requires additional run (0.07 seconds), 0 items updated, 249 evaluated +2026-03-27T14:01:53.1527500Z 15:01:53.152 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aE.dag.json" "Library/Bee/1900b0aE-inputdata.json" "Library\Bee\buildprogram0.traceevents" +2026-03-27T14:01:53.1535182Z 15:01:53.153 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:53.9771001Z 15:01:53.976 | ExitCode: 0 Duration: 0s489ms +2026-03-27T14:01:53.9777633Z 15:01:53.977 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aE.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssemblies +2026-03-27T14:01:53.9782252Z 15:01:53.977 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:01:56.4327302Z 15:01:56.432 | ExitCode: 0 Duration: 2s496ms +2026-03-27T14:01:56.4343010Z 15:01:56.433 | Finished compiling graph: 260 nodes, 2571 flattened edges (2421 ToBuild, 24 ToUse), maximum node priority 128 +2026-03-27T14:01:56.4350427Z 15:01:56.434 | [197/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp +2026-03-27T14:01:56.4361067Z 15:01:56.435 | [198/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt +2026-03-27T14:01:56.4368894Z 15:01:56.436 | [199/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp2 +2026-03-27T14:01:56.4376043Z 15:01:56.437 | [200/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp +2026-03-27T14:01:56.4385042Z 15:01:56.437 | [201/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp +2026-03-27T14:01:56.4393064Z 15:01:56.438 | [250/257 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm +2026-03-27T14:01:56.4401029Z 15:01:56.439 | [251/257 1s] Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others) +2026-03-27T14:01:56.4410032Z 15:01:56.440 | [252/257 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb +2026-03-27T14:01:56.4415475Z 15:01:56.441 | [253/257 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll +2026-03-27T14:01:56.4421683Z 15:01:56.441 | [254/257 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others) +2026-03-27T14:01:56.4428265Z 15:01:56.442 | [255/257 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb +2026-03-27T14:01:56.4433773Z 15:01:56.442 | [256/257 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll +2026-03-27T14:01:56.4439616Z 15:01:56.443 | *** Tundra build success (2.40 seconds), 12 items updated, 257 evaluated +2026-03-27T14:01:56.4447070Z 15:01:56.444 | AssetDatabase: script compilation time: 4.033229s +2026-03-27T14:01:56.4454049Z 15:01:56.444 | Begin MonoManager ReloadAssembly +2026-03-27T14:01:57.2613968Z 15:01:57.260 | - Loaded All Assemblies, in 0.857 seconds +2026-03-27T14:01:57.2620359Z 15:01:57.261 | Start importing Assets/Scripts using Guid(7a72af10f8ada44438f8a43c46e22e9f) (DefaultImporter) -> (artifact id: '70ab1a741f982128099baf20f421879a') in 0.0180156 seconds +2026-03-27T14:01:57.2628070Z 15:01:57.262 | Refreshing native plugins compatible for Editor in 6.09 ms, found 1 plugins. +2026-03-27T14:01:57.6682740Z 15:01:57.665 | Native extension for iOS target not found +2026-03-27T14:01:57.6702242Z 15:01:57.669 | Native extension for Android target not found +2026-03-27T14:01:57.6741001Z 15:01:57.671 | Native extension for WindowsStandalone target not found +2026-03-27T14:01:58.0806737Z 15:01:58.078 | Sentry Package Installation: Sentry not requested to be installed. +2026-03-27T14:01:58.0814346Z 15:01:58.080 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True +2026-03-27T14:01:58.4954306Z 15:01:58.494 | Mono: successfully reloaded assembly +2026-03-27T14:01:58.4959205Z 15:01:58.495 | - Finished resetting the current domain, in 1.021 seconds +2026-03-27T14:01:58.4966768Z 15:01:58.496 | Domain Reload Profiling: 1866ms +2026-03-27T14:01:58.4975318Z 15:01:58.496 | BeginReloadAssembly (384ms) +2026-03-27T14:01:58.4982108Z 15:01:58.497 | ExecutionOrderSort (0ms) +2026-03-27T14:01:58.4989854Z 15:01:58.498 | DisableScriptedObjects (13ms) +2026-03-27T14:01:58.4996859Z 15:01:58.499 | BackupInstance (0ms) +2026-03-27T14:01:58.5002298Z 15:01:58.499 | ReleaseScriptingObjects (0ms) +2026-03-27T14:01:58.5007787Z 15:01:58.500 | CreateAndSetChildDomain (159ms) +2026-03-27T14:01:58.5013958Z 15:01:58.500 | RebuildCommonClasses (46ms) +2026-03-27T14:01:58.5020064Z 15:01:58.501 | RebuildNativeTypeToScriptingClass (17ms) +2026-03-27T14:01:58.5025515Z 15:01:58.502 | initialDomainReloadingComplete (52ms) +2026-03-27T14:01:58.5037048Z 15:01:58.502 | LoadAllAssembliesAndSetupDomain (347ms) +2026-03-27T14:01:58.5042622Z 15:01:58.503 | LoadAssemblies (415ms) +2026-03-27T14:01:58.5050415Z 15:01:58.504 | RebuildTransferFunctionScriptingTraits (0ms) +2026-03-27T14:01:58.5056616Z 15:01:58.505 | AnalyzeDomain (85ms) +2026-03-27T14:01:58.5063344Z 15:01:58.505 | TypeCache.Refresh (71ms) +2026-03-27T14:01:58.5069210Z 15:01:58.506 | TypeCache.ScanAssembly (61ms) +2026-03-27T14:01:58.5076976Z 15:01:58.507 | BuildScriptInfoCaches (9ms) +2026-03-27T14:01:58.5082243Z 15:01:58.507 | ResolveRequiredComponents (3ms) +2026-03-27T14:01:58.5087659Z 15:01:58.508 | FinalizeReload (1022ms) +2026-03-27T14:01:58.5096790Z 15:01:58.508 | ReleaseScriptCaches (0ms) +2026-03-27T14:01:58.5102722Z 15:01:58.509 | RebuildScriptCaches (0ms) +2026-03-27T14:01:58.5110837Z 15:01:58.510 | SetupLoadedEditorAssemblies (862ms) +2026-03-27T14:01:58.5118642Z 15:01:58.511 | LogAssemblyErrors (0ms) +2026-03-27T14:01:58.5126427Z 15:01:58.512 | InitializePlatformSupportModulesInManaged (407ms) +2026-03-27T14:01:58.5135509Z 15:01:58.512 | SetLoadedEditorAssemblies (4ms) +2026-03-27T14:01:58.5142153Z 15:01:58.513 | BeforeProcessingInitializeOnLoad (199ms) +2026-03-27T14:01:58.5150875Z 15:01:58.514 | ProcessInitializeOnLoadAttributes (179ms) +2026-03-27T14:01:58.5155611Z 15:01:58.515 | ProcessInitializeOnLoadMethodAttributes (50ms) +2026-03-27T14:01:58.5161578Z 15:01:58.515 | AfterProcessingInitializeOnLoad (23ms) +2026-03-27T14:01:58.5167345Z 15:01:58.516 | EditorAssembliesLoaded (0ms) +2026-03-27T14:01:58.5172679Z 15:01:58.516 | ExecutionOrderSort2 (0ms) +2026-03-27T14:01:58.5178475Z 15:01:58.517 | AwakeInstancesAfterBackupRestoration (20ms) +2026-03-27T14:01:58.5183848Z 15:01:58.517 | Refreshing native plugins compatible for Editor in 6.34 ms, found 1 plugins. +2026-03-27T14:01:58.5189234Z 15:01:58.518 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:01:58.5195375Z 15:01:58.519 | Asset Pipeline Refresh (id=9d111e874da6e4849acca72adfbfcfaa): Total: 6.400 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport) +2026-03-27T14:01:58.5200203Z 15:01:58.519 | Summary: +2026-03-27T14:01:58.5205598Z 15:01:58.520 | Imports: total=1 (actual=1, local cache=0, cache server=0) +2026-03-27T14:01:58.5211495Z 15:01:58.520 | Asset DB Process Time: managed=3 ms, native=1352 ms +2026-03-27T14:01:58.5216833Z 15:01:58.521 | Asset DB Callback time: managed=74 ms, native=49 ms +2026-03-27T14:01:58.5222248Z 15:01:58.521 | Scripting: domain reloads=1, domain reload time=857 ms, compile time=4035 ms, other=26 ms +2026-03-27T14:01:58.5227258Z 15:01:58.522 | Project Asset Count: scripts=218, non-scripts=146 +2026-03-27T14:01:58.5232534Z 15:01:58.522 | Asset File Changes: new=7, changed=7, moved=0, deleted=0 +2026-03-27T14:01:58.5237548Z 15:01:58.523 | Scan Filter Count: 0 +2026-03-27T14:01:58.5243130Z 15:01:58.523 | InvokeCustomDependenciesCallbacks: 0.001ms +2026-03-27T14:01:58.5254436Z 15:01:58.524 | InvokePackagesCallback: 45.052ms +2026-03-27T14:01:58.5261799Z 15:01:58.525 | ApplyChangesToAssetFolders: 1.060ms +2026-03-27T14:01:58.5269130Z 15:01:58.526 | Scan: 112.470ms +2026-03-27T14:01:58.5274520Z 15:01:58.527 | OnSourceAssetsModified: 0.866ms +2026-03-27T14:01:58.5279848Z 15:01:58.527 | CategorizeAssetsWithTransientArtifact: 16.120ms +2026-03-27T14:01:58.5284860Z 15:01:58.528 | ProcessAssetsWithTransientArtifactChanges: 19.395ms +2026-03-27T14:01:58.5291994Z 15:01:58.528 | CategorizeAssets: 3.623ms +2026-03-27T14:01:58.5298896Z 15:01:58.529 | ImportOutOfDateAssets: 1062.463ms (-2997.533ms without children) +2026-03-27T14:01:58.5306788Z 15:01:58.530 | ImportManagerImport: 23.864ms (5.017ms without children) +2026-03-27T14:01:58.5314396Z 15:01:58.530 | ImportInProcess: 18.829ms +2026-03-27T14:01:58.5322145Z 15:01:58.531 | UpdateCategorizedAssets: 0.017ms +2026-03-27T14:01:58.5327817Z 15:01:58.532 | CompileScripts: 4035.231ms +2026-03-27T14:01:58.5333024Z 15:01:58.532 | ReloadNativeAssets: 0.000ms +2026-03-27T14:01:58.5338525Z 15:01:58.533 | UnloadImportedAssets: 0.538ms +2026-03-27T14:01:58.5343914Z 15:01:58.534 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.083ms +2026-03-27T14:01:58.5349330Z 15:01:58.534 | InitializingProgressBar: 0.000ms +2026-03-27T14:01:58.5354431Z 15:01:58.535 | PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms +2026-03-27T14:01:58.5359530Z 15:01:58.535 | OnDemandSchedulerStart: 0.279ms +2026-03-27T14:01:58.5364977Z 15:01:58.536 | PostProcessAllAssets: 77.079ms +2026-03-27T14:01:58.5370558Z 15:01:58.536 | Hotreload: 7.579ms +2026-03-27T14:01:58.5375669Z 15:01:58.537 | GatherAllCurrentPrimaryArtifactRevisions: 0.002ms +2026-03-27T14:01:58.5381114Z 15:01:58.537 | UnloadStreamsBegin: 1.866ms +2026-03-27T14:01:58.5386629Z 15:01:58.538 | PersistCurrentRevisions: 0.224ms +2026-03-27T14:01:58.5391712Z 15:01:58.538 | UnloadStreamsEnd: 0.001ms +2026-03-27T14:01:58.5399632Z 15:01:58.539 | GenerateScriptTypeHashes: 1.383ms +2026-03-27T14:01:58.5408057Z 15:01:58.540 | Untracked: 5052.414ms +2026-03-27T14:01:58.5413632Z 15:01:58.540 | +2026-03-27T14:01:58.5419855Z 15:01:58.541 | Application.AssetDatabase Initial Refresh End +2026-03-27T14:01:58.5427029Z 15:01:58.542 | Scanning for USB devices : 9.081ms +2026-03-27T14:01:58.5433593Z 15:01:58.542 | Initializing Unity extensions: +2026-03-27T14:01:58.5439849Z 15:01:58.543 | [MODES] ModeService[none].Initialize +2026-03-27T14:01:58.5453592Z 15:01:58.544 | [MODES] ModeService[none].LoadModes +2026-03-27T14:01:58.5462802Z 15:01:58.545 | [MODES] Loading mode Default (0) for mode-current-id-IntegrationTest6000.3.8f1 +2026-03-27T14:02:01.8405373Z 15:02:01.839 | Unloading 3 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:02:01.8413532Z 15:02:01.840 | Unloading 477 unused Assets / (1.2 MB). Loaded Objects now: 1053. +2026-03-27T14:02:01.8420014Z 15:02:01.841 | Memory consumption went from 96.1 MB to 94.9 MB. +2026-03-27T14:02:01.8435146Z 15:02:01.842 | Total: 7.171400 ms (FindLiveObjects: 0.082500 ms CreateObjectMapping: 0.028400 ms MarkObjects: 6.423100 ms DeleteObjects: 0.636300 ms) +2026-03-27T14:02:01.8441389Z 15:02:01.843 | +2026-03-27T14:02:01.8450165Z 15:02:01.844 | ConfigureOptions: Invoking SentryOptions +2026-03-27T14:02:01.8458245Z 15:02:01.845 | DisplayDialog: Start a setup wizard? It looks like you're setting up Sentry for the first time in this project. +2026-03-27T14:02:01.8464678Z 15:02:01.845 | +2026-03-27T14:02:01.8475455Z 15:02:01.846 | Would you like to start a setup wizard to connect to sentry.io? +2026-03-27T14:02:01.8482274Z 15:02:01.847 | This should not be called in batch mode. +2026-03-27T14:02:01.8489706Z 15:02:01.848 | Start importing Assets/Resources using Guid(b18a4d3e34d011f4c91717017f1c24cd) (DefaultImporter) -> (artifact id: '83adf93a227d8b2f374c586a6227b5eb') in 0.0036072 seconds +2026-03-27T14:02:01.8497468Z 15:02:01.849 | Start importing Assets/Resources/Sentry using Guid(ae74ee54f77716f41b45ffc9d862ec84) (DefaultImporter) -> (artifact id: 'd5ea7adf547868cb3144f4447500b770') in 0.0034492 seconds +2026-03-27T14:02:01.8524583Z 15:02:01.850 | Start importing Assets/Resources/Sentry/SentryOptions.asset using Guid(c94d75111b393f54780f4d1e3b2dc0ac) (NativeFormatImporter) -> (artifact id: 'a329bccdc38d39fbafbf5eb36014f2b4') in 0.0045112 seconds +2026-03-27T14:02:01.8534444Z 15:02:01.852 | Refreshing native plugins compatible for Editor in 6.10 ms, found 1 plugins. +2026-03-27T14:02:01.8541088Z 15:02:01.853 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:02:01.8554115Z 15:02:01.854 | Asset Pipeline Refresh (id=1fedd38423e1c564eaff3c4d9a69a9e2): Total: 0.093 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) +2026-03-27T14:02:01.8563508Z 15:02:01.855 | Start importing Assets/Plugins using Guid(352a72371cc1a874e95a1a85372994ae) (DefaultImporter) -> (artifact id: 'd51ea7622a58174dfe6b4ea893c10f0d') in 0.0038846 seconds +2026-03-27T14:02:01.8570606Z 15:02:01.856 | Start importing Assets/Plugins/Sentry using Guid(38d8344f9c748c44bbae2f3605284db6) (DefaultImporter) -> (artifact id: 'f6e8aa99504a6088afd416b0124d1a14') in 0.0033323 seconds +2026-03-27T14:02:01.8578850Z 15:02:01.857 | Start importing Assets/Plugins/Sentry/SentryCliOptions.asset using Guid(e6ab428b32fd07e4da8e3ee9afae16d9) (NativeFormatImporter) -> (artifact id: '621c1fc90584125fafe10447313c6687') in 0.0047128 seconds +2026-03-27T14:02:01.8586685Z 15:02:01.858 | Refreshing native plugins compatible for Editor in 6.83 ms, found 1 plugins. +2026-03-27T14:02:01.8593247Z 15:02:01.858 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:02:01.8640748Z 15:02:01.862 | Asset Pipeline Refresh (id=ab76527bad3eafb4484e1202e1ed7c40): Total: 0.054 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) +2026-03-27T14:02:02.2727750Z 15:02:02.270 | No graphic device is available to initialize the view. +2026-03-27T14:02:02.2734496Z 15:02:02.273 | UnityEngine.Debug:ExtractStackTraceNoAlloc (byte*,int,string) +2026-03-27T14:02:02.2744277Z 15:02:02.273 | UnityEngine.StackTraceUtility:ExtractStackTrace () +2026-03-27T14:02:02.2750760Z 15:02:02.274 | UnityEditor.GUIView:Internal_Init (int,int,bool,bool) +2026-03-27T14:02:02.2757968Z 15:02:02.275 | UnityEditor.GUIView:SetWindow (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.2769069Z 15:02:02.276 | UnityEditor.HostView:SetWindow (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.2776174Z 15:02:02.277 | UnityEditor.View:SetWindowRecurse (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.2784288Z 15:02:02.278 | UnityEditor.View:AddChild (UnityEditor.View,int) +2026-03-27T14:02:02.2791957Z 15:02:02.278 | UnityEditor.SplitView:AddChild (UnityEditor.View,int) +2026-03-27T14:02:02.2814603Z 15:02:02.280 | UnityEditor.View:AddChild (UnityEditor.View) +2026-03-27T14:02:02.2824463Z 15:02:02.281 | UnityEditor.EditorWindow:CreateNewWindowForEditorWindow (UnityEditor.EditorWindow,bool,bool,bool) +2026-03-27T14:02:02.2830167Z 15:02:02.282 | UnityEditor.EditorWindow:Show (bool) +2026-03-27T14:02:02.2838982Z 15:02:02.283 | UnityEditor.EditorWindow:Show () +2026-03-27T14:02:02.2845395Z 15:02:02.284 | UnityEditor.EditorWindow:GetWindowPrivate (System.Type,bool,string,bool,bool) +2026-03-27T14:02:02.2869479Z 15:02:02.284 | UnityEditor.EditorWindow:GetWindow (System.Type,bool,string,bool) +2026-03-27T14:02:02.2887060Z 15:02:02.287 | UnityEditor.EditorWindow:GetWindow (bool,string,bool) +2026-03-27T14:02:02.2904125Z 15:02:02.288 | UnityEditor.EditorWindow:GetWindow () +2026-03-27T14:02:02.2950839Z 15:02:02.291 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OpenSentryWindow () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:37) +2026-03-27T14:02:02.2963965Z 15:02:02.295 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OnMenuClick () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:31) +2026-03-27T14:02:02.2976626Z 15:02:02.296 | UnityEditor.EditorApplication:ExecuteMenuItemInternal (string,bool) +2026-03-27T14:02:02.3016651Z 15:02:02.299 | UnityEditor.EditorApplication:ExecuteMenuItem (string) +2026-03-27T14:02:02.3033974Z 15:02:02.302 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions (System.Collections.Generic.Dictionary`2,string) (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:20) +2026-03-27T14:02:02.3063745Z 15:02:02.304 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:14) +2026-03-27T14:02:02.3071243Z 15:02:02.306 | +2026-03-27T14:02:02.3077850Z 15:02:02.307 | [/sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs line 37] +2026-03-27T14:02:02.3083143Z 15:02:02.307 | +2026-03-27T14:02:02.3089019Z 15:02:02.308 | No graphic device is available to show the window. +2026-03-27T14:02:02.3097200Z 15:02:02.309 | UnityEngine.Debug:ExtractStackTraceNoAlloc (byte*,int,string) +2026-03-27T14:02:02.3102668Z 15:02:02.309 | UnityEngine.StackTraceUtility:ExtractStackTrace () +2026-03-27T14:02:02.3108731Z 15:02:02.310 | UnityEditor.ContainerWindow:Internal_Show (UnityEngine.Rect,int,UnityEngine.Vector2,UnityEngine.Vector2) +2026-03-27T14:02:02.3114233Z 15:02:02.310 | UnityEditor.ContainerWindow:Show (UnityEditor.ShowMode,bool,bool,bool) +2026-03-27T14:02:02.3119525Z 15:02:02.311 | UnityEditor.EditorWindow:CreateNewWindowForEditorWindow (UnityEditor.EditorWindow,bool,bool,bool) +2026-03-27T14:02:02.3124521Z 15:02:02.312 | UnityEditor.EditorWindow:Show (bool) +2026-03-27T14:02:02.3129692Z 15:02:02.312 | UnityEditor.EditorWindow:Show () +2026-03-27T14:02:02.3138021Z 15:02:02.313 | UnityEditor.EditorWindow:GetWindowPrivate (System.Type,bool,string,bool,bool) +2026-03-27T14:02:02.3146821Z 15:02:02.314 | UnityEditor.EditorWindow:GetWindow (System.Type,bool,string,bool) +2026-03-27T14:02:02.3152776Z 15:02:02.314 | UnityEditor.EditorWindow:GetWindow (bool,string,bool) +2026-03-27T14:02:02.3161115Z 15:02:02.315 | UnityEditor.EditorWindow:GetWindow () +2026-03-27T14:02:02.3187525Z 15:02:02.316 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OpenSentryWindow () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:37) +2026-03-27T14:02:02.3202823Z 15:02:02.318 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OnMenuClick () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:31) +2026-03-27T14:02:02.3210638Z 15:02:02.320 | UnityEditor.EditorApplication:ExecuteMenuItemInternal (string,bool) +2026-03-27T14:02:02.3216606Z 15:02:02.321 | UnityEditor.EditorApplication:ExecuteMenuItem (string) +2026-03-27T14:02:02.3223072Z 15:02:02.321 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions (System.Collections.Generic.Dictionary`2,string) (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:20) +2026-03-27T14:02:02.3228756Z 15:02:02.322 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:14) +2026-03-27T14:02:02.3236031Z 15:02:02.322 | +2026-03-27T14:02:02.3242166Z 15:02:02.323 | [/sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs line 37] +2026-03-27T14:02:02.3250848Z 15:02:02.324 | +2026-03-27T14:02:02.3257443Z 15:02:02.325 | No graphic device is available to initialize the view. +2026-03-27T14:02:02.3264252Z 15:02:02.325 | UnityEngine.Debug:ExtractStackTraceNoAlloc (byte*,int,string) +2026-03-27T14:02:02.3270444Z 15:02:02.326 | UnityEngine.StackTraceUtility:ExtractStackTrace () +2026-03-27T14:02:02.3278437Z 15:02:02.327 | UnityEditor.GUIView:Internal_Init (int,int,bool,bool) +2026-03-27T14:02:02.3287191Z 15:02:02.327 | UnityEditor.GUIView:SetWindow (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.3292694Z 15:02:02.328 | UnityEditor.HostView:SetWindow (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.3298440Z 15:02:02.329 | UnityEditor.View:SetWindowRecurse (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.3303745Z 15:02:02.329 | UnityEditor.View:SetWindowRecurse (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.3308996Z 15:02:02.330 | UnityEditor.ContainerWindow:Show (UnityEditor.ShowMode,bool,bool,bool) +2026-03-27T14:02:02.3318176Z 15:02:02.331 | UnityEditor.EditorWindow:CreateNewWindowForEditorWindow (UnityEditor.EditorWindow,bool,bool,bool) +2026-03-27T14:02:02.3328074Z 15:02:02.332 | UnityEditor.EditorWindow:Show (bool) +2026-03-27T14:02:02.3334011Z 15:02:02.333 | UnityEditor.EditorWindow:Show () +2026-03-27T14:02:02.3342476Z 15:02:02.333 | UnityEditor.EditorWindow:GetWindowPrivate (System.Type,bool,string,bool,bool) +2026-03-27T14:02:02.3348591Z 15:02:02.334 | UnityEditor.EditorWindow:GetWindow (System.Type,bool,string,bool) +2026-03-27T14:02:02.3354325Z 15:02:02.335 | UnityEditor.EditorWindow:GetWindow (bool,string,bool) +2026-03-27T14:02:02.3360286Z 15:02:02.335 | UnityEditor.EditorWindow:GetWindow () +2026-03-27T14:02:02.3367462Z 15:02:02.336 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OpenSentryWindow () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:37) +2026-03-27T14:02:02.3376700Z 15:02:02.336 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OnMenuClick () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:31) +2026-03-27T14:02:02.3381963Z 15:02:02.337 | UnityEditor.EditorApplication:ExecuteMenuItemInternal (string,bool) +2026-03-27T14:02:02.3395448Z 15:02:02.338 | UnityEditor.EditorApplication:ExecuteMenuItem (string) +2026-03-27T14:02:02.3402471Z 15:02:02.339 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions (System.Collections.Generic.Dictionary`2,string) (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:20) +2026-03-27T14:02:02.3415337Z 15:02:02.340 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:14) +2026-03-27T14:02:02.3419585Z 15:02:02.341 | +2026-03-27T14:02:02.3425174Z 15:02:02.342 | [/sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs line 37] +2026-03-27T14:02:02.3430189Z 15:02:02.342 | +2026-03-27T14:02:02.3435780Z 15:02:02.343 | ConfigureOptions: Found SentryOptions +2026-03-27T14:02:02.3441660Z 15:02:02.343 | ConfigureOptions: Configuring Build Time Options Script to IntegrationOptionsConfiguration +2026-03-27T14:02:02.3449050Z 15:02:02.344 | Start importing Assets/Resources/Sentry/IntegrationOptionsConfiguration.asset using Guid(9d49eb67b7ec2024cbcd8b750ee323e2) (NativeFormatImporter) -> (artifact id: 'bba165513a6b16ccd35096791e95aeed') in 0.0046953 seconds +2026-03-27T14:02:02.3457811Z 15:02:02.345 | Refreshing native plugins compatible for Editor in 6.40 ms, found 1 plugins. +2026-03-27T14:02:02.3474897Z 15:02:02.345 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:02:02.3482006Z 15:02:02.347 | Asset Pipeline Refresh (id=a0bdc79dfc65f5a40b71e693298678ab): Total: 0.041 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) +2026-03-27T14:02:02.3488109Z 15:02:02.348 | Asset Pipeline Refresh (id=4b6d4838c36bbf44cb14a537276180b5): Total: 0.027 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) +2026-03-27T14:02:02.3493479Z 15:02:02.348 | ConfigureOptions: Configuring CliOptions Script to CliConfiguration +2026-03-27T14:02:02.3499740Z 15:02:02.349 | Start importing Assets/Plugins/Sentry/CliConfiguration.asset using Guid(d69724726acef564b909f6468a8769fe) (NativeFormatImporter) -> (artifact id: '858d6d22056eecc852c49ddfdd972c0b') in 0.0042336 seconds +2026-03-27T14:02:02.3504679Z 15:02:02.350 | Refreshing native plugins compatible for Editor in 6.34 ms, found 1 plugins. +2026-03-27T14:02:02.3509903Z 15:02:02.350 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:02:02.3515971Z 15:02:02.351 | Asset Pipeline Refresh (id=3080f05289ac9c04cbc976f19e08782e): Total: 0.036 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) +2026-03-27T14:02:02.3521335Z 15:02:02.351 | Asset Pipeline Refresh (id=08a8d9aac80e12e4ba719d97e5733180): Total: 0.032 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) +2026-03-27T14:02:02.3527601Z 15:02:02.352 | Start importing Assets/Plugins/Sentry/SentryCliOptions.asset using Guid(e6ab428b32fd07e4da8e3ee9afae16d9) (NativeFormatImporter) -> (artifact id: '65dc4cfb41ef4a9cbaa2897520e2e020') in 0.004169 seconds +2026-03-27T14:02:02.3533413Z 15:02:02.352 | Start importing Assets/Resources/Sentry/SentryOptions.asset using Guid(c94d75111b393f54780f4d1e3b2dc0ac) (NativeFormatImporter) -> (artifact id: '9d4fb8c47221cbb33119d7fb7603816f') in 0.0042347 seconds +2026-03-27T14:02:02.3539215Z 15:02:02.353 | Refreshing native plugins compatible for Editor in 7.07 ms, found 1 plugins. +2026-03-27T14:02:02.3544862Z 15:02:02.354 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:02:02.3550908Z 15:02:02.354 | Asset Pipeline Refresh (id=29d45253124751549acfa748813ff2a8): Total: 0.042 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) +2026-03-27T14:02:02.3556251Z 15:02:02.355 | No graphic device is available to initialize the view. +2026-03-27T14:02:02.3592893Z 15:02:02.356 | UnityEngine.Debug:ExtractStackTraceNoAlloc (byte*,int,string) +2026-03-27T14:02:02.3599514Z 15:02:02.359 | UnityEngine.StackTraceUtility:ExtractStackTrace () +2026-03-27T14:02:02.3606490Z 15:02:02.360 | UnityEditor.GUIView:Internal_Init (int,int,bool,bool) +2026-03-27T14:02:02.3617015Z 15:02:02.361 | UnityEditor.GUIView:SetWindow (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.3832609Z 15:02:02.362 | UnityEditor.HostView:SetWindow (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.3892555Z 15:02:02.384 | UnityEditor.View:SetWindowRecurse (UnityEditor.ContainerWindow) +2026-03-27T14:02:02.4041390Z 15:02:02.390 | UnityEditor.View:RemoveChild (int) +2026-03-27T14:02:02.4060271Z 15:02:02.405 | UnityEditor.View:RemoveChild (UnityEditor.View) +2026-03-27T14:02:02.4098221Z 15:02:02.406 | UnityEditor.SplitView:RemoveChild (UnityEditor.View) +2026-03-27T14:02:02.4216977Z 15:02:02.419 | UnityEditor.SplitView:RemoveChildNice (UnityEditor.View) +2026-03-27T14:02:02.4434079Z 15:02:02.429 | UnityEditor.DockArea:KillIfEmpty () +2026-03-27T14:02:02.4461962Z 15:02:02.444 | UnityEditor.DockArea:RemoveTab (UnityEditor.EditorWindow,bool,bool) +2026-03-27T14:02:02.4702903Z 15:02:02.449 | UnityEditor.EditorWindow:Close () +2026-03-27T14:02:02.4929227Z 15:02:02.477 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions (System.Collections.Generic.Dictionary`2,string) (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:53) +2026-03-27T14:02:02.5236576Z 15:02:02.495 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:14) +2026-03-27T14:02:02.5362540Z 15:02:02.535 | +2026-03-27T14:02:02.5387884Z 15:02:02.538 | [/sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs line 53] +2026-03-27T14:02:02.5405155Z 15:02:02.538 | +2026-03-27T14:02:02.5414033Z 15:02:02.540 | ConfigureOptions: SUCCESS +2026-03-27T14:02:02.5423727Z 15:02:02.541 | Batchmode quit successfully invoked - shutting down! +2026-03-27T14:02:02.5430231Z 15:02:02.542 | Killing ADB server in 0.17163 seconds. +2026-03-27T14:02:02.9585222Z 15:02:02.956 | [Physics::Module] Cleanup current backend. +2026-03-27T14:02:02.9597601Z 15:02:02.959 | [Physics::Module] Id: 0xf2b8ea05 +2026-03-27T14:02:02.9618118Z 15:02:02.960 | Input System module state changed to: ShutdownInProgress. +2026-03-27T14:02:02.9625412Z 15:02:02.962 | Input System polling thread exited. +2026-03-27T14:02:02.9635165Z 15:02:02.963 | Input System module state changed to: Shutdown. +2026-03-27T14:02:02.9641562Z 15:02:02.963 | [Licensing::IpcConnector] LicenseClient-github-runner-notifications channel disconnected successfully. +2026-03-27T14:02:02.9646803Z 15:02:02.964 | [Licensing::IpcConnector] LicenseClient-github-runner channel disconnected successfully. +2026-03-27T14:02:02.9654230Z 15:02:02.964 | AcceleratorClientConnectionCallback - disconnected - :0 +2026-03-27T14:02:02.9660114Z 15:02:02.965 | Cleanup mono +2026-03-27T14:02:04.1972328Z 15:02:04.196 | Exiting batchmode successfully now! +2026-03-27T14:02:04.1981321Z 15:02:04.197 | Exiting without the bug reporter. Application will terminate with return code 0 +2026-03-27T14:02:04.6113882Z ##[endgroup] +2026-03-27T14:02:04.6120079Z Unity finished successfully. Time taken: 00:00:20.787 +2026-03-27T14:02:04.6144379Z 15:02:04.614 | +2026-03-27T14:02:04.6144868Z ConfigureSentryOptions | SUCCESS because the following text was found: '15:02:02.540 | ConfigureOptions: SUCCESS' +2026-03-27T14:02:04.6162544Z 15:02:04.615 | [OK] Sentry configured +2026-03-27T14:02:04.6186058Z +2026-03-27T14:02:04.6190576Z ================================================================ +2026-03-27T14:02:04.6194606Z SETTING UP THE NATIVE PLUGIN FOR XSX +2026-03-27T14:02:04.6198491Z ================================================================ +2026-03-27T14:02:04.6493138Z 15:02:04.648 | Copying native plugins for platform 'XSX' +2026-03-27T14:02:04.6500700Z 15:02:04.649 | Source: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-native-xbox-unity +2026-03-27T14:02:04.6507423Z 15:02:04.650 | Target: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Assets/Plugins/Sentry/XSX +2026-03-27T14:02:04.6773086Z 15:02:04.676 | Copying: sentry.dll +2026-03-27T14:02:04.6936274Z 15:02:04.692 | Creating meta: sentry.dll.meta +2026-03-27T14:02:04.7063533Z 15:02:04.705 | Copying: sentry.pdb +2026-03-27T14:02:04.7183302Z 15:02:04.717 | Creating meta: sentry.pdb.meta +2026-03-27T14:02:04.7223045Z 15:02:04.721 | Copied 2 file(s) with meta files +2026-03-27T14:02:04.7228125Z 15:02:04.722 | [OK] Native plugins copied +2026-03-27T14:02:04.7234089Z +2026-03-27T14:02:04.7239572Z ================================================================ +2026-03-27T14:02:04.7243577Z BUILDING PROJECT +2026-03-27T14:02:04.7247434Z ================================================================ +2026-03-27T14:02:04.7474063Z 15:02:04.746 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe +2026-03-27T14:02:04.7513543Z 15:02:04.750 | Build method: Builder.BuildXSXIL2CPPPlayer +2026-03-27T14:02:04.7518302Z 15:02:04.751 | Output path: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test +2026-03-27T14:02:04.7525612Z ##[group]Run C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -batchmode -projectPath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -executeMethod Builder.BuildXSXIL2CPPPlayer -buildPath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test -quit -logfile unity.log +2026-03-27T14:02:04.7529116Z Removing Unity log unity.log +2026-03-27T14:02:04.7814855Z Waiting for Unity to finish. +2026-03-27T14:02:05.1924715Z 15:02:05.189 | [Licensing::Module] Trying to connect to existing licensing client channel... +2026-03-27T14:02:05.1976850Z 15:02:05.195 | Built from '6000.3/staging' branch; Version is '6000.3.8f1 (1c7db571dde0) revision 1867189'; Using compiler version '194234433'; Build Type 'Release' +2026-03-27T14:02:05.2002409Z 15:02:05.198 | [Licensing::IpcConnector] Channel LicenseClient-github-runner doesn't exist +2026-03-27T14:02:05.2009353Z 15:02:05.200 | OS: 'Windows 11 (10.0.26200) Professional' Language: 'en' Physical Memory: 16322 MB +2026-03-27T14:02:05.2016472Z 15:02:05.201 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1 +2026-03-27T14:02:05.2025934Z 15:02:05.202 | System architecture: x64 +2026-03-27T14:02:05.2132908Z 15:02:05.203 | Process architecture: x64 +2026-03-27T14:02:05.2141338Z 15:02:05.213 | Date: 2026-03-27T14:02:05Z +2026-03-27T14:02:05.2148461Z 15:02:05.214 | [Licensing::Module] Successfully launched the LicensingClient (PId: 27496) +2026-03-27T14:02:05.6889597Z 15:02:05.632 | +2026-03-27T14:02:05.7169723Z 15:02:05.694 | COMMAND LINE ARGUMENTS: +2026-03-27T14:02:05.7181750Z 15:02:05.717 | C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe +2026-03-27T14:02:05.7271478Z 15:02:05.721 | -batchmode +2026-03-27T14:02:05.7280655Z 15:02:05.727 | -projectPath +2026-03-27T14:02:05.7289600Z 15:02:05.728 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:05.7295944Z 15:02:05.729 | -executeMethod +2026-03-27T14:02:05.7302787Z 15:02:05.729 | Builder.BuildXSXIL2CPPPlayer +2026-03-27T14:02:05.7308318Z 15:02:05.730 | -buildPath +2026-03-27T14:02:05.7314477Z 15:02:05.731 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test +2026-03-27T14:02:05.7319597Z 15:02:05.731 | -quit +2026-03-27T14:02:05.7324791Z 15:02:05.732 | -logfile +2026-03-27T14:02:05.7330760Z 15:02:05.732 | unity.log +2026-03-27T14:02:05.7337079Z 15:02:05.733 | Successfully changed project path to: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:05.7343155Z 15:02:05.733 | C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:05.7348390Z 15:02:05.734 | [UnityMemory] Configuration Parameters - Can be set up in boot.config +2026-03-27T14:02:05.7358458Z 15:02:05.735 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" +2026-03-27T14:02:05.7363811Z 15:02:05.735 | "memorysetup-temp-allocator-size-audio-worker=65536" +2026-03-27T14:02:05.7371387Z 15:02:05.736 | "memorysetup-temp-allocator-size-gfx=262144" +2026-03-27T14:02:05.7376384Z 15:02:05.737 | "memorysetup-allocator-temp-initial-block-size-main=262144" +2026-03-27T14:02:05.7381977Z 15:02:05.737 | "memorysetup-allocator-temp-initial-block-size-worker=262144" +2026-03-27T14:02:05.7413504Z 15:02:05.738 | "memorysetup-temp-allocator-size-background-worker=32768" +2026-03-27T14:02:05.7420680Z 15:02:05.741 | "memorysetup-temp-allocator-size-job-worker=262144" +2026-03-27T14:02:05.7427722Z 15:02:05.742 | "memorysetup-temp-allocator-size-preload-manager=33554432" +2026-03-27T14:02:05.7432580Z 15:02:05.742 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:02:05.7440703Z 15:02:05.743 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:02:05.7447670Z 15:02:05.744 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:02:05.7471399Z 15:02:05.745 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:02:05.7477780Z 15:02:05.747 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" +2026-03-27T14:02:05.7484327Z 15:02:05.748 | "memorysetup-bucket-allocator-granularity=16" +2026-03-27T14:02:05.7490641Z 15:02:05.748 | "memorysetup-bucket-allocator-bucket-count=8" +2026-03-27T14:02:05.7495932Z 15:02:05.749 | "memorysetup-bucket-allocator-block-size=33554432" +2026-03-27T14:02:05.7502205Z 15:02:05.749 | "memorysetup-bucket-allocator-block-count=8" +2026-03-27T14:02:05.7506773Z 15:02:05.750 | "memorysetup-main-allocator-block-size=16777216" +2026-03-27T14:02:05.7516146Z 15:02:05.751 | "memorysetup-thread-allocator-block-size=16777216" +2026-03-27T14:02:05.7521588Z 15:02:05.751 | "memorysetup-gfx-main-allocator-block-size=16777216" +2026-03-27T14:02:05.7529928Z 15:02:05.752 | "memorysetup-gfx-thread-allocator-block-size=16777216" +2026-03-27T14:02:05.7545019Z 15:02:05.753 | "memorysetup-cache-allocator-block-size=4194304" +2026-03-27T14:02:05.7551939Z 15:02:05.754 | "memorysetup-typetree-allocator-block-size=2097152" +2026-03-27T14:02:05.7560779Z 15:02:05.755 | "memorysetup-profiler-bucket-allocator-granularity=16" +2026-03-27T14:02:05.7568115Z 15:02:05.756 | "memorysetup-profiler-bucket-allocator-bucket-count=8" +2026-03-27T14:02:05.7577952Z 15:02:05.757 | "memorysetup-profiler-bucket-allocator-block-size=33554432" +2026-03-27T14:02:05.7583225Z 15:02:05.757 | "memorysetup-profiler-bucket-allocator-block-count=8" +2026-03-27T14:02:05.7589760Z 15:02:05.758 | "memorysetup-profiler-allocator-block-size=16777216" +2026-03-27T14:02:05.7598673Z 15:02:05.759 | "memorysetup-profiler-editor-allocator-block-size=1048576" +2026-03-27T14:02:05.7606715Z 15:02:05.760 | "memorysetup-temp-allocator-size-main=16777216" +2026-03-27T14:02:05.7777057Z 15:02:05.767 | "memorysetup-job-temp-allocator-block-size=2097152" +2026-03-27T14:02:05.7787415Z 15:02:05.778 | "memorysetup-job-temp-allocator-block-size-background=1048576" +2026-03-27T14:02:05.7795242Z 15:02:05.778 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" +2026-03-27T14:02:05.7807401Z 15:02:05.779 | "memorysetup-temp-allocator-size-cloud-worker=32768" +2026-03-27T14:02:05.7813603Z 15:02:05.780 | Player connection [37204] Target information: +2026-03-27T14:02:05.7818508Z 15:02:05.781 | +2026-03-27T14:02:05.7826465Z 15:02:05.782 | Player connection [37204] * "[IP] 10.2.1.51 [Port] 55504 [Flags] 2 [Guid] 3210065026 [EditorId] 3210065026 [Version] 1048832 [Id] WindowsEditor(7,GDX-T1) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" +2026-03-27T14:02:05.7832898Z 15:02:05.782 | +2026-03-27T14:02:05.7858001Z 15:02:05.785 | Player connection [37204] Host joined multi-casting on [225.0.0.222:54997]... +2026-03-27T14:02:05.7865506Z 15:02:05.786 | Player connection [37204] Host joined alternative multi-casting on [225.0.0.222:34997]... +2026-03-27T14:02:05.7871208Z 15:02:05.786 | Input System module state changed to: Initialized. +2026-03-27T14:02:05.7884163Z 15:02:05.787 | [Physics::Module] Initialized fallback backend. +2026-03-27T14:02:05.7895710Z 15:02:05.789 | [Physics::Module] Id: 0xdecafbad +2026-03-27T14:02:06.2026801Z 15:02:06.201 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner" at "2026-03-27T14:02:05.9230683Z" +2026-03-27T14:02:06.2037659Z 15:02:06.203 | [Package Manager] Connected to IPC stream "Upm-7096" after 0.5 seconds. +2026-03-27T14:02:06.2049271Z 15:02:06.204 | [Licensing::Module] Licensing is not yet initialized. +2026-03-27T14:02:08.6345324Z 15:02:08.634 | [Licensing::Client] Handshaking with LicensingClient: +2026-03-27T14:02:08.6351612Z 15:02:08.634 | Version: 1.17.4+4293ba1 +2026-03-27T14:02:08.6358053Z 15:02:08.635 | Session Id: 42488e3cce464b13adc1359b50b87996 +2026-03-27T14:02:08.6364277Z 15:02:08.635 | Correlation Id: 9b846f402a415524480ca7b2697cf7e3 +2026-03-27T14:02:08.6369481Z 15:02:08.636 | External correlation Id: 5251156586387745817 +2026-03-27T14:02:08.6376203Z 15:02:08.637 | Machine Id: b5cL0vq5etg728hHCfaSnjJzEl4= +2026-03-27T14:02:08.6381635Z 15:02:08.637 | [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-github-runner" (connect: 0.86s, validation: 0.07s, handshake: 2.48s) +2026-03-27T14:02:08.6388163Z 15:02:08.638 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner-notifications" at "2026-03-27T14:02:08.4707652Z" +2026-03-27T14:02:08.6394595Z 15:02:08.639 | [Licensing::Module] Connected to LicensingClient (PId: 27496, launch time: 0.01, total connection time: 3.41s) +2026-03-27T14:02:08.6400257Z 15:02:08.639 | [Licensing::Module] Error: Access token is unavailable; failed to update +2026-03-27T14:02:08.6405078Z 15:02:08.640 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:02:08.6411775Z 15:02:08.640 | [Licensing::Module] License group: +2026-03-27T14:02:08.6417657Z 15:02:08.641 | Id: SC-6P43-RKFA-9PYH-ZZ9Q-XXXX +2026-03-27T14:02:08.6423826Z 15:02:08.642 | Product: Unity Pro +2026-03-27T14:02:08.6429283Z 15:02:08.642 | Type: ULF +2026-03-27T14:02:08.6435481Z 15:02:08.643 | Expiration: 2027-03-05T00:00:00Z +2026-03-27T14:02:08.6441842Z 15:02:08.643 | [Licensing::Client] Successfully updated license, isAsync: True, time: 0.01 +2026-03-27T14:02:08.6448864Z 15:02:08.644 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:02:08.6455235Z 15:02:08.645 | [Licensing::Module] Licensing Background thread has ended after 3.46s +2026-03-27T14:02:08.6461944Z 15:02:08.645 | [Licensing::Module] Licensing is initialized (took 2.43s). +2026-03-27T14:02:08.6468321Z 15:02:08.646 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:02:08.6473486Z 15:02:08.646 | Library Redirect Path: Library/ +2026-03-27T14:02:09.0534520Z 15:02:09.052 | [Physics::Module] Selected backend. +2026-03-27T14:02:09.0540647Z 15:02:09.053 | [Physics::Module] Name: PhysX +2026-03-27T14:02:09.0546835Z 15:02:09.054 | [Physics::Module] Id: 0xf2b8ea05 +2026-03-27T14:02:09.0553720Z 15:02:09.054 | [Physics::Module] SDK Version: 4.1.2 +2026-03-27T14:02:09.0560112Z 15:02:09.055 | [Physics::Module] Integration Version: 1.0.0 +2026-03-27T14:02:09.0565722Z 15:02:09.056 | [Physics::Module] Threading Mode: Multi-Threaded +2026-03-27T14:02:09.0572879Z 15:02:09.056 | Refreshing native plugins compatible for Editor in 1.77 ms, found 0 plugins. +2026-03-27T14:02:09.0584815Z 15:02:09.058 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:02:09.0590823Z 15:02:09.058 | Initialize engine version: 6000.3.8f1 (1c7db571dde0) +2026-03-27T14:02:09.0597357Z 15:02:09.059 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Resources/UnitySubsystems +2026-03-27T14:02:09.0603913Z 15:02:09.059 | [Subsystems] Discovering subsystems at path C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets +2026-03-27T14:02:09.0611396Z 15:02:09.060 | GfxDevice: creating device client; kGfxThreadingModeNonThreaded +2026-03-27T14:02:09.0616904Z 15:02:09.061 | Direct3D: +2026-03-27T14:02:09.0623362Z 15:02:09.061 | Version: Direct3D 11.0 [level 11.1] +2026-03-27T14:02:09.0629587Z 15:02:09.062 | Renderer: NVIDIA GeForce GTX 1080 (ID=0x1b80) +2026-03-27T14:02:09.0636248Z 15:02:09.063 | Vendor: NVIDIA +2026-03-27T14:02:09.0642392Z 15:02:09.063 | VRAM: 8059 MB +2026-03-27T14:02:09.0650056Z 15:02:09.064 | Driver: 32.0.15.7716 +2026-03-27T14:02:09.4744310Z 15:02:09.473 | Initialize mono +2026-03-27T14:02:09.4776326Z 15:02:09.475 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed' +2026-03-27T14:02:09.4786582Z 15:02:09.478 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +2026-03-27T14:02:09.4802954Z 15:02:09.479 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/etc' +2026-03-27T14:02:09.4811659Z 15:02:09.480 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56096 +2026-03-27T14:02:09.4818485Z 15:02:09.481 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts +2026-03-27T14:02:09.4829662Z 15:02:09.482 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts +2026-03-27T14:02:09.4837374Z 15:02:09.483 | ImportWorker Server TCP listen port: 0 +2026-03-27T14:02:09.4844040Z 15:02:09.484 | AcceleratorClientConnectionCallback - disconnected - :0 +2026-03-27T14:02:09.4858819Z 15:02:09.484 | Begin MonoManager ReloadAssembly +2026-03-27T14:02:09.4866453Z 15:02:09.486 | Registering precompiled unity dll's ... +2026-03-27T14:02:09.4900976Z 15:02:09.487 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +2026-03-27T14:02:09.4909792Z 15:02:09.490 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:02:09.4916576Z 15:02:09.491 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/PS5Player/UnityEditor.PS5.Extensions.dll +2026-03-27T14:02:09.4924164Z 15:02:09.491 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/UnityEditor.GameCoreScarlett.Extensions.dll +2026-03-27T14:02:09.4935160Z 15:02:09.492 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:02:09.4947231Z 15:02:09.493 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll +2026-03-27T14:02:09.4954066Z 15:02:09.494 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreXboxOneSupport/UnityEditor.GameCoreXboxOne.Extensions.dll +2026-03-27T14:02:09.4960298Z 15:02:09.495 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:02:09.4967696Z 15:02:09.496 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll +2026-03-27T14:02:09.4977821Z 15:02:09.496 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/Switch/UnityEditor.Switch.Extensions.dll +2026-03-27T14:02:09.4985367Z 15:02:09.498 | Registered in 0.025832 seconds. +2026-03-27T14:02:09.9108731Z 15:02:09.909 | - Loaded All Assemblies, in 0.615 seconds +2026-03-27T14:02:10.3153698Z 15:02:10.313 | Native extension for iOS target not found +2026-03-27T14:02:10.3163872Z 15:02:10.315 | Native extension for Android target not found +2026-03-27T14:02:13.1645539Z 15:02:13.164 | Android Extension - Scanning For ADB Devices 2616 ms +2026-03-27T14:02:13.1651668Z 15:02:13.164 | Native extension for WindowsStandalone target not found +2026-03-27T14:02:13.5719775Z 15:02:13.571 | ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:False +2026-03-27T14:02:13.5727145Z 15:02:13.572 | Mono: successfully reloaded assembly +2026-03-27T14:02:13.5732915Z 15:02:13.572 | - Finished resetting the current domain, in 3.505 seconds +2026-03-27T14:02:13.5739601Z 15:02:13.573 | Domain Reload Profiling: 4111ms +2026-03-27T14:02:13.5744804Z 15:02:13.574 | BeginReloadAssembly (200ms) +2026-03-27T14:02:13.5750482Z 15:02:13.574 | ExecutionOrderSort (0ms) +2026-03-27T14:02:13.5756010Z 15:02:13.575 | DisableScriptedObjects (0ms) +2026-03-27T14:02:13.5761459Z 15:02:13.575 | BackupInstance (0ms) +2026-03-27T14:02:13.5769664Z 15:02:13.576 | ReleaseScriptingObjects (0ms) +2026-03-27T14:02:13.5775952Z 15:02:13.577 | CreateAndSetChildDomain (5ms) +2026-03-27T14:02:13.5782040Z 15:02:13.577 | RebuildCommonClasses (48ms) +2026-03-27T14:02:13.5792839Z 15:02:13.578 | RebuildNativeTypeToScriptingClass (18ms) +2026-03-27T14:02:13.5794807Z 15:02:13.579 | initialDomainReloadingComplete (92ms) +2026-03-27T14:02:13.5801353Z 15:02:13.579 | LoadAllAssembliesAndSetupDomain (247ms) +2026-03-27T14:02:13.5807306Z 15:02:13.580 | LoadAssemblies (191ms) +2026-03-27T14:02:13.5813906Z 15:02:13.581 | RebuildTransferFunctionScriptingTraits (0ms) +2026-03-27T14:02:13.5822628Z 15:02:13.581 | AnalyzeDomain (239ms) +2026-03-27T14:02:13.5829714Z 15:02:13.582 | TypeCache.Refresh (237ms) +2026-03-27T14:02:13.5837560Z 15:02:13.583 | TypeCache.ScanAssembly (218ms) +2026-03-27T14:02:13.5843050Z 15:02:13.583 | BuildScriptInfoCaches (0ms) +2026-03-27T14:02:13.5849415Z 15:02:13.584 | ResolveRequiredComponents (1ms) +2026-03-27T14:02:13.5855041Z 15:02:13.585 | FinalizeReload (3506ms) +2026-03-27T14:02:13.5860836Z 15:02:13.585 | ReleaseScriptCaches (0ms) +2026-03-27T14:02:13.5866411Z 15:02:13.586 | RebuildScriptCaches (0ms) +2026-03-27T14:02:13.5875151Z 15:02:13.586 | SetupLoadedEditorAssemblies (3460ms) +2026-03-27T14:02:13.5887956Z 15:02:13.588 | LogAssemblyErrors (0ms) +2026-03-27T14:02:13.5894453Z 15:02:13.588 | InitializePlatformSupportModulesInManaged (3078ms) +2026-03-27T14:02:13.5899878Z 15:02:13.589 | SetLoadedEditorAssemblies (5ms) +2026-03-27T14:02:13.5906406Z 15:02:13.590 | BeforeProcessingInitializeOnLoad (115ms) +2026-03-27T14:02:13.5912258Z 15:02:13.590 | ProcessInitializeOnLoadAttributes (172ms) +2026-03-27T14:02:13.5918423Z 15:02:13.591 | ProcessInitializeOnLoadMethodAttributes (90ms) +2026-03-27T14:02:13.5925245Z 15:02:13.592 | AfterProcessingInitializeOnLoad (0ms) +2026-03-27T14:02:13.5931539Z 15:02:13.592 | EditorAssembliesLoaded (0ms) +2026-03-27T14:02:13.5941066Z 15:02:13.593 | ExecutionOrderSort2 (0ms) +2026-03-27T14:02:13.5948186Z 15:02:13.594 | AwakeInstancesAfterBackupRestoration (0ms) +2026-03-27T14:02:13.5955338Z 15:02:13.594 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:02:13.5962628Z 15:02:13.595 | Application.AssetDatabase Initial Refresh Start +2026-03-27T14:02:13.5968768Z 15:02:13.596 | Package Manager log level set to [2] +2026-03-27T14:02:13.5975347Z 15:02:13.597 | [Package Manager] Restoring resolved packages state from cache +2026-03-27T14:02:13.5982219Z 15:02:13.597 | [Licensing::Client] Successfully resolved entitlement details +2026-03-27T14:02:13.5990994Z 15:02:13.598 | [Package Manager] Registered 39 packages: +2026-03-27T14:02:13.5996928Z 15:02:13.599 | Built-in packages: +2026-03-27T14:02:13.6005557Z 15:02:13.599 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) +2026-03-27T14:02:13.6014664Z 15:02:13.600 | com.unity.ugui@2.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc) +2026-03-27T14:02:13.6030010Z 15:02:13.601 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) +2026-03-27T14:02:13.6048612Z 15:02:13.604 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) +2026-03-27T14:02:13.6056016Z 15:02:13.604 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) +2026-03-27T14:02:13.6066417Z 15:02:13.605 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) +2026-03-27T14:02:13.6075060Z 15:02:13.606 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) +2026-03-27T14:02:13.6081084Z 15:02:13.607 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) +2026-03-27T14:02:13.6089957Z 15:02:13.608 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) +2026-03-27T14:02:13.6096403Z 15:02:13.609 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) +2026-03-27T14:02:13.6103294Z 15:02:13.609 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) +2026-03-27T14:02:13.6110577Z 15:02:13.610 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) +2026-03-27T14:02:13.6115868Z 15:02:13.611 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) +2026-03-27T14:02:13.6122471Z 15:02:13.611 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) +2026-03-27T14:02:13.6127773Z 15:02:13.612 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) +2026-03-27T14:02:13.6133268Z 15:02:13.612 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) +2026-03-27T14:02:13.6141530Z 15:02:13.613 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) +2026-03-27T14:02:13.6148040Z 15:02:13.614 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) +2026-03-27T14:02:13.6156211Z 15:02:13.614 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) +2026-03-27T14:02:13.6161476Z 15:02:13.615 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) +2026-03-27T14:02:13.6167839Z 15:02:13.616 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) +2026-03-27T14:02:13.6174158Z 15:02:13.616 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) +2026-03-27T14:02:13.6183129Z 15:02:13.617 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) +2026-03-27T14:02:13.6188806Z 15:02:13.618 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) +2026-03-27T14:02:13.6194265Z 15:02:13.618 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) +2026-03-27T14:02:13.6199904Z 15:02:13.619 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) +2026-03-27T14:02:13.6205438Z 15:02:13.620 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) +2026-03-27T14:02:13.6212468Z 15:02:13.620 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) +2026-03-27T14:02:13.6217738Z 15:02:13.621 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) +2026-03-27T14:02:13.6223586Z 15:02:13.621 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) +2026-03-27T14:02:13.6229417Z 15:02:13.622 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) +2026-03-27T14:02:13.6235612Z 15:02:13.623 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) +2026-03-27T14:02:13.6242158Z 15:02:13.623 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) +2026-03-27T14:02:13.6248492Z 15:02:13.624 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) +2026-03-27T14:02:13.6254907Z 15:02:13.624 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) +2026-03-27T14:02:13.6259866Z 15:02:13.625 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) +2026-03-27T14:02:13.6266870Z 15:02:13.626 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) +2026-03-27T14:02:13.6275160Z 15:02:13.626 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) +2026-03-27T14:02:13.6282786Z 15:02:13.627 | Local packages: +2026-03-27T14:02:13.6290518Z 15:02:13.628 | io.sentry.unity@file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package) +2026-03-27T14:02:13.6298002Z 15:02:13.629 | [Subsystems] No new subsystems found in resolved package list. +2026-03-27T14:02:13.6304887Z 15:02:13.629 | [Package Manager] Done registering packages in 0.04 seconds +2026-03-27T14:02:14.4877610Z 15:02:14.469 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies +2026-03-27T14:02:14.5171247Z 15:02:14.488 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:14.5328584Z 15:02:14.526 | DisplayProgressbar: Compiling Scripts +2026-03-27T14:02:14.5551276Z 15:02:14.539 | ExitCode: 0 Duration: 0s198ms +2026-03-27T14:02:14.5682799Z 15:02:14.561 | *** Tundra build success (0.09 seconds), 0 items updated, 257 evaluated +2026-03-27T14:02:14.5690767Z 15:02:14.568 | AssetDatabase: script compilation time: 0.976595s +2026-03-27T14:02:14.5697984Z 15:02:14.569 | Begin MonoManager ReloadAssembly +2026-03-27T14:02:15.7971454Z 15:02:15.796 | - Loaded All Assemblies, in 0.868 seconds +2026-03-27T14:02:15.7977785Z 15:02:15.797 | Start importing Assets/Plugins/Sentry/XSX using Guid(dc171cd0d7baede4c8bb5ef111d25009) (DefaultImporter) -> (artifact id: '642a92c8530fe22ded4e4b8ec27d7467') in 0.021484 seconds +2026-03-27T14:02:15.7987936Z 15:02:15.797 | Refreshing native plugins compatible for Editor in 6.10 ms, found 1 plugins. +2026-03-27T14:02:16.2003805Z 15:02:16.199 | Native extension for iOS target not found +2026-03-27T14:02:16.2010920Z 15:02:16.200 | Native extension for Android target not found +2026-03-27T14:02:16.2017913Z 15:02:16.201 | Native extension for WindowsStandalone target not found +2026-03-27T14:02:16.6059339Z 15:02:16.604 | Sentry Package Installation: Sentry not requested to be installed. +2026-03-27T14:02:16.6065402Z 15:02:16.606 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True +2026-03-27T14:02:16.6073287Z 15:02:16.606 | Mono: successfully reloaded assembly +2026-03-27T14:02:16.6080182Z 15:02:16.607 | - Finished resetting the current domain, in 0.838 seconds +2026-03-27T14:02:16.6085827Z 15:02:16.608 | Domain Reload Profiling: 1693ms +2026-03-27T14:02:16.6093833Z 15:02:16.608 | BeginReloadAssembly (395ms) +2026-03-27T14:02:16.6101351Z 15:02:16.609 | ExecutionOrderSort (0ms) +2026-03-27T14:02:16.6109059Z 15:02:16.610 | DisableScriptedObjects (19ms) +2026-03-27T14:02:16.6115730Z 15:02:16.611 | BackupInstance (0ms) +2026-03-27T14:02:16.6120738Z 15:02:16.611 | ReleaseScriptingObjects (0ms) +2026-03-27T14:02:16.6126305Z 15:02:16.612 | CreateAndSetChildDomain (159ms) +2026-03-27T14:02:16.6132524Z 15:02:16.612 | RebuildCommonClasses (47ms) +2026-03-27T14:02:16.6138340Z 15:02:16.613 | RebuildNativeTypeToScriptingClass (17ms) +2026-03-27T14:02:16.6144860Z 15:02:16.614 | initialDomainReloadingComplete (53ms) +2026-03-27T14:02:16.6149190Z 15:02:16.614 | LoadAllAssembliesAndSetupDomain (343ms) +2026-03-27T14:02:16.6154278Z 15:02:16.615 | LoadAssemblies (411ms) +2026-03-27T14:02:16.6159458Z 15:02:16.615 | RebuildTransferFunctionScriptingTraits (0ms) +2026-03-27T14:02:16.6164440Z 15:02:16.616 | AnalyzeDomain (85ms) +2026-03-27T14:02:16.6170112Z 15:02:16.616 | TypeCache.Refresh (70ms) +2026-03-27T14:02:16.6176731Z 15:02:16.617 | TypeCache.ScanAssembly (61ms) +2026-03-27T14:02:16.6182488Z 15:02:16.617 | BuildScriptInfoCaches (10ms) +2026-03-27T14:02:16.6188839Z 15:02:16.618 | ResolveRequiredComponents (2ms) +2026-03-27T14:02:16.6199957Z 15:02:16.619 | FinalizeReload (838ms) +2026-03-27T14:02:16.6206733Z 15:02:16.620 | ReleaseScriptCaches (0ms) +2026-03-27T14:02:16.6213934Z 15:02:16.620 | RebuildScriptCaches (0ms) +2026-03-27T14:02:16.6219936Z 15:02:16.621 | SetupLoadedEditorAssemblies (689ms) +2026-03-27T14:02:16.6226161Z 15:02:16.622 | LogAssemblyErrors (0ms) +2026-03-27T14:02:16.6231913Z 15:02:16.622 | InitializePlatformSupportModulesInManaged (319ms) +2026-03-27T14:02:16.6237188Z 15:02:16.623 | SetLoadedEditorAssemblies (3ms) +2026-03-27T14:02:16.6242479Z 15:02:16.623 | BeforeProcessingInitializeOnLoad (162ms) +2026-03-27T14:02:16.6247789Z 15:02:16.624 | ProcessInitializeOnLoadAttributes (146ms) +2026-03-27T14:02:16.6252786Z 15:02:16.624 | ProcessInitializeOnLoadMethodAttributes (43ms) +2026-03-27T14:02:16.6259913Z 15:02:16.625 | AfterProcessingInitializeOnLoad (16ms) +2026-03-27T14:02:16.6267273Z 15:02:16.626 | EditorAssembliesLoaded (0ms) +2026-03-27T14:02:16.6274789Z 15:02:16.626 | ExecutionOrderSort2 (0ms) +2026-03-27T14:02:16.6282905Z 15:02:16.627 | AwakeInstancesAfterBackupRestoration (18ms) +2026-03-27T14:02:16.6289514Z 15:02:16.628 | Start importing Assets/Plugins/Sentry/XSX/sentry.pdb using Guid(0946fd223c6c4fb7862f22b894670fd0) (DefaultImporter) -> (artifact id: 'aa8f3ec008cf2e537f28003be4fb7fe2') in 0.0327317 seconds +2026-03-27T14:02:16.6294187Z 15:02:16.629 | Refreshing native plugins compatible for Editor in 5.84 ms, found 1 plugins. +2026-03-27T14:02:16.6299259Z 15:02:16.629 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:02:16.6305148Z 15:02:16.630 | Asset Pipeline Refresh (id=494dfc0b6016457419303ec58acbb8a2): Total: 3.190 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport) +2026-03-27T14:02:16.6310206Z 15:02:16.630 | Summary: +2026-03-27T14:02:16.6315679Z 15:02:16.631 | Imports: total=2 (actual=2, local cache=0, cache server=0) +2026-03-27T14:02:16.6320820Z 15:02:16.631 | Asset DB Process Time: managed=3 ms, native=1196 ms +2026-03-27T14:02:16.6325920Z 15:02:16.632 | Asset DB Callback time: managed=67 ms, native=50 ms +2026-03-27T14:02:16.6332245Z 15:02:16.632 | Scripting: domain reloads=1, domain reload time=869 ms, compile time=979 ms, other=23 ms +2026-03-27T14:02:16.6337237Z 15:02:16.633 | Project Asset Count: scripts=223, non-scripts=151 +2026-03-27T14:02:16.6344577Z 15:02:16.633 | Asset File Changes: new=3, changed=3, moved=0, deleted=0 +2026-03-27T14:02:16.6350021Z 15:02:16.634 | Scan Filter Count: 0 +2026-03-27T14:02:16.6356514Z 15:02:16.635 | InvokeCustomDependenciesCallbacks: 0.001ms +2026-03-27T14:02:16.6362281Z 15:02:16.635 | InvokePackagesCallback: 46.238ms +2026-03-27T14:02:16.6368053Z 15:02:16.636 | ApplyChangesToAssetFolders: 1.086ms +2026-03-27T14:02:16.6373729Z 15:02:16.636 | Scan: 103.749ms +2026-03-27T14:02:16.6381016Z 15:02:16.637 | OnSourceAssetsModified: 0.834ms +2026-03-27T14:02:16.6386311Z 15:02:16.638 | CategorizeAssetsWithTransientArtifact: 16.410ms +2026-03-27T14:02:16.6400915Z 15:02:16.638 | ProcessAssetsWithTransientArtifactChanges: 19.513ms +2026-03-27T14:02:16.6407205Z 15:02:16.640 | CategorizeAssets: 3.255ms +2026-03-27T14:02:16.6412449Z 15:02:16.640 | ImportOutOfDateAssets: 916.280ms (-124.702ms without children) +2026-03-27T14:02:16.6418057Z 15:02:16.641 | ImportManagerImport: 61.031ms (5.179ms without children) +2026-03-27T14:02:16.6424506Z 15:02:16.641 | ImportInProcess: 55.822ms +2026-03-27T14:02:16.6429239Z 15:02:16.642 | UpdateCategorizedAssets: 0.030ms +2026-03-27T14:02:16.6434264Z 15:02:16.643 | CompileScripts: 978.911ms +2026-03-27T14:02:16.6439496Z 15:02:16.643 | ReloadNativeAssets: 0.000ms +2026-03-27T14:02:16.6444478Z 15:02:16.644 | UnloadImportedAssets: 0.610ms +2026-03-27T14:02:16.6450584Z 15:02:16.644 | ReloadImportedAssets: 0.000ms +2026-03-27T14:02:16.6455684Z 15:02:16.645 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.070ms +2026-03-27T14:02:16.6461104Z 15:02:16.645 | InitializingProgressBar: 0.005ms +2026-03-27T14:02:16.6466926Z 15:02:16.646 | PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms +2026-03-27T14:02:16.6472284Z 15:02:16.646 | OnDemandSchedulerStart: 0.354ms +2026-03-27T14:02:16.6480087Z 15:02:16.647 | PostProcessAllAssets: 70.321ms +2026-03-27T14:02:16.6485121Z 15:02:16.648 | Hotreload: 6.975ms +2026-03-27T14:02:16.6493865Z 15:02:16.648 | GatherAllCurrentPrimaryArtifactRevisions: 0.003ms +2026-03-27T14:02:16.6499916Z 15:02:16.649 | UnloadStreamsBegin: 1.836ms +2026-03-27T14:02:16.6506458Z 15:02:16.650 | PersistCurrentRevisions: 0.203ms +2026-03-27T14:02:16.6512072Z 15:02:16.650 | UnloadStreamsEnd: 0.001ms +2026-03-27T14:02:16.6517840Z 15:02:16.651 | GenerateScriptTypeHashes: 1.074ms +2026-03-27T14:02:16.6523557Z 15:02:16.651 | Untracked: 2003.051ms +2026-03-27T14:02:16.6530519Z 15:02:16.652 | +2026-03-27T14:02:16.6537857Z 15:02:16.653 | Application.AssetDatabase Initial Refresh End +2026-03-27T14:02:16.6543329Z 15:02:16.653 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +2026-03-27T14:02:17.0564819Z 15:02:17.055 | Scanning for USB devices : 7.713ms +2026-03-27T14:02:17.0572020Z 15:02:17.056 | Initializing Unity extensions: +2026-03-27T14:02:17.0579884Z 15:02:17.057 | [MODES] ModeService[none].Initialize +2026-03-27T14:02:17.0589981Z 15:02:17.058 | [MODES] ModeService[none].LoadModes +2026-03-27T14:02:17.0598308Z 15:02:17.059 | [MODES] Loading mode Default (0) for mode-current-id-IntegrationTest6000.3.8f1 +2026-03-27T14:02:20.3117727Z 15:02:20.309 | Unloading 3 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:02:20.3129862Z 15:02:20.312 | Unloading 478 unused Assets / (1.1 MB). Loaded Objects now: 1053. +2026-03-27T14:02:20.3141053Z 15:02:20.313 | Memory consumption went from 96.7 MB to 95.6 MB. +2026-03-27T14:02:20.3156014Z 15:02:20.314 | Total: 7.273300 ms (FindLiveObjects: 0.100400 ms CreateObjectMapping: 0.032800 ms MarkObjects: 6.310200 ms DeleteObjects: 0.828900 ms) +2026-03-27T14:02:20.3169382Z 15:02:20.316 | +2026-03-27T14:02:20.3187930Z 15:02:20.317 | Builder: Building Xbox Series X|S IL2CPP Player +2026-03-27T14:02:20.3202613Z 15:02:20.319 | Builder: Xbox Build Profile (BuildTarget 42) set to Master +2026-03-27T14:02:20.3214000Z 15:02:20.320 | Builder: Xbox Build Profile (BuildTarget 43) set to Master +2026-03-27T14:02:20.3229550Z 15:02:20.322 | Builder: Starting to build +2026-03-27T14:02:20.3254613Z 15:02:20.323 | Builder: Parsing command line arguments +2026-03-27T14:02:20.3268766Z 15:02:20.326 | Builder: Validating command line arguments +2026-03-27T14:02:20.3282683Z 15:02:20.327 | Builder: Starting build. Output will be 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test'. +2026-03-27T14:02:20.3294243Z 15:02:20.328 | Builder: Setting IL2CPP generation to OptimizeSpeed +2026-03-27T14:02:20.3306280Z 15:02:20.329 | Builder: Configuring code stripping level +2026-03-27T14:02:20.3317914Z 15:02:20.331 | Builder: Updating BuildPlayerOptions +2026-03-27T14:02:20.3325392Z 15:02:20.332 | Builder: Disabling optimizations to reduce build time +2026-03-27T14:02:20.3332597Z 15:02:20.332 | Builder: Checking for Test scene +2026-03-27T14:02:20.3338658Z 15:02:20.333 | Builder: Adding Test.unity to scenes +2026-03-27T14:02:20.3351125Z 15:02:20.334 | Builder: Starting build +2026-03-27T14:02:20.7513498Z 15:02:20.747 | Sentry: IntegrationOptionsConfig::Configure() called +2026-03-27T14:02:20.7523451Z 15:02:20.751 | Sentry: IntegrationOptionsConfig::Configure() finished +2026-03-27T14:02:20.7571055Z 15:02:20.755 | Sentry: (Debug) Logging enabled with 'UnityLogger' min level: Debug +2026-03-27T14:02:20.7590064Z 15:02:20.758 | Sentry: (Debug) Xbox Series X|S native support: checking for required file: +2026-03-27T14:02:20.7647272Z 15:02:20.762 | - Assets/Plugins/Sentry/XSX/sentry.dll +2026-03-27T14:02:20.7659283Z 15:02:20.765 | Sentry: (Info) Xbox Series X|S native library found at 'Assets/Plugins/Sentry/XSX/sentry.dll'. +2026-03-27T14:02:20.7666026Z 15:02:20.766 | Running Window/Nintendo Switch/SwitchMaxQueuedFramesUpgrader as a preprocess buid step... +2026-03-27T14:02:20.7675414Z 15:02:20.766 | This will run on every Player build until one of the following conditions is satisfied: +2026-03-27T14:02:20.7693173Z 15:02:20.768 | - All C# files containing occurrences of QualitySettings.maxQueuedFrames have been marked by adding #define UNITY_SWITCH_FIXED_MAX_QUEUED_FRAMES. +2026-03-27T14:02:20.7719674Z 15:02:20.770 | - UNITY_SWITCH_FIXED_MAX_QUEUED_FRAMES has been added to Player Settings -> Nintendo Switch -> Scripting Define Symbols. +2026-03-27T14:02:20.7728895Z 15:02:20.772 | - QualitySettings.maxQueuedFrames is not referenced in the project. +2026-03-27T14:02:20.7736835Z 15:02:20.773 | SwitchMaxQueuedFramesUpgrader found 0 warnings. +2026-03-27T14:02:20.7745549Z 15:02:20.773 | No warning found related to QualitySettings.maxQueuedFrames, UNITY_SWITCH_FIXED_MAX_QUEUED_FRAMES was added to Player Settings -> Nintendo Switch -> Scripting Define Symbol in order to disable this preprocess build step. +2026-03-27T14:02:20.7752378Z 15:02:20.774 | Sentry: IntegrationOptionsConfig::Configure() called +2026-03-27T14:02:20.8009593Z 15:02:20.775 | Sentry: IntegrationOptionsConfig::Configure() finished +2026-03-27T14:02:20.8025162Z 15:02:20.801 | Sentry: (Debug) Logging enabled with 'UnityLogger' min level: Debug +2026-03-27T14:02:20.8134482Z 15:02:20.808 | Sentry: (Info) IL2CPP build detected. Handling additional IL2CPP arguments. +2026-03-27T14:02:20.8171134Z 15:02:20.816 | Sentry: (Debug) IL2CPP line number support enabled - Adding additional IL2CPP arguments. +2026-03-27T14:02:20.8186148Z 15:02:20.817 | Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) (LibraryAssetImporter) -> (artifact id: '333c95692dac0aa14eb35f7fe8531261') in 0.0078907 seconds +2026-03-27T14:02:20.8192575Z 15:02:20.818 | Start importing ProjectSettings/AudioManager.asset using Guid(00000000000000006000000000000000) (LibraryAssetImporter) -> (artifact id: 'ff75e50a639c62471f82f47b504f2f0b') in 0.006907 seconds +2026-03-27T14:02:21.2297641Z 15:02:21.228 | Refreshing native plugins compatible for Editor in 6.76 ms, found 1 plugins. +2026-03-27T14:02:21.2304198Z 15:02:21.229 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:02:21.2310047Z 15:02:21.230 | Asset Pipeline Refresh (id=6becb3382a39a974eb9a5ac2b0a86e16): Total: 0.164 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) +2026-03-27T14:02:21.2316925Z 15:02:21.231 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aESkipCompile.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssembliesAndTypeDB +2026-03-27T14:02:21.2365352Z 15:02:21.232 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:21.2374884Z 15:02:21.237 | ExitCode: 4 Duration: 0s99ms +2026-03-27T14:02:21.2381084Z 15:02:21.237 | [ ] Require frontend run. Library/Bee/1900b0aESkipCompile.dag couldn't be loaded +2026-03-27T14:02:21.2389696Z 15:02:21.238 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aESkipCompile.dag.json" "Library/Bee/1900b0aESkipCompile-inputdata.json" "Library\Bee\buildprogram0.traceevents" +2026-03-27T14:02:21.2393757Z 15:02:21.238 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:21.6548759Z 15:02:21.653 | ExitCode: 0 Duration: 0s349ms +2026-03-27T14:02:21.6588862Z 15:02:21.655 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aESkipCompile.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aESkipCompile.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssembliesAndTypeDB +2026-03-27T14:02:21.6603350Z 15:02:21.659 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:22.4806898Z 15:02:22.478 | ExitCode: 0 Duration: 0s736ms +2026-03-27T14:02:22.4857392Z 15:02:22.481 | Finished compiling graph: 4 nodes, 5 flattened edges (5 ToBuild, 0 ToUse), maximum node priority 3 +2026-03-27T14:02:22.4899648Z 15:02:22.486 | [2/3 0s] BuildPlayerDataGenerator Library/BuildPlayerData/Editor/TypeDb-All.json +2026-03-27T14:02:22.4908104Z 15:02:22.490 | *** Tundra build success (0.66 seconds), 1 items updated, 3 evaluated +2026-03-27T14:02:22.4921635Z 15:02:22.491 | Asset Pipeline Refresh (id=225e416a026a8874faf8f22950b449ec): Total: 0.007 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) +2026-03-27T14:02:22.4939105Z 15:02:22.493 | [ScriptCompilation] Requested script compilation because: Recompiling scripts for player build. +2026-03-27T14:02:22.4978514Z 15:02:22.496 | BuildPlayer: start building target 42 +2026-03-27T14:02:22.9140603Z 15:02:22.913 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/4200b0aP.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssembliesAndTypeDB +2026-03-27T14:02:22.9148131Z 15:02:22.914 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:22.9155890Z 15:02:22.914 | ExitCode: 4 Duration: 0s170ms +2026-03-27T14:02:22.9164307Z 15:02:22.915 | [ ] Require frontend run. Library/Bee/4200b0aP.dag couldn't be loaded +2026-03-27T14:02:22.9178452Z 15:02:22.917 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/4200b0aP.dag.json" "Library/Bee/4200b0aP-inputdata.json" "Library\Bee\buildprogram0.traceevents" +2026-03-27T14:02:22.9252072Z 15:02:22.917 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:23.3313587Z 15:02:23.330 | ExitCode: 0 Duration: 0s407ms +2026-03-27T14:02:23.3320600Z 15:02:23.331 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/4200b0aP.dag" --continue-on-failure --dagfilejson="Library\Bee\4200b0aP.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssembliesAndTypeDB +2026-03-27T14:02:23.3324935Z 15:02:23.332 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:02:28.9934725Z 15:02:28.815 | Total cache size 270699052 +2026-03-27T14:02:29.1418926Z 15:02:29.050 | Total cache size after purge 268346332, took 00:00:06.6692549 +2026-03-27T14:02:36.5633363Z 15:02:36.554 | ExitCode: 0 Duration: 13s +2026-03-27T14:02:36.5643759Z 15:02:36.563 | Finished compiling graph: 124 nodes, 740 flattened edges (688 ToBuild, 12 ToUse), maximum node priority 59 +2026-03-27T14:02:36.5663622Z 15:02:36.565 | [ 1/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputForUIModule.dll_58CE7D0461A9EA2C.mvfrm +2026-03-27T14:02:36.5676391Z 15:02:36.566 | [ 2/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_A91612AA407FEDD1.mvfrm +2026-03-27T14:02:36.5700790Z 15:02:36.568 | [ 3/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_D6D7D446301098AF.mvfrm +2026-03-27T14:02:36.5801908Z 15:02:36.570 | [ 4/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HierarchyCoreModule.dll_B082CDAC4A066EDF.mvfrm +2026-03-27T14:02:36.5817559Z 15:02:36.580 | [ 5/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_73B474D5B1C01B62.mvfrm +2026-03-27T14:02:36.5824334Z 15:02:36.582 | [ 6/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_9661C2DEFABD0C3C.mvfrm +2026-03-27T14:02:36.5831827Z 15:02:36.582 | [ 7/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GraphicsStateCollectionSerializerModule.dll_63BEC32264C57351.mvfrm +2026-03-27T14:02:36.5837834Z 15:02:36.583 | [ 8/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_734A4EDFE5B65E5B.mvfrm +2026-03-27T14:02:36.5884952Z 15:02:36.584 | [ 9/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_09D4ABBCA5EE0FF6.mvfrm +2026-03-27T14:02:36.5894756Z 15:02:36.588 | [ 10/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_561C22EB01894D70.mvfrm +2026-03-27T14:02:36.5980395Z 15:02:36.591 | [ 11/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_04834A53338D3ED5.mvfrm +2026-03-27T14:02:36.6060834Z 15:02:36.599 | [ 12/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_2696E8FDF9E29E54.mvfrm +2026-03-27T14:02:36.6162146Z 15:02:36.609 | [ 13/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_F966B85817BC02B8.mvfrm +2026-03-27T14:02:36.6241732Z 15:02:36.617 | [ 14/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_3B54D56EEB8E8781.mvfrm +2026-03-27T14:02:36.6415434Z 15:02:36.625 | [ 15/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_F37B805DF548814A.mvfrm +2026-03-27T14:02:36.6470183Z 15:02:36.644 | [ 16/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_5A65271D26C5D95D.mvfrm +2026-03-27T14:02:36.6551242Z 15:02:36.649 | [ 17/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.rsp2 +2026-03-27T14:02:36.6567541Z 15:02:36.655 | [ 18/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_A23D3269C5AB6665.mvfrm +2026-03-27T14:02:36.6592887Z 15:02:36.657 | [ 19/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.UnityAdditionalFile.txt +2026-03-27T14:02:36.6612658Z 15:02:36.659 | [ 20/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_27CD54A4654CD24F.mvfrm +2026-03-27T14:02:36.6633093Z 15:02:36.661 | [ 21/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AdaptivePerformanceModule.dll_4162EF288B9A7615.mvfrm +2026-03-27T14:02:36.6716257Z 15:02:36.665 | [ 22/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_DB0E05D24A077641.mvfrm +2026-03-27T14:02:36.6774899Z 15:02:36.675 | [ 23/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_2BCED8D03B485C7F.mvfrm +2026-03-27T14:02:36.6913533Z 15:02:36.678 | [ 24/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_5C128D89D1434EC3.mvfrm +2026-03-27T14:02:36.7087306Z 15:02:36.699 | [ 25/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_396830D1DB5915E9.mvfrm +2026-03-27T14:02:36.7144535Z 15:02:36.710 | [ 26/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_6FB59380A8F28121.mvfrm +2026-03-27T14:02:36.7169497Z 15:02:36.715 | [ 27/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_605E59D9AE20A326.mvfrm +2026-03-27T14:02:36.7195845Z 15:02:36.718 | [ 28/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_0D001809647BEA33.mvfrm +2026-03-27T14:02:36.7214101Z 15:02:36.719 | [ 29/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_A5BD3B7385A81756.mvfrm +2026-03-27T14:02:36.7244581Z 15:02:36.722 | [ 30/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VectorGraphicsModule.dll_FA624FE7969F7B27.mvfrm +2026-03-27T14:02:36.7284326Z 15:02:36.725 | [ 31/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_7C4643D2ADB70E70.mvfrm +2026-03-27T14:02:36.7320905Z 15:02:36.731 | [ 32/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_4BE1470BB80717C4.mvfrm +2026-03-27T14:02:36.7340298Z 15:02:36.733 | [ 33/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F1592E59E9A25AC0.mvfrm +2026-03-27T14:02:36.7355419Z 15:02:36.734 | [ 34/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_A800CA8905B1A6BB.mvfrm +2026-03-27T14:02:36.7365465Z 15:02:36.735 | [ 35/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_E391620194BF1A0F.mvfrm +2026-03-27T14:02:36.7374143Z 15:02:36.736 | [ 36/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_5AE9F5D5D560C43C.mvfrm +2026-03-27T14:02:36.7383504Z 15:02:36.737 | [ 37/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_3A54F747DDED0D2B.mvfrm +2026-03-27T14:02:36.7395676Z 15:02:36.739 | [ 38/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConsentModule.dll_3F5E1EBF8014A3BE.mvfrm +2026-03-27T14:02:36.7405892Z 15:02:36.739 | [ 39/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_06D3CB67283CEDD5.mvfrm +2026-03-27T14:02:36.7416083Z 15:02:36.741 | [ 40/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_B629818778B532F4.mvfrm +2026-03-27T14:02:36.7472803Z 15:02:36.742 | [ 41/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_D681A3FFA64E7BED.mvfrm +2026-03-27T14:02:36.7501721Z 15:02:36.748 | [ 42/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_AE345D44F46D06F4.mvfrm +2026-03-27T14:02:36.7519801Z 15:02:36.751 | [ 43/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_8C217F9A8E0E80C6.mvfrm +2026-03-27T14:02:36.7537296Z 15:02:36.752 | [ 44/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_61FF825CBCAEC669.mvfrm +2026-03-27T14:02:36.7556202Z 15:02:36.754 | [ 45/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_DCA6D99DA63822CA.mvfrm +2026-03-27T14:02:36.7571030Z 15:02:36.756 | [ 46/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_DBC8AFF6F9FC295D.mvfrm +2026-03-27T14:02:36.7602124Z 15:02:36.758 | [ 47/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_DEAEB28C6A5EE536.mvfrm +2026-03-27T14:02:36.7623099Z 15:02:36.761 | [ 48/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_6395C2861DDBFF6B.mvfrm +2026-03-27T14:02:36.7631076Z 15:02:36.762 | [ 49/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_C3031ADBA4F1E560.mvfrm +2026-03-27T14:02:36.7640914Z 15:02:36.763 | [ 50/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_B90D563E0027879B.mvfrm +2026-03-27T14:02:36.7661553Z 15:02:36.764 | [ 51/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_A9F5FBDCF140CAFD.mvfrm +2026-03-27T14:02:36.7695583Z 15:02:36.769 | [ 52/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_73C65477DC681167.mvfrm +2026-03-27T14:02:36.7717698Z 15:02:36.770 | [ 53/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_DC6241F4B4D4898D.mvfrm +2026-03-27T14:02:36.7738489Z 15:02:36.772 | [ 54/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_3F48957B22F8E2EA.mvfrm +2026-03-27T14:02:36.7833423Z 15:02:36.775 | [ 55/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_1A7301B471EB078C.mvfrm +2026-03-27T14:02:36.7862381Z 15:02:36.784 | [ 56/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ShaderRuntimeModule.dll_C93FDA002B5C805E.mvfrm +2026-03-27T14:02:36.7884932Z 15:02:36.787 | [ 57/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_B3676792EF00A2D5.mvfrm +2026-03-27T14:02:36.7894646Z 15:02:36.788 | [ 58/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RenderAs2DModule.dll_C48F24AF53CEFBE3.mvfrm +2026-03-27T14:02:36.7919615Z 15:02:36.789 | [ 59/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_A46D97892CF902AD.mvfrm +2026-03-27T14:02:36.7928536Z 15:02:36.792 | [ 60/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_835762297474B1AC.mvfrm +2026-03-27T14:02:36.7934396Z 15:02:36.792 | [ 61/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_A8BC9F6CCF339C72.mvfrm +2026-03-27T14:02:36.7939639Z 15:02:36.793 | [ 62/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_747344950649C9E4.mvfrm +2026-03-27T14:02:36.7947538Z 15:02:36.794 | [ 63/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsBackendPhysXModule.dll_1B76D6B56E56B8D4.mvfrm +2026-03-27T14:02:36.7956366Z 15:02:36.795 | [ 64/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_631B19B3049904DE.mvfrm +2026-03-27T14:02:36.7970928Z 15:02:36.795 | [ 65/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_02CDC5B20AEE06AF.mvfrm +2026-03-27T14:02:36.7979462Z 15:02:36.797 | [ 66/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MultiplayerModule.dll_DA0D43A9DF8D66D5.mvfrm +2026-03-27T14:02:36.7986963Z 15:02:36.798 | [ 67/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.dll.mvfrm.rsp +2026-03-27T14:02:36.7993351Z 15:02:36.798 | [ 68/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.rsp2 +2026-03-27T14:02:36.8070407Z 15:02:36.800 | [ 69/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.rsp +2026-03-27T14:02:36.8142862Z 15:02:36.812 | [ 70/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.UnityAdditionalFile.txt +2026-03-27T14:02:36.8205412Z 15:02:36.815 | [ 71/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.dll.mvfrm.rsp +2026-03-27T14:02:36.8229162Z 15:02:36.822 | [ 72/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.rsp2 +2026-03-27T14:02:36.8249103Z 15:02:36.823 | [ 73/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.rsp +2026-03-27T14:02:36.8257503Z 15:02:36.825 | [ 74/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.rsp2 +2026-03-27T14:02:36.8265038Z 15:02:36.826 | [ 75/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.UnityAdditionalFile.txt +2026-03-27T14:02:36.8274306Z 15:02:36.826 | [ 76/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.UnityAdditionalFile.txt +2026-03-27T14:02:36.8295400Z 15:02:36.827 | [ 77/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.dll.mvfrm.rsp +2026-03-27T14:02:36.8317145Z 15:02:36.830 | [ 78/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.dll.mvfrm.rsp +2026-03-27T14:02:36.8337640Z 15:02:36.832 | [ 79/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.rsp +2026-03-27T14:02:36.8344010Z 15:02:36.834 | [ 80/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.rsp +2026-03-27T14:02:36.8353129Z 15:02:36.834 | [ 81/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.rsp2 +2026-03-27T14:02:36.8362234Z 15:02:36.835 | [ 82/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.UnityAdditionalFile.txt +2026-03-27T14:02:36.8427825Z 15:02:36.836 | [ 83/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.dll.mvfrm.rsp +2026-03-27T14:02:36.8469827Z 15:02:36.843 | [ 84/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.rsp2 +2026-03-27T14:02:36.8488863Z 15:02:36.847 | [ 85/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.rsp +2026-03-27T14:02:36.8522368Z 15:02:36.850 | [ 86/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.UnityAdditionalFile.txt +2026-03-27T14:02:36.8565321Z 15:02:36.852 | [ 87/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.dll.mvfrm.rsp +2026-03-27T14:02:36.8582507Z 15:02:36.857 | [ 88/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.rsp +2026-03-27T14:02:36.8591140Z 15:02:36.858 | [ 89/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_A1CA9D1F61C6AC25.mvfrm +2026-03-27T14:02:36.8613519Z 15:02:36.859 | [ 90/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_3E4242ECC185D282.mvfrm +2026-03-27T14:02:36.8630978Z 15:02:36.862 | [ 91/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_997FBA0DDA947673.mvfrm +2026-03-27T14:02:36.8644300Z 15:02:36.863 | [ 92/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_EBAA423BBEB78F4E.mvfrm +2026-03-27T14:02:36.8660615Z 15:02:36.865 | [ 93/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.dll.mvfrm +2026-03-27T14:02:36.8669372Z 15:02:36.866 | [ 94/123 1s] Csc Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.dll (+2 others) +2026-03-27T14:02:36.8682188Z 15:02:36.867 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:02:36.8725054Z 15:02:36.868 | [ 95/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/UnityEngine.UI.pdb +2026-03-27T14:02:36.8753903Z 15:02:36.873 | [ 96/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/UnityEngine.UI.dll +2026-03-27T14:02:36.8769429Z 15:02:36.875 | [ 97/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_F38624DBC6150D7F.mvfrm +2026-03-27T14:02:36.8796608Z 15:02:36.878 | [ 98/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.dll.mvfrm +2026-03-27T14:02:36.8814272Z 15:02:36.880 | [ 99/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.dll.mvfrm +2026-03-27T14:02:36.8843877Z 15:02:36.881 | [100/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.dll.mvfrm +2026-03-27T14:02:36.8882708Z 15:02:36.885 | [101/123 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) +2026-03-27T14:02:36.8914690Z 15:02:36.889 | [102/123 0s] Csc Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.dll (+2 others) +2026-03-27T14:02:36.8923148Z 15:02:36.891 | [103/123 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.dll (+2 others) +2026-03-27T14:02:36.8932258Z 15:02:36.892 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:02:36.8946830Z 15:02:36.893 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:02:36.8960821Z 15:02:36.894 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:02:36.8974638Z 15:02:36.896 | [104/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/io.sentry.unity.runtime.pdb +2026-03-27T14:02:36.9047443Z 15:02:36.898 | [105/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/io.sentry.unity.runtime.dll +2026-03-27T14:02:36.9056989Z 15:02:36.905 | [106/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.004.pdb +2026-03-27T14:02:36.9069947Z 15:02:36.906 | [107/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.Multiplayer.Center.Common.pdb +2026-03-27T14:02:36.9087869Z 15:02:36.907 | [108/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.004.dll +2026-03-27T14:02:36.9104879Z 15:02:36.909 | [109/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.Multiplayer.Center.Common.dll +2026-03-27T14:02:36.9124987Z 15:02:36.910 | [110/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.InternalAPIEngineBridge.004.ref.dll_4650A87F6EC3B9B7.mvfrm +2026-03-27T14:02:36.9165347Z 15:02:36.913 | [111/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Multiplayer.Center.Common.ref.dll_9B93ACF4F442A639.mvfrm +2026-03-27T14:02:36.9251392Z 15:02:36.916 | [112/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.dll.mvfrm +2026-03-27T14:02:36.9331931Z 15:02:36.926 | [113/123 1s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.dll (+2 others) +2026-03-27T14:02:36.9404028Z 15:02:36.937 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.dll (+2 others) [CacheWrite 00000000000000000000000000000005] +2026-03-27T14:02:36.9413500Z 15:02:36.941 | [114/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.TextMeshPro.pdb +2026-03-27T14:02:36.9426380Z 15:02:36.941 | [115/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.TextMeshPro.dll +2026-03-27T14:02:36.9450618Z 15:02:36.943 | [116/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_792D1FDDCD965D6C.mvfrm +2026-03-27T14:02:36.9469439Z 15:02:36.945 | [117/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.dll.mvfrm +2026-03-27T14:02:36.9482002Z 15:02:36.947 | [118/123 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.dll (+2 others) +2026-03-27T14:02:36.9504207Z 15:02:36.949 | [119/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.dll +2026-03-27T14:02:36.9514538Z 15:02:36.950 | [120/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.pdb +2026-03-27T14:02:36.9524017Z 15:02:36.951 | [122/123 0s] BuildPlayerDataGenerator Library/BuildPlayerData/Player/RuntimeInitializeOnLoads.json (+1 other) +2026-03-27T14:02:36.9535124Z 15:02:36.953 | *** Tundra build success (13.16 seconds), 121 items updated, 123 evaluated +2026-03-27T14:02:36.9543106Z 15:02:36.953 | Start importing Packages/io.sentry.unity/Textures/Logo.png using Guid(d0c73c7edf6ed43b698bca840264c8a4) (TextureImporter) -> (artifact id: '71d585f04b8d9133d58c7abe7baca250') in 0.0158471 seconds +2026-03-27T14:02:36.9572161Z 15:02:36.954 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignRight_Light.psd using Guid(e05ace3bd15740cda0bad60d89092a5b) (TextureImporter) -> (artifact id: 'ddfbc51f93b7fc1ddf336dd389df1d34') in 0.0062855 seconds +2026-03-27T14:02:36.9579172Z 15:02:36.957 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageInstalled@2x.png using Guid(318df756abab5463e9aa361360784865) (TextureImporter) -> (artifact id: 'd23e46c24a6316b5c22d6fc112c4bd03') in 0.007322 seconds +2026-03-27T14:02:36.9602911Z 15:02:36.958 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMiddle.psd using Guid(41b96614b2e6494ba995ddcd252d11ae) (TextureImporter) -> (artifact id: '58767caa070046e6b0abc99e9d670ea3') in 0.0066789 seconds +2026-03-27T14:02:36.9624337Z 15:02:36.961 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenter.psd using Guid(81ed8c76d2bc4a4c95d092c98af4e58f) (TextureImporter) -> (artifact id: 'aa69e8c7ce2c58191ffa34464f1f981a') in 0.0073315 seconds +2026-03-27T14:02:36.9672897Z 15:02:36.964 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignLeft_Light.psd using Guid(12736c98af174f91827a26b66d2b01b9) (TextureImporter) -> (artifact id: '7bd2ed10a5b544f2ef1c93395803bb78') in 0.0085572 seconds +2026-03-27T14:02:36.9750187Z 15:02:36.969 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Loading.png using Guid(424a8de5def3b46dcb08edd00ad1c7bd) (TextureImporter) -> (artifact id: '9ab0b6e0b69716ffe72a24824f85b18f') in 0.0092967 seconds +2026-03-27T14:02:36.9794471Z 15:02:36.975 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Package.png using Guid(525a6cca8dd9a4d28875a8fe824710d9) (TextureImporter) -> (artifact id: '8a2df3d0bbfa4e51dfb795efc7f87404') in 0.0103061 seconds +2026-03-27T14:02:36.9839458Z 15:02:36.982 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignJustified.psd using Guid(92027f7f8cfc4feaa477da0dc38d3d46) (TextureImporter) -> (artifact id: 'cd86364e1c2fba7721e884688d2725fb') in 0.0056639 seconds +2026-03-27T14:02:36.9853731Z 15:02:36.984 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignLeft.psd using Guid(9288066c33474b94b6ee5465f4df1cc0) (TextureImporter) -> (artifact id: '01762a5647f0d81e682f34c8f123b2f5') in 0.0055481 seconds +2026-03-27T14:02:36.9865313Z 15:02:36.985 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CloudCode@2x.png using Guid(a23c0dd570fd44b57a03a8880002fcca) (TextureImporter) -> (artifact id: '64efb5b4e15853372052fc4c36c457b8') in 0.0072647 seconds +2026-03-27T14:02:36.9889010Z 15:02:36.987 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/ClientHosted.png using Guid(b2ce704e56cc84fb3b347499263c6244) (TextureImporter) -> (artifact id: '74438893554a85aa758650d3a98243d5') in 0.0067706 seconds +2026-03-27T14:02:36.9900155Z 15:02:36.989 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMidLine.psd using Guid(c2f7f6a88b4c4f20a53deb72f3d9144c) (TextureImporter) -> (artifact id: 'a9df641fc5ee6742b082301165b8a9e9') in 0.0060402 seconds +2026-03-27T14:02:36.9915632Z 15:02:36.990 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DistributedAuthority@2x.png using Guid(0354877031b64465ea7e5cafea1a2653) (TextureImporter) -> (artifact id: 'a3d3318ded2aa6ae7905198f84486361') in 0.0076677 seconds +2026-03-27T14:02:36.9932116Z 15:02:36.992 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NGO@2x.png using Guid(83b28bcaaf34b4fd580114fb05d9f160) (TextureImporter) -> (artifact id: 'e806547cc700328c8b4cbb4977fbd7dd') in 0.0076754 seconds +2026-03-27T14:02:37.0014202Z 15:02:36.994 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/SectionHeader_Light.psd using Guid(e3b0f810fdea84e40ab4ba20f256f7e8) (TextureImporter) -> (artifact id: 'e86c4ffdf88416de3331f204138e3727') in 0.0058398 seconds +2026-03-27T14:02:37.0024611Z 15:02:37.001 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageInstalled@2x.png using Guid(0423146d9f51c4563a0f2a8200b6cd38) (TextureImporter) -> (artifact id: '952d9d0253a43f8c1ae0af2f9d1a6517') in 0.0064565 seconds +2026-03-27T14:02:37.0081384Z 15:02:37.006 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignRight.psd using Guid(342a0f8aca7f4f0691338912faec0494) (TextureImporter) -> (artifact id: 'a812b5aa7dfa9728d8cd32333d00f869') in 0.0056102 seconds +2026-03-27T14:02:37.0094040Z 15:02:37.008 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignFlush_Light.psd using Guid(64b9fad609434c489c32b1cdf2004a1c) (TextureImporter) -> (artifact id: '2a4fa51c2e638d3a145da522c5342d99') in 0.0054042 seconds +2026-03-27T14:02:37.0109685Z 15:02:37.010 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Questionnaire.png using Guid(741761e72e6f24446bd8ba03ea3d0261) (TextureImporter) -> (artifact id: 'ccd2b951d4b06ae346af8f495ff6e8d3') in 0.0122081 seconds +2026-03-27T14:02:37.0123687Z 15:02:37.011 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/EmptyViewIcon.png using Guid(84e4bbd00035e4671bf14e0380a89001) (TextureImporter) -> (artifact id: '15b8a10f9f5c3efd1e1781fcc68fe9ae') in 0.0118067 seconds +2026-03-27T14:02:37.0151196Z 15:02:37.013 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageManager@2x.png using Guid(9431e8221045c4af189b2fa7174b9e9f) (TextureImporter) -> (artifact id: 'f49805ba1559bb142aedcc8b1aa11b4f') in 0.0088245 seconds +2026-03-27T14:02:37.0159415Z 15:02:37.015 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenterGeo_Light.psd using Guid(35ff0937876540d3bd4b6a941df62a92) (TextureImporter) -> (artifact id: '7eaa830202474940807399c4ab6e148a') in 0.0060877 seconds +2026-03-27T14:02:37.0187989Z 15:02:37.016 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NoNetcode@2x.png using Guid(b58a826ca804e4c67bab4283ad5a6102) (TextureImporter) -> (artifact id: 'bee2b4b3ad8e047538ad76772a45f5f8') in 0.0068871 seconds +2026-03-27T14:02:37.0204108Z 15:02:37.019 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMiddle_Light.psd using Guid(066619c9c9c84f89acb1b48c11a7efe2) (TextureImporter) -> (artifact id: 'bbbf431048a19f9dd8ebe7656e89045e') in 0.0057998 seconds +2026-03-27T14:02:37.0248516Z 15:02:37.021 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageInstalled.png using Guid(4616b2fa4acd1429e931835b80966c2a) (TextureImporter) -> (artifact id: '7b506ef958c004753f0c935d3b8d41fd') in 0.0065112 seconds +2026-03-27T14:02:37.0326527Z 15:02:37.026 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageManager@2x.png using Guid(a6fd0c627f5aa48fa81512221e70a11e) (TextureImporter) -> (artifact id: '49c9690ffda9f754eb1afd498a083599') in 0.0060431 seconds +2026-03-27T14:02:37.0348997Z 15:02:37.033 | Start importing Packages/io.sentry.unity/Textures/Megaphone.png using Guid(c68f744cc289b4ab1823c5e1159527ec) (TextureImporter) -> (artifact id: '25b1e7abd587243ed1a5cb9b12fc35bd') in 0.0059278 seconds +2026-03-27T14:02:37.0377828Z 15:02:37.035 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DistributedAuthority.png using Guid(d63245ece6d8f476c8c7ca24da9937f6) (TextureImporter) -> (artifact id: 'c01625e3275e023647b242447a1679e1') in 0.0074247 seconds +2026-03-27T14:02:37.0394840Z 15:02:37.038 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageManager.png using Guid(679f9999c6f8f497e806a2d5d0511879) (TextureImporter) -> (artifact id: '253cc19a1e7474bbe71adcfceeafc25e') in 0.0067904 seconds +2026-03-27T14:02:37.0410395Z 15:02:37.039 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageInstalled.png using Guid(77be953cf28de42a4ad8532539fef3f5) (TextureImporter) -> (artifact id: '14258019ae339570f3ea88ce5d5230a6') in 0.0065994 seconds +2026-03-27T14:02:37.0442088Z 15:02:37.041 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Dropdown Icon.psd using Guid(a7ec9e7ad8b847b7ae4510af83c5d868) (TextureImporter) -> (artifact id: 'fd4926603719fccce4722b6d4d90bc91') in 0.0074234 seconds +2026-03-27T14:02:37.0466776Z 15:02:37.045 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/ClientHosted@2x.png using Guid(c7a38e6eccbfc49778cb8b77f594a971) (TextureImporter) -> (artifact id: 'c141e00a9794988efaeb74a7c953fa75') in 0.0077966 seconds +2026-03-27T14:02:37.0477331Z 15:02:37.047 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenterGeo.psd using Guid(c76700ea0062413d9f69409b4e9e151b) (TextureImporter) -> (artifact id: '13bd0691fdf9dcb6f46371908466fc57') in 0.0061838 seconds +2026-03-27T14:02:37.0485633Z 15:02:37.048 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CustomNetcode@2x.png using Guid(d7711b0cc806d430b8a95f1e33ec3649) (TextureImporter) -> (artifact id: '18c16f5c9c055e2684094b77f4a67091') in 0.008195 seconds +2026-03-27T14:02:37.0494832Z 15:02:37.048 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBaseLine_Light.psd using Guid(18775b51e3bd42299fd30bd036ea982f) (TextureImporter) -> (artifact id: '61c21e2628cf621b9aaef075481aeece') in 0.006961 seconds +2026-03-27T14:02:37.0514564Z 15:02:37.049 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DedicatedServer@2x.png using Guid(38b78df4a34c94fa6a52c90239606ff1) (TextureImporter) -> (artifact id: '9d0283c90dca5df7e54b38703a66fecb') in 0.0097985 seconds +2026-03-27T14:02:37.0565749Z 15:02:37.053 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignTop.psd using Guid(48d034c499ee4697af9dd6e327110249) (TextureImporter) -> (artifact id: '98d4ae8c24b00fc2c5cd588553de8633') in 0.0064368 seconds +2026-03-27T14:02:37.0679639Z 15:02:37.058 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBottom_Light.psd using Guid(585b70cb75dd43efbfead809c30a1731) (TextureImporter) -> (artifact id: '29fcb8ff65619fc8857d4338a6d3b83a') in 0.0068199 seconds +2026-03-27T14:02:37.0722407Z 15:02:37.070 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Check.png using Guid(29395f0639574c1fbc8b729aa257fb84) (TextureImporter) -> (artifact id: '5364321af75cf853db1715b5da087d2e') in 0.0060922 seconds +2026-03-27T14:02:37.0804338Z 15:02:37.074 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCapLine_Light.psd using Guid(49679f302ac6408697f6b9314a38985c) (TextureImporter) -> (artifact id: '7abf577325374a6fd8cc076f65b00de8') in 0.0063597 seconds +2026-03-27T14:02:37.0864533Z 15:02:37.081 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignFlush.psd using Guid(691475c57a824010be0c6f474caeb7e1) (TextureImporter) -> (artifact id: '941c61e8d42bc40b8118cc5da2b267ff') in 0.0059924 seconds +2026-03-27T14:02:37.0986531Z 15:02:37.088 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NGO.png using Guid(99da7b3894f364efdb5fa1443952a55d) (TextureImporter) -> (artifact id: 'a822ecddf1a08f614df0972f36bde461') in 0.0076617 seconds +2026-03-27T14:02:37.1084186Z 15:02:37.102 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/N4E.png using Guid(e9669051ff70449b5923861e0e0b8838) (TextureImporter) -> (artifact id: 'c9ae61f635f30fff249c6005fe36e453') in 0.0067711 seconds +2026-03-27T14:02:37.1146940Z 15:02:37.112 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/EmptyViewIcon@2x.png using Guid(2adffcc506285402aa795dee6f3166d0) (TextureImporter) -> (artifact id: '08bd35c9a8ee3bcbd80069bef2b4b3f3') in 0.0246434 seconds +2026-03-27T14:02:37.1161640Z 15:02:37.115 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenter_Light.psd using Guid(6ace62d30f494c948b71d5594afce11d) (TextureImporter) -> (artifact id: 'ef355fab0f252a523289ab28c74d152a') in 0.0058124 seconds +2026-03-27T14:02:37.1175856Z 15:02:37.117 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBottom.psd using Guid(ca51b19024094d1b87f3e07edb0a75fb) (TextureImporter) -> (artifact id: '0632cb7217e4a501f75a37aa3a668758') in 0.0055629 seconds +2026-03-27T14:02:37.1226557Z 15:02:37.120 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Loading.png using Guid(dab91f148d99946e7b3c3a87ecf4b973) (TextureImporter) -> (artifact id: 'a8ca8559ae8b5b52cb663fa83f28e3a6') in 0.0079896 seconds +2026-03-27T14:02:37.1243609Z 15:02:37.123 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignJustified_Light.psd using Guid(fa6bd40a216346b783a4cce741d277a5) (TextureImporter) -> (artifact id: '6758de326f04ce5c435f0612c74b3475') in 0.0063185 seconds +2026-03-27T14:02:37.1273695Z 15:02:37.126 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageManager.png using Guid(1b4c88814ec6241eb8e327515399c006) (TextureImporter) -> (artifact id: 'a4b79d1fa81b2ca074942f7f4cda52f8') in 0.0061849 seconds +2026-03-27T14:02:37.1294666Z 15:02:37.128 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBaseLine.psd using Guid(8bc445bb79654bf496c92d0407840a92) (TextureImporter) -> (artifact id: '7c6860ab3204dc8d2acba899bfe09a92') in 0.0066274 seconds +2026-03-27T14:02:37.1308465Z 15:02:37.130 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMidline_Light.psd using Guid(bb42b2d967d6427983c901a4ffc8ecd9) (TextureImporter) -> (artifact id: 'f1a8ebe8143dcdcfc4b84ac95b6a0517') in 0.0076236 seconds +2026-03-27T14:02:37.1343707Z 15:02:37.131 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/SectionHeader_Dark.psd using Guid(fb5730e24283d0c489e5c7d0bee023d9) (TextureImporter) -> (artifact id: 'bbb9cc530d6f3cfa07b4cc03d26b1cdf') in 0.0070442 seconds +2026-03-27T14:02:37.1355121Z 15:02:37.134 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/N4E@2x.png using Guid(2cb589d4e01184d928bb698f06e77561) (TextureImporter) -> (artifact id: 'c5e319ef60177d1969dd4c5c80aa1b48') in 0.0079049 seconds +2026-03-27T14:02:37.1362487Z 15:02:37.135 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CustomNetcode.png using Guid(dce12af736e0a4a1ba35d6424f897dc9) (TextureImporter) -> (artifact id: 'b466ab8b55ce3c841b4632e2539f4022') in 0.0071928 seconds +2026-03-27T14:02:37.1388857Z 15:02:37.136 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Sprite Asset Icon.psd using Guid(ec7c645d93308c04d8840982af12101e) (TextureImporter) -> (artifact id: '65aa86a4b5deca378b7f5167ee4958b5') in 0.0083191 seconds +2026-03-27T14:02:37.1445710Z 15:02:37.141 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCapLine.psd using Guid(0d9a36012a224080966c7b55896aa0f9) (TextureImporter) -> (artifact id: '9e826a23a26355d38995b095b964f44d') in 0.0062699 seconds +2026-03-27T14:02:37.1513535Z 15:02:37.147 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NoNetcode.png using Guid(1daed49eec0f94f7ebb36dfef6159884) (TextureImporter) -> (artifact id: '2be54765fb31efd4fb21bbfa3f82bdd8') in 0.006977 seconds +2026-03-27T14:02:37.1539255Z 15:02:37.152 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Package.png using Guid(9d9689eab72c8480c90679f4dcf18820) (TextureImporter) -> (artifact id: '39172785cf7b4048236e2d04bd2fbc74') in 0.0067371 seconds +2026-03-27T14:02:37.1547698Z 15:02:37.154 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CloudCode.png using Guid(ad1d29f4654194951a3c8bf507914d05) (TextureImporter) -> (artifact id: '1387b4758ec4b8b4590762d052044344') in 0.0078504 seconds +2026-03-27T14:02:37.1562333Z 15:02:37.155 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Questionnaire.png using Guid(dd70cd654275d47db807e918055e004f) (TextureImporter) -> (artifact id: 'f2d1caa176bb8bbbd192439a2b2172c2') in 0.0065404 seconds +2026-03-27T14:02:37.1572174Z 15:02:37.156 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignTop_Light.psd using Guid(ed041e68439749a69d0efa0e3d896c2e) (TextureImporter) -> (artifact id: '8b603a07da54e1072bd04293154e7ba5') in 0.0080526 seconds +2026-03-27T14:02:37.1586025Z 15:02:37.158 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Input Field Icon.psd using Guid(3ee40aa79cd242a5b53b0b0ca4f13f0f) (TextureImporter) -> (artifact id: '1cf353fa14dd01a80ff680d060d2792a') in 0.0067051 seconds +2026-03-27T14:02:37.1595605Z 15:02:37.159 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Font Asset Icon.psd using Guid(ee148e281f3c41c5b4ff5f8a5afe5a6c) (TextureImporter) -> (artifact id: 'ce3191934df1d5f2ec47e9b86ad004bc') in 0.0076279 seconds +2026-03-27T14:02:37.1612790Z 15:02:37.159 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Text Component Icon.psd using Guid(2fd6421f253b4ef1a19526541f9ffc0c) (TextureImporter) +2026-03-27T14:02:37.5759965Z 15:02:37.573 | -> (artifact id: 'fbaa9c05a2d9b973c9b84f7ad1d0d9dd') in 0.0064178 seconds +2026-03-27T14:02:37.5778854Z 15:02:37.576 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DedicatedServer.png using Guid(3fe892784421e47f5aa40c2784a6cb3e) (TextureImporter) -> (artifact id: '1889836135d12e7c1f74c81bfba10c4f') in 0.0075786 seconds +2026-03-27T14:02:37.5800693Z 15:02:37.578 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Check.png using Guid(4f78a544322c742b89e63fb68557b1d2) (TextureImporter) -> (artifact id: 'f64131f71a9cef4946dc973621f0a4be') in 0.0060541 seconds +2026-03-27T14:02:37.5811191Z 15:02:37.580 | Refreshing native plugins compatible for Editor in 8.36 ms, found 1 plugins. +2026-03-27T14:02:37.5823752Z 15:02:37.582 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:02:37.5834880Z 15:02:37.582 | Asset Pipeline Refresh (id=5dd063d12b47c6d4fa6b7816c66812fe): Total: 0.599 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) +2026-03-27T14:02:37.5842221Z 15:02:37.583 | Summary: +2026-03-27T14:02:37.5859219Z 15:02:37.584 | Imports: total=67 (actual=67, local cache=0, cache server=0) +2026-03-27T14:02:37.5865811Z 15:02:37.586 | Asset DB Process Time: managed=9 ms, native=572 ms +2026-03-27T14:02:37.5873822Z 15:02:37.586 | Asset DB Callback time: managed=6 ms, native=11 ms +2026-03-27T14:02:37.5892698Z 15:02:37.588 | Scripting: domain reloads=0, domain reload time=0 ms, compile time=0 ms, other=0 ms +2026-03-27T14:02:37.5902180Z 15:02:37.589 | Project Asset Count: scripts=223, non-scripts=151 +2026-03-27T14:02:37.5907901Z 15:02:37.590 | Asset File Changes: new=0, changed=0, moved=0, deleted=0 +2026-03-27T14:02:37.5913897Z 15:02:37.591 | Scan Filter Count: 0 +2026-03-27T14:02:37.5921455Z 15:02:37.591 | InvokeCustomDependenciesCallbacks: 0.001ms +2026-03-27T14:02:37.5928005Z 15:02:37.592 | InvokePackagesCallback: 0.001ms +2026-03-27T14:02:37.5934760Z 15:02:37.593 | ApplyChangesToAssetFolders: 0.149ms +2026-03-27T14:02:37.5941272Z 15:02:37.593 | Scan: 0.000ms +2026-03-27T14:02:37.5946880Z 15:02:37.594 | OnSourceAssetsModified: 0.001ms +2026-03-27T14:02:37.5979078Z 15:02:37.594 | CategorizeAssetsWithTransientArtifact: 0.002ms +2026-03-27T14:02:37.5986772Z 15:02:37.598 | ProcessAssetsWithTransientArtifactChanges: 0.014ms +2026-03-27T14:02:37.5992250Z 15:02:37.598 | CategorizeAssets: 1.229ms +2026-03-27T14:02:37.5998126Z 15:02:37.599 | ImportOutOfDateAssets: 548.613ms (2.538ms without children) +2026-03-27T14:02:37.6004156Z 15:02:37.599 | ImportManagerImport: 545.789ms (2.449ms without children) +2026-03-27T14:02:37.6011143Z 15:02:37.600 | ImportInProcess: 543.031ms +2026-03-27T14:02:37.6018292Z 15:02:37.601 | UpdateCategorizedAssets: 0.309ms +2026-03-27T14:02:37.6022497Z 15:02:37.601 | ReloadNativeAssets: 0.005ms +2026-03-27T14:02:37.6027979Z 15:02:37.602 | UnloadImportedAssets: 0.005ms +2026-03-27T14:02:37.6042960Z 15:02:37.602 | ReloadImportedAssets: 0.005ms +2026-03-27T14:02:37.6053820Z 15:02:37.605 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.042ms +2026-03-27T14:02:37.6058878Z 15:02:37.605 | InitializingProgressBar: 0.005ms +2026-03-27T14:02:37.6065388Z 15:02:37.606 | PostProcessAllAssetNotificationsAddChangedAssets: 0.003ms +2026-03-27T14:02:37.6072679Z 15:02:37.606 | OnDemandSchedulerStart: 0.221ms +2026-03-27T14:02:37.6080284Z 15:02:37.607 | PostProcessAllAssets: 9.069ms +2026-03-27T14:02:37.6089057Z 15:02:37.608 | Hotreload: 8.619ms +2026-03-27T14:02:37.6094591Z 15:02:37.609 | GatherAllCurrentPrimaryArtifactRevisions: 0.021ms +2026-03-27T14:02:37.6103474Z 15:02:37.609 | UnloadStreamsBegin: 0.162ms +2026-03-27T14:02:37.6110563Z 15:02:37.610 | PersistCurrentRevisions: 0.521ms +2026-03-27T14:02:37.6117471Z 15:02:37.611 | UnloadStreamsEnd: 0.001ms +2026-03-27T14:02:37.6122504Z 15:02:37.611 | Untracked: 30.994ms +2026-03-27T14:02:37.6130413Z 15:02:37.612 | +2026-03-27T14:02:37.6137576Z 15:02:37.613 | Asset Pipeline Refresh (id=83db5f0270133704083f4ff3252888de): Total: 0.010 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) +2026-03-27T14:02:37.6143791Z 15:02:37.614 | Total cache size 269715860 +2026-03-27T14:02:37.6149184Z 15:02:37.614 | Total cache size after purge 268013192, took 00:00:01.0169213 +2026-03-27T14:02:38.0218977Z 15:02:38.021 | Opening scene 'Assets/Scenes/Test.unity' +2026-03-27T14:02:38.0225924Z 15:02:38.022 | Unloading 1 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:02:38.0231268Z 15:02:38.022 | LightingSettings: switching bake backend from 2 to 1. +2026-03-27T14:02:38.0237326Z 15:02:38.023 | Loaded scene 'Assets/Scenes/Test.unity' +2026-03-27T14:02:38.0243407Z 15:02:38.023 | Deserialize: 7.170 ms +2026-03-27T14:02:38.0251056Z 15:02:38.024 | Integration: 31.884 ms +2026-03-27T14:02:38.0257712Z 15:02:38.025 | Integration of assets: 0.003 ms +2026-03-27T14:02:38.0264226Z 15:02:38.025 | Thread Wait Time: 0.018 ms +2026-03-27T14:02:38.0270232Z 15:02:38.026 | Total Operation Time: 39.075 ms +2026-03-27T14:02:38.0276865Z 15:02:38.027 | Unloading 70 unused Assets / (0.8 MB). Loaded Objects now: 1141. +2026-03-27T14:02:38.0282909Z 15:02:38.027 | Memory consumption went from 111.3 MB to 110.5 MB. +2026-03-27T14:02:38.0289482Z 15:02:38.028 | Total: 7.769600 ms (FindLiveObjects: 0.072800 ms CreateObjectMapping: 0.017600 ms MarkObjects: 7.239300 ms DeleteObjects: 0.438800 ms) +2026-03-27T14:02:38.0295698Z 15:02:38.029 | +2026-03-27T14:02:38.4449237Z 15:02:38.443 | Created GICache directory at C:/Users/github-runner/AppData/LocalLow/Unity/Caches/GiCache. Took: 0.077s, timestamps: [33.264 - 33.342] +2026-03-27T14:02:40.4842609Z 15:02:40.483 | +2026-03-27T14:02:40.4849607Z 15:02:40.484 | +2026-03-27T14:02:40.4856620Z 15:02:40.485 | Mono dependencies included in the build +2026-03-27T14:02:40.4862973Z 15:02:40.485 | Dependency assembly - I18N.MidEast.dll +2026-03-27T14:02:40.4870277Z 15:02:40.486 | Dependency assembly - System.Net.dll +2026-03-27T14:02:40.4877910Z 15:02:40.487 | Dependency assembly - System.Runtime.Serialization.Xml.dll +2026-03-27T14:02:40.4885098Z 15:02:40.487 | Dependency assembly - System.Security.Cryptography.Encoding.dll +2026-03-27T14:02:40.4892941Z 15:02:40.488 | Dependency assembly - System.Net.Primitives.dll +2026-03-27T14:02:40.4898513Z 15:02:40.489 | Dependency assembly - System.Threading.Overlapped.dll +2026-03-27T14:02:40.4905572Z 15:02:40.489 | Dependency assembly - System.Runtime.Serialization.Primitives.dll +2026-03-27T14:02:40.4913425Z 15:02:40.490 | Dependency assembly - Unity.InternalAPIEngineBridge.004.dll +2026-03-27T14:02:40.4920823Z 15:02:40.491 | Dependency assembly - System.Threading.ThreadPool.dll +2026-03-27T14:02:40.4929246Z 15:02:40.492 | Dependency assembly - System.Collections.NonGeneric.dll +2026-03-27T14:02:40.4935531Z 15:02:40.493 | Dependency assembly - System.ComponentModel.DataAnnotations.dll +2026-03-27T14:02:40.4944133Z 15:02:40.493 | Dependency assembly - Mono.Data.Tds.dll +2026-03-27T14:02:40.4950178Z 15:02:40.494 | Dependency assembly - System.IdentityModel.Selectors.dll +2026-03-27T14:02:40.4956773Z 15:02:40.495 | Dependency assembly - System.Runtime.Handles.dll +2026-03-27T14:02:40.4962485Z 15:02:40.495 | Dependency assembly - System.Collections.Specialized.dll +2026-03-27T14:02:40.4968239Z 15:02:40.496 | Dependency assembly - System.Drawing.dll +2026-03-27T14:02:40.4974324Z 15:02:40.497 | Dependency assembly - System.DirectoryServices.dll +2026-03-27T14:02:40.4980373Z 15:02:40.497 | Dependency assembly - System.Net.WebSockets.dll +2026-03-27T14:02:40.4992360Z 15:02:40.498 | Dependency assembly - System.Security.Cryptography.Hashing.Algorithms.dll +2026-03-27T14:02:40.4998507Z 15:02:40.499 | Dependency assembly - System.Messaging.dll +2026-03-27T14:02:40.5004677Z 15:02:40.500 | Dependency assembly - System.Json.dll +2026-03-27T14:02:40.5013684Z 15:02:40.500 | Dependency assembly - System.Web.RegularExpressions.dll +2026-03-27T14:02:40.5023061Z 15:02:40.501 | Dependency assembly - System.Security.Cryptography.Encryption.ECDsa.dll +2026-03-27T14:02:40.5028982Z 15:02:40.502 | Dependency assembly - Sentry.System.Numerics.Vectors.dll +2026-03-27T14:02:40.5033855Z 15:02:40.502 | Dependency assembly - System.Drawing.Primitives.dll +2026-03-27T14:02:40.5040697Z 15:02:40.503 | Dependency assembly - System.Reflection.Emit.Lightweight.dll +2026-03-27T14:02:40.5048258Z 15:02:40.504 | Dependency assembly - Mono.Data.Sqlite.dll +2026-03-27T14:02:40.5055085Z 15:02:40.504 | Dependency assembly - Sentry.System.Runtime.CompilerServices.Unsafe.dll +2026-03-27T14:02:40.5062546Z 15:02:40.505 | Dependency assembly - System.Xml.XPath.XmlDocument.dll +2026-03-27T14:02:40.5069920Z 15:02:40.506 | Dependency assembly - System.ServiceModel.Internals.dll +2026-03-27T14:02:40.5075428Z 15:02:40.507 | Dependency assembly - System.ServiceModel.Discovery.dll +2026-03-27T14:02:40.5081470Z 15:02:40.507 | Dependency assembly - System.Data.Services.dll +2026-03-27T14:02:40.5087218Z 15:02:40.508 | Dependency assembly - System.dll +2026-03-27T14:02:40.5093682Z 15:02:40.508 | Dependency assembly - Assembly-CSharp.dll +2026-03-27T14:02:40.5098586Z 15:02:40.509 | Dependency assembly - I18N.dll +2026-03-27T14:02:40.5104264Z 15:02:40.510 | Dependency assembly - System.ServiceModel.NetTcp.dll +2026-03-27T14:02:40.5109442Z 15:02:40.510 | Dependency assembly - mscorlib.dll +2026-03-27T14:02:40.5116000Z 15:02:40.511 | Dependency assembly - System.Console.dll +2026-03-27T14:02:40.5123575Z 15:02:40.511 | Dependency assembly - Mono.Security.dll +2026-03-27T14:02:40.5130216Z 15:02:40.512 | Dependency assembly - System.Net.NameResolution.dll +2026-03-27T14:02:40.5136492Z 15:02:40.513 | Dependency assembly - System.Resources.ResourceManager.dll +2026-03-27T14:02:40.5143231Z 15:02:40.513 | Dependency assembly - System.Security.Cryptography.Cng.dll +2026-03-27T14:02:40.5157823Z 15:02:40.515 | Dependency assembly - System.Threading.AccessControl.dll +2026-03-27T14:02:40.5164988Z 15:02:40.516 | Dependency assembly - System.Runtime.Numerics.dll +2026-03-27T14:02:40.5171851Z 15:02:40.516 | Dependency assembly - System.Runtime.CompilerServices.VisualC.dll +2026-03-27T14:02:40.5179097Z 15:02:40.517 | Dependency assembly - System.Security.Cryptography.Algorithms.dll +2026-03-27T14:02:40.5187162Z 15:02:40.518 | Dependency assembly - System.Web.Extensions.dll +2026-03-27T14:02:40.5196680Z 15:02:40.518 | Dependency assembly - System.Diagnostics.Debug.dll +2026-03-27T14:02:40.5204227Z 15:02:40.520 | Dependency assembly - System.Diagnostics.FileVersionInfo.dll +2026-03-27T14:02:40.5211304Z 15:02:40.520 | Dependency assembly - Sentry.System.Memory.dll +2026-03-27T14:02:40.5218821Z 15:02:40.521 | Dependency assembly - System.Xml.XPath.dll +2026-03-27T14:02:40.5226216Z 15:02:40.522 | Dependency assembly - System.Net.Ping.dll +2026-03-27T14:02:40.5232889Z 15:02:40.522 | Dependency assembly - System.Text.Encoding.CodePages.dll +2026-03-27T14:02:40.5238637Z 15:02:40.523 | Dependency assembly - System.Security.Cryptography.Encryption.dll +2026-03-27T14:02:40.5245281Z 15:02:40.524 | Dependency assembly - System.Windows.Forms.DataVisualization.dll +2026-03-27T14:02:40.5252195Z 15:02:40.524 | Dependency assembly - System.Globalization.Extensions.dll +2026-03-27T14:02:40.5261492Z 15:02:40.525 | Dependency assembly - System.Security.Cryptography.Primitives.dll +2026-03-27T14:02:40.5267629Z 15:02:40.526 | Dependency assembly - Sentry.System.Text.Encodings.Web.dll +2026-03-27T14:02:40.5272737Z 15:02:40.526 | Dependency assembly - System.Reflection.Primitives.dll +2026-03-27T14:02:40.5278056Z 15:02:40.527 | Dependency assembly - System.ServiceModel.dll +2026-03-27T14:02:40.5283275Z 15:02:40.527 | Dependency assembly - System.Security.SecureString.dll +2026-03-27T14:02:40.5288833Z 15:02:40.528 | Dependency assembly - System.Threading.Tasks.Extensions.dll +2026-03-27T14:02:40.5295331Z 15:02:40.529 | Dependency assembly - System.IO.FileSystem.AccessControl.dll +2026-03-27T14:02:40.5301541Z 15:02:40.529 | Dependency assembly - System.ObjectModel.dll +2026-03-27T14:02:40.5318921Z 15:02:40.530 | Dependency assembly - I18N.Other.dll +2026-03-27T14:02:40.5326618Z 15:02:40.532 | Dependency assembly - System.AppContext.dll +2026-03-27T14:02:40.5333699Z 15:02:40.533 | Dependency assembly - System.Data.OracleClient.dll +2026-03-27T14:02:40.5342698Z 15:02:40.533 | Dependency assembly - System.Diagnostics.Tracing.dll +2026-03-27T14:02:40.5349792Z 15:02:40.534 | Dependency assembly - System.ServiceModel.Routing.dll +2026-03-27T14:02:40.5355362Z 15:02:40.535 | Dependency assembly - System.Windows.Forms.dll +2026-03-27T14:02:40.5361540Z 15:02:40.535 | Dependency assembly - Microsoft.Win32.Registry.dll +2026-03-27T14:02:40.5368623Z 15:02:40.536 | Dependency assembly - System.Runtime.Remoting.dll +2026-03-27T14:02:40.5375141Z 15:02:40.537 | Dependency assembly - System.Security.Cryptography.Csp.dll +2026-03-27T14:02:40.5381823Z 15:02:40.537 | Dependency assembly - System.Windows.dll +2026-03-27T14:02:40.5387705Z 15:02:40.538 | Dependency assembly - System.Security.Cryptography.DeriveBytes.dll +2026-03-27T14:02:40.5394184Z 15:02:40.538 | Dependency assembly - System.Net.Cache.dll +2026-03-27T14:02:40.5403115Z 15:02:40.539 | Dependency assembly - System.Threading.Tasks.dll +2026-03-27T14:02:40.5409617Z 15:02:40.540 | Dependency assembly - System.Security.Cryptography.Hashing.dll +2026-03-27T14:02:40.5415822Z 15:02:40.541 | Dependency assembly - System.Net.Sockets.dll +2026-03-27T14:02:40.5421511Z 15:02:40.541 | Dependency assembly - System.Text.Encoding.Extensions.dll +2026-03-27T14:02:40.5429543Z 15:02:40.542 | Dependency assembly - System.Drawing.Design.dll +2026-03-27T14:02:40.5437544Z 15:02:40.543 | Dependency assembly - System.Security.Claims.dll +2026-03-27T14:02:40.5443027Z 15:02:40.543 | Dependency assembly - System.Linq.Queryable.dll +2026-03-27T14:02:40.5448791Z 15:02:40.544 | Dependency assembly - System.Xml.ReaderWriter.dll +2026-03-27T14:02:40.5457043Z 15:02:40.545 | Dependency assembly - System.DirectoryServices.Protocols.dll +2026-03-27T14:02:40.5468485Z 15:02:40.545 | Dependency assembly - System.ServiceProcess.dll +2026-03-27T14:02:40.5480799Z 15:02:40.547 | Dependency assembly - System.Linq.dll +2026-03-27T14:02:40.5487996Z 15:02:40.548 | Dependency assembly - System.Reflection.TypeExtensions.dll +2026-03-27T14:02:40.5494126Z 15:02:40.548 | Dependency assembly - Sentry.System.Text.Json.dll +2026-03-27T14:02:40.5502044Z 15:02:40.549 | Dependency assembly - System.Runtime.InteropServices.WindowsRuntime.dll +2026-03-27T14:02:40.5506966Z 15:02:40.550 | Dependency assembly - System.Xaml.dll +2026-03-27T14:02:40.5514469Z 15:02:40.551 | Dependency assembly - System.Resources.ReaderWriter.dll +2026-03-27T14:02:40.5519543Z 15:02:40.551 | Dependency assembly - System.Numerics.dll +2026-03-27T14:02:40.5525102Z 15:02:40.552 | Dependency assembly - System.Data.Services.Client.dll +2026-03-27T14:02:40.5532052Z 15:02:40.552 | Dependency assembly - Accessibility.dll +2026-03-27T14:02:40.5537905Z 15:02:40.553 | Dependency assembly - I18N.Rare.dll +2026-03-27T14:02:40.5544495Z 15:02:40.554 | Dependency assembly - System.EnterpriseServices.dll +2026-03-27T14:02:40.5552193Z 15:02:40.554 | Dependency assembly - System.ComponentModel.Annotations.dll +2026-03-27T14:02:40.5558609Z 15:02:40.555 | Dependency assembly - System.Net.AuthenticationManager.dll +2026-03-27T14:02:40.5563748Z 15:02:40.555 | Dependency assembly - System.Runtime.InteropServices.RuntimeInformation.dll +2026-03-27T14:02:40.5569203Z 15:02:40.556 | Dependency assembly - System.Reflection.Context.dll +2026-03-27T14:02:40.5574892Z 15:02:40.557 | Dependency assembly - System.Resources.Writer.dll +2026-03-27T14:02:40.5580014Z 15:02:40.557 | Dependency assembly - System.Reflection.Extensions.dll +2026-03-27T14:02:40.5585123Z 15:02:40.558 | Dependency assembly - System.Security.Cryptography.Pkcs.dll +2026-03-27T14:02:40.5590188Z 15:02:40.558 | Dependency assembly - System.Resources.Reader.dll +2026-03-27T14:02:40.5595895Z 15:02:40.559 | Dependency assembly - System.Configuration.dll +2026-03-27T14:02:40.5601839Z 15:02:40.559 | Dependency assembly - System.ServiceModel.Web.dll +2026-03-27T14:02:40.5607853Z 15:02:40.560 | Dependency assembly - I18N.CJK.dll +2026-03-27T14:02:40.5618731Z 15:02:40.561 | Dependency assembly - System.ServiceProcess.ServiceController.dll +2026-03-27T14:02:40.5628364Z 15:02:40.562 | Dependency assembly - System.Collections.dll +2026-03-27T14:02:40.5633899Z 15:02:40.562 | Dependency assembly - System.Security.Cryptography.OpenSsl.dll +2026-03-27T14:02:40.5639121Z 15:02:40.563 | Dependency assembly - System.IO.FileSystem.Primitives.dll +2026-03-27T14:02:40.5644821Z 15:02:40.564 | Dependency assembly - System.Net.NetworkInformation.dll +2026-03-27T14:02:40.5650863Z 15:02:40.564 | Dependency assembly - Unity.Multiplayer.Center.Common.dll +2026-03-27T14:02:40.5656249Z 15:02:40.565 | Dependency assembly - System.Security.Principal.dll +2026-03-27T14:02:40.5661779Z 15:02:40.565 | Dependency assembly - System.IO.FileSystem.dll +2026-03-27T14:02:40.5667612Z 15:02:40.566 | Dependency assembly - System.Runtime.InteropServices.dll +2026-03-27T14:02:40.5672968Z 15:02:40.566 | Dependency assembly - System.Net.WebHeaderCollection.dll +2026-03-27T14:02:40.5678829Z 15:02:40.567 | Dependency assembly - System.Runtime.Serialization.Formatters.Soap.dll +2026-03-27T14:02:40.5685819Z 15:02:40.568 | Dependency assembly - System.Security.Cryptography.ProtectedData.dll +2026-03-27T14:02:40.5691076Z 15:02:40.568 | Dependency assembly - System.Linq.Expressions.dll +2026-03-27T14:02:40.5696392Z 15:02:40.569 | Dependency assembly - System.Linq.Parallel.dll +2026-03-27T14:02:40.5701388Z 15:02:40.569 | Dependency assembly - System.Diagnostics.Tools.dll +2026-03-27T14:02:40.5706405Z 15:02:40.570 | Dependency assembly - System.Security.Principal.Windows.dll +2026-03-27T14:02:40.5711490Z 15:02:40.570 | Dependency assembly - System.Web.Services.dll +2026-03-27T14:02:40.5716669Z 15:02:40.571 | Dependency assembly - Microsoft.Win32.Registry.AccessControl.dll +2026-03-27T14:02:40.5722322Z 15:02:40.571 | Dependency assembly - System.Runtime.Serialization.Json.dll +2026-03-27T14:02:40.5730192Z 15:02:40.572 | Dependency assembly - System.Data.Linq.dll +2026-03-27T14:02:40.5735887Z 15:02:40.573 | Dependency assembly - System.ComponentModel.EventBasedAsync.dll +2026-03-27T14:02:40.5741333Z 15:02:40.573 | Dependency assembly - UnityEngine.UI.dll +2026-03-27T14:02:40.5746396Z 15:02:40.574 | Dependency assembly - System.Memory.dll +2026-03-27T14:02:40.5752366Z 15:02:40.574 | Dependency assembly - Sentry.System.Threading.Tasks.Extensions.dll +2026-03-27T14:02:40.5757985Z 15:02:40.575 | Dependency assembly - System.Web.dll +2026-03-27T14:02:40.5763202Z 15:02:40.575 | Dependency assembly - System.Security.Cryptography.Encryption.Aes.dll +2026-03-27T14:02:40.5772002Z 15:02:40.576 | Dependency assembly - System.ValueTuple.dll +2026-03-27T14:02:40.5777614Z 15:02:40.577 | Dependency assembly - System.Net.Http.dll +2026-03-27T14:02:40.5783953Z 15:02:40.577 | Dependency assembly - System.ComponentModel.Primitives.dll +2026-03-27T14:02:40.5790326Z 15:02:40.578 | Dependency assembly - System.Diagnostics.Process.dll +2026-03-27T14:02:40.5797582Z 15:02:40.579 | Dependency assembly - System.Reflection.dll +2026-03-27T14:02:40.5803871Z 15:02:40.579 | Dependency assembly - System.Net.HttpListener.dll +2026-03-27T14:02:40.5812158Z 15:02:40.580 | Dependency assembly - System.Text.Encoding.dll +2026-03-27T14:02:40.5818589Z 15:02:40.581 | Dependency assembly - System.Xml.dll +2026-03-27T14:02:40.5823910Z 15:02:40.582 | Dependency assembly - System.Data.SqlClient.dll +2026-03-27T14:02:40.5828774Z 15:02:40.582 | Dependency assembly - Sentry.Unity.dll +2026-03-27T14:02:40.5834616Z 15:02:40.583 | Dependency assembly - System.Web.Extensions.Design.dll +2026-03-27T14:02:40.5840076Z 15:02:40.583 | Dependency assembly - I18N.West.dll +2026-03-27T14:02:40.5845318Z 15:02:40.584 | Dependency assembly - System.IO.Pipes.dll +2026-03-27T14:02:40.5851495Z 15:02:40.584 | Dependency assembly - Sentry.System.Collections.Immutable.dll +2026-03-27T14:02:40.5856971Z 15:02:40.585 | Dependency assembly - System.Security.AccessControl.dll +2026-03-27T14:02:40.5862627Z 15:02:40.585 | Dependency assembly - System.Xml.Serialization.dll +2026-03-27T14:02:40.5873280Z 15:02:40.586 | Dependency assembly - Unity.TextMeshPro.dll +2026-03-27T14:02:40.5879197Z 15:02:40.587 | Dependency assembly - System.Runtime.Caching.dll +2026-03-27T14:02:40.5884312Z 15:02:40.588 | Dependency assembly - System.IO.FileSystem.Watcher.dll +2026-03-27T14:02:40.5889402Z 15:02:40.588 | Dependency assembly - System.Xml.Linq.dll +2026-03-27T14:02:40.5895113Z 15:02:40.589 | Dependency assembly - Sentry.Microsoft.Bcl.AsyncInterfaces.dll +2026-03-27T14:02:40.5900214Z 15:02:40.589 | Dependency assembly - System.IO.UnmanagedMemoryStream.dll +2026-03-27T14:02:40.5905720Z 15:02:40.590 | Dependency assembly - System.Xml.XmlSerializer.dll +2026-03-27T14:02:40.5911314Z 15:02:40.590 | Dependency assembly - System.Text.RegularExpressions.dll +2026-03-27T14:02:40.5916205Z 15:02:40.591 | Dependency assembly - System.Core.dll +2026-03-27T14:02:40.5921321Z 15:02:40.591 | Dependency assembly - System.IO.dll +2026-03-27T14:02:40.5931977Z 15:02:40.592 | Dependency assembly - System.Collections.Concurrent.dll +2026-03-27T14:02:40.5938036Z 15:02:40.593 | Dependency assembly - System.Security.Cryptography.Encryption.ECDiffieHellman.dll +2026-03-27T14:02:40.5943036Z 15:02:40.593 | Dependency assembly - System.Web.ApplicationServices.dll +2026-03-27T14:02:40.5948383Z 15:02:40.594 | Dependency assembly - System.Data.Entity.dll +2026-03-27T14:02:40.5952346Z 15:02:40.594 | Dependency assembly - System.Security.Cryptography.X509Certificates.dll +2026-03-27T14:02:40.5957656Z 15:02:40.595 | Dependency assembly - System.Diagnostics.TraceSource.dll +2026-03-27T14:02:40.5962699Z 15:02:40.595 | Dependency assembly - System.Diagnostics.TextWriterTraceListener.dll +2026-03-27T14:02:40.5970641Z 15:02:40.596 | Dependency assembly - System.Xml.Xsl.Primitives.dll +2026-03-27T14:02:40.5975414Z 15:02:40.597 | Dependency assembly - System.Runtime.Serialization.Formatters.dll +2026-03-27T14:02:40.5984258Z 15:02:40.597 | Dependency assembly - System.ServiceModel.Primitives.dll +2026-03-27T14:02:40.5990605Z 15:02:40.598 | Dependency assembly - System.Net.ServicePoint.dll +2026-03-27T14:02:40.5996438Z 15:02:40.599 | Dependency assembly - System.Reflection.Emit.dll +2026-03-27T14:02:40.6003764Z 15:02:40.599 | Dependency assembly - System.IdentityModel.dll +2026-03-27T14:02:40.6024083Z 15:02:40.600 | Dependency assembly - System.Diagnostics.Contracts.dll +2026-03-27T14:02:40.6038024Z 15:02:40.603 | Dependency assembly - System.Net.Security.dll +2026-03-27T14:02:40.6044190Z 15:02:40.604 | Dependency assembly - System.ComponentModel.Composition.dll +2026-03-27T14:02:40.6050283Z 15:02:40.604 | Dependency assembly - System.Xml.XPath.XDocument.dll +2026-03-27T14:02:40.6055832Z 15:02:40.605 | Dependency assembly - System.ComponentModel.TypeConverter.dll +2026-03-27T14:02:40.6062003Z 15:02:40.605 | Dependency assembly - System.Globalization.Calendars.dll +2026-03-27T14:02:40.6066351Z 15:02:40.606 | Dependency assembly - System.ServiceModel.Security.dll +2026-03-27T14:02:40.6071732Z 15:02:40.606 | Dependency assembly - System.Configuration.Install.dll +2026-03-27T14:02:40.6077046Z 15:02:40.607 | Dependency assembly - System.Threading.Timer.dll +2026-03-27T14:02:40.6089742Z 15:02:40.608 | Dependency assembly - System.Security.Cryptography.RSA.dll +2026-03-27T14:02:40.6095034Z 15:02:40.609 | Dependency assembly - System.Runtime.DurableInstancing.dll +2026-03-27T14:02:40.6100185Z 15:02:40.609 | Dependency assembly - System.Runtime.Extensions.dll +2026-03-27T14:02:40.6106299Z 15:02:40.610 | Dependency assembly - Sentry.System.Reflection.Metadata.dll +2026-03-27T14:02:40.6115027Z 15:02:40.611 | Dependency assembly - io.sentry.unity.runtime.dll +2026-03-27T14:02:40.6121108Z 15:02:40.611 | Dependency assembly - System.Reflection.Emit.ILGeneration.dll +2026-03-27T14:02:40.6126001Z 15:02:40.612 | Dependency assembly - Sentry.Unity.Native.dll +2026-03-27T14:02:40.6132370Z 15:02:40.612 | Dependency assembly - System.Runtime.Serialization.dll +2026-03-27T14:02:40.6137602Z 15:02:40.613 | Dependency assembly - System.Dynamic.Runtime.dll +2026-03-27T14:02:40.6143162Z 15:02:40.613 | Dependency assembly - System.Data.DataSetExtensions.dll +2026-03-27T14:02:40.6148332Z 15:02:40.614 | Dependency assembly - System.IO.Compression.dll +2026-03-27T14:02:40.6153437Z 15:02:40.614 | Dependency assembly - System.Management.dll +2026-03-27T14:02:40.6158570Z 15:02:40.615 | Dependency assembly - System.ComponentModel.dll +2026-03-27T14:02:40.6163786Z 15:02:40.616 | Dependency assembly - System.IO.Compression.ZipFile.dll +2026-03-27T14:02:40.6169014Z 15:02:40.616 | Dependency assembly - Sentry.System.Buffers.dll +2026-03-27T14:02:40.6174224Z 15:02:40.617 | Dependency assembly - System.Security.Cryptography.RandomNumberGenerator.dll +2026-03-27T14:02:40.6179238Z 15:02:40.617 | Dependency assembly - System.Globalization.dll +2026-03-27T14:02:40.6184518Z 15:02:40.618 | Dependency assembly - System.Xml.XmlDocument.dll +2026-03-27T14:02:40.6189799Z 15:02:40.618 | Dependency assembly - System.IO.MemoryMappedFiles.dll +2026-03-27T14:02:40.6195548Z 15:02:40.619 | Dependency assembly - System.Runtime.Loader.dll +2026-03-27T14:02:40.6200589Z 15:02:40.619 | Dependency assembly - System.Net.Http.WebRequest.dll +2026-03-27T14:02:40.6205641Z 15:02:40.620 | Dependency assembly - System.ServiceModel.Duplex.dll +2026-03-27T14:02:40.6211431Z 15:02:40.620 | Dependency assembly - System.Data.Common.dll +2026-03-27T14:02:40.6216331Z 15:02:40.621 | Dependency assembly - System.IO.IsolatedStorage.dll +2026-03-27T14:02:40.6221570Z 15:02:40.621 | Dependency assembly - System.Reflection.DispatchProxy.dll +2026-03-27T14:02:40.6226557Z 15:02:40.622 | Dependency assembly - System.Buffers.dll +2026-03-27T14:02:40.6231577Z 15:02:40.622 | Dependency assembly - netstandard.dll +2026-03-27T14:02:40.6237063Z 15:02:40.623 | Dependency assembly - System.Net.Utilities.dll +2026-03-27T14:02:40.6247821Z 15:02:40.623 | Dependency assembly - Microsoft.CSharp.dll +2026-03-27T14:02:40.6254021Z 15:02:40.624 | Dependency assembly - System.IO.FileSystem.DriveInfo.dll +2026-03-27T14:02:40.6259320Z 15:02:40.625 | Dependency assembly - System.Design.dll +2026-03-27T14:02:40.6264435Z 15:02:40.626 | Dependency assembly - System.Data.dll +2026-03-27T14:02:40.6273838Z 15:02:40.626 | Dependency assembly - System.Runtime.dll +2026-03-27T14:02:40.6279727Z 15:02:40.627 | Dependency assembly - System.Web.DynamicData.dll +2026-03-27T14:02:40.6285068Z 15:02:40.628 | Dependency assembly - System.Net.Mail.dll +2026-03-27T14:02:40.6290566Z 15:02:40.628 | Dependency assembly - System.Threading.Tasks.Parallel.dll +2026-03-27T14:02:40.6295644Z 15:02:40.629 | Dependency assembly - Sentry.dll +2026-03-27T14:02:40.6300737Z 15:02:40.629 | Dependency assembly - System.Net.Requests.dll +2026-03-27T14:02:40.6306979Z 15:02:40.630 | Dependency assembly - System.Diagnostics.StackTrace.dll +2026-03-27T14:02:40.6311124Z 15:02:40.630 | Dependency assembly - System.Threading.Thread.dll +2026-03-27T14:02:40.6316118Z 15:02:40.631 | Dependency assembly - Microsoft.Win32.Primitives.dll +2026-03-27T14:02:40.6321122Z 15:02:40.631 | Dependency assembly - System.ServiceModel.Http.dll +2026-03-27T14:02:40.6326556Z 15:02:40.632 | Dependency assembly - System.Threading.dll +2026-03-27T14:02:40.6332165Z 15:02:40.632 | Dependency assembly - System.Transactions.dll +2026-03-27T14:02:40.6337444Z 15:02:40.633 | Dependency assembly - System.Diagnostics.TraceEvent.dll +2026-03-27T14:02:40.6342466Z 15:02:40.633 | Dependency assembly - System.Numerics.Vectors.dll +2026-03-27T14:02:40.6347569Z 15:02:40.634 | Dependency assembly - System.Net.WebSockets.Client.dll +2026-03-27T14:02:40.6352577Z 15:02:40.634 | Dependency assembly - System.Xml.XDocument.dll +2026-03-27T14:02:40.6357994Z 15:02:40.635 | Dependency assembly - System.ServiceModel.Activation.dll +2026-03-27T14:02:40.6363333Z 15:02:40.635 | Dependency assembly - System.IO.Compression.FileSystem.dll +2026-03-27T14:02:40.6368340Z 15:02:40.636 | Dependency assembly - System.Security.dll +2026-03-27T14:02:40.6373206Z 15:02:40.636 | +2026-03-27T14:02:40.6379100Z 15:02:40.637 | Calling OnPostBuildPlayerScriptDLLs callbacks. For faster build speeds, consider not using this callback, as we don't need to copy assemblies to the staging area for the incremental player build otherwise. +2026-03-27T14:02:40.6383690Z 15:02:40.638 | Sentry: IntegrationOptionsConfig::Configure() called +2026-03-27T14:02:40.6388710Z 15:02:40.638 | Sentry: IntegrationOptionsConfig::Configure() finished +2026-03-27T14:02:40.6396327Z 15:02:40.639 | Sentry: (Debug) Logging enabled with 'UnityLogger' min level: Debug +2026-03-27T14:02:40.6402441Z 15:02:40.639 | Sentry: (Warning) No Sentry DSN configured. Sentry will be disabled. +2026-03-27T14:02:40.6407782Z 15:02:40.640 | Sentry: (Debug) Performance Auto Instrumentation disabled. +2026-03-27T14:02:40.6413102Z 15:02:40.640 | Unloading 5 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:02:40.6418678Z 15:02:40.641 | Unloading 23 unused Assets / (0.8 MB). Loaded Objects now: 1129. +2026-03-27T14:02:40.6423578Z 15:02:40.641 | Memory consumption went from 99.6 MB to 98.9 MB. +2026-03-27T14:02:40.6429278Z 15:02:40.642 | Total: 7.776100 ms (FindLiveObjects: 0.079500 ms CreateObjectMapping: 0.016100 ms MarkObjects: 7.336400 ms DeleteObjects: 0.343200 ms) +2026-03-27T14:02:40.6434215Z 15:02:40.643 | +2026-03-27T14:02:40.6439753Z 15:02:40.643 | Unloading 1 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:02:40.6444773Z 15:02:40.644 | Unloading 0 unused Assets / (2.2 KB). Loaded Objects now: 1131. +2026-03-27T14:02:40.6450538Z 15:02:40.644 | Memory consumption went from 98.9 MB to 98.9 MB. +2026-03-27T14:02:40.6456360Z 15:02:40.645 | Total: 7.675900 ms (FindLiveObjects: 0.067400 ms CreateObjectMapping: 0.014200 ms MarkObjects: 7.587500 ms DeleteObjects: 0.005800 ms) +2026-03-27T14:02:40.6461233Z 15:02:40.645 | +2026-03-27T14:02:41.0625095Z 15:02:41.060 | Unloading 1 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:02:41.0638732Z 15:02:41.063 | Unloading 179 unused Assets / (150.3 MB). Loaded Objects now: 1131. +2026-03-27T14:02:41.0644610Z 15:02:41.063 | Memory consumption went from 250.4 MB to 100.0 MB. +2026-03-27T14:02:41.0655121Z 15:02:41.064 | Total: 30.220600 ms (FindLiveObjects: 0.053800 ms CreateObjectMapping: 0.014600 ms MarkObjects: 7.954500 ms DeleteObjects: 22.196500 ms) +2026-03-27T14:02:41.0663433Z 15:02:41.065 | +2026-03-27T14:02:41.0745638Z 15:02:41.066 | Compiling shader "Skybox/Procedural" +2026-03-27T14:02:41.0758368Z 15:02:41.074 | Pass "" (vp) +2026-03-27T14:02:41.0771710Z 15:02:41.076 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:41.0779326Z 15:02:41.077 | Full variant space: 3 +2026-03-27T14:02:41.0784687Z 15:02:41.078 | After settings filtering: 3 +2026-03-27T14:02:41.0792303Z 15:02:41.078 | After built-in stripping: 3 +2026-03-27T14:02:41.0802830Z 15:02:41.079 | After scriptable stripping: 3 +2026-03-27T14:02:41.0811165Z 15:02:41.080 | Processed in 0.01 seconds +2026-03-27T14:02:41.0817093Z 15:02:41.081 | Pass "" (fp) +2026-03-27T14:02:41.0824735Z 15:02:41.081 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:41.0830149Z 15:02:41.082 | Full variant space: 3 +2026-03-27T14:02:41.0836774Z 15:02:41.083 | After settings filtering: 3 +2026-03-27T14:02:41.0842267Z 15:02:41.083 | After built-in stripping: 3 +2026-03-27T14:02:41.0853772Z 15:02:41.084 | After scriptable stripping: 3 +2026-03-27T14:02:41.0860526Z 15:02:41.085 | Processed in 0.00 seconds +2026-03-27T14:02:41.5030122Z 15:02:41.502 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +2026-03-27T14:02:41.5037128Z 15:02:41.503 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +2026-03-27T14:02:41.9115197Z 15:02:41.911 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +2026-03-27T14:02:42.3159673Z 15:02:42.315 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +2026-03-27T14:02:42.3174895Z 15:02:42.316 | Pass (vp, gamecore_scarlett) finished in 1.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (2.46s CPU time), skipped 0 variants. +2026-03-27T14:02:42.3181898Z 15:02:42.317 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:42.7200745Z 15:02:42.719 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +2026-03-27T14:02:43.1499008Z 15:02:43.124 | Pass (fp, gamecore_scarlett) finished in 1.83 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (3.36s CPU time), skipped 0 variants. +2026-03-27T14:02:43.1754002Z 15:02:43.163 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:43.1814084Z 15:02:43.180 | Compiling shader "Skybox/Procedural" +2026-03-27T14:02:43.1820358Z 15:02:43.181 | Pass "" (vp) +2026-03-27T14:02:43.1827305Z 15:02:43.182 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:43.1833189Z 15:02:43.182 | Full variant space: 3 +2026-03-27T14:02:43.1842976Z 15:02:43.183 | After settings filtering: 3 +2026-03-27T14:02:43.1851125Z 15:02:43.184 | After built-in stripping: 3 +2026-03-27T14:02:43.1857646Z 15:02:43.185 | After scriptable stripping: 3 +2026-03-27T14:02:43.1885250Z 15:02:43.186 | Processed in 0.00 seconds +2026-03-27T14:02:43.1892684Z 15:02:43.188 | Pass "" (fp) +2026-03-27T14:02:43.1899232Z 15:02:43.189 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:43.1905651Z 15:02:43.190 | Full variant space: 3 +2026-03-27T14:02:43.1911275Z 15:02:43.190 | After settings filtering: 3 +2026-03-27T14:02:43.1916065Z 15:02:43.191 | After built-in stripping: 3 +2026-03-27T14:02:43.1922177Z 15:02:43.191 | After scriptable stripping: 3 +2026-03-27T14:02:43.1939383Z 15:02:43.192 | Processed in 0.00 seconds +2026-03-27T14:02:43.9134677Z 15:02:43.633 | Pass (vp, gamecore_scarlett) finished in 0.32 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.95s CPU time), skipped 0 variants. +2026-03-27T14:02:43.9166835Z 15:02:43.915 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:43.9188141Z 15:02:43.918 | Pass (fp, gamecore_scarlett) finished in 0.32 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.51s CPU time), skipped 0 variants. +2026-03-27T14:02:43.9213327Z 15:02:43.920 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:43.9223228Z 15:02:43.921 | Serialized binary data for shader Skybox/Procedural in 0.00s +2026-03-27T14:02:43.9232365Z 15:02:43.922 | gamecore_scarlett (total internal programs: 6, unique: 6) +2026-03-27T14:02:43.9238041Z 15:02:43.923 | Compiling shader "Legacy Shaders/VertexLit" +2026-03-27T14:02:43.9245135Z 15:02:43.924 | Pass "" (vp) +2026-03-27T14:02:43.9252702Z 15:02:43.924 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:43.9259181Z 15:02:43.925 | Full variant space: 12 +2026-03-27T14:02:43.9264693Z 15:02:43.926 | After settings filtering: 12 +2026-03-27T14:02:43.9271031Z 15:02:43.926 | After built-in stripping: 3 +2026-03-27T14:02:43.9277562Z 15:02:43.927 | After scriptable stripping: 3 +2026-03-27T14:02:43.9283290Z 15:02:43.927 | Processed in 0.00 seconds +2026-03-27T14:02:43.9290175Z 15:02:43.928 | Pass "" (fp) +2026-03-27T14:02:43.9297088Z 15:02:43.929 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:43.9304116Z 15:02:43.929 | Full variant space: 12 +2026-03-27T14:02:43.9310571Z 15:02:43.930 | After settings filtering: 12 +2026-03-27T14:02:43.9317309Z 15:02:43.931 | After built-in stripping: 3 +2026-03-27T14:02:43.9323625Z 15:02:43.931 | After scriptable stripping: 3 +2026-03-27T14:02:43.9329395Z 15:02:43.932 | Processed in 0.00 seconds +2026-03-27T14:02:43.9334974Z 15:02:43.933 | Pass "" (vp) +2026-03-27T14:02:43.9344909Z 15:02:43.933 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:43.9345336Z 15:02:43.934 | Full variant space: 4 +2026-03-27T14:02:43.9351407Z 15:02:43.934 | After settings filtering: 4 +2026-03-27T14:02:43.9362222Z 15:02:43.935 | After built-in stripping: 1 +2026-03-27T14:02:43.9368050Z 15:02:43.936 | After scriptable stripping: 1 +2026-03-27T14:02:43.9373129Z 15:02:43.936 | Processed in 0.00 seconds +2026-03-27T14:02:43.9379065Z 15:02:43.937 | Pass "" (fp) +2026-03-27T14:02:43.9385336Z 15:02:43.938 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:43.9390985Z 15:02:43.938 | Full variant space: 4 +2026-03-27T14:02:43.9397211Z 15:02:43.939 | After settings filtering: 4 +2026-03-27T14:02:43.9403981Z 15:02:43.939 | After built-in stripping: 1 +2026-03-27T14:02:43.9409954Z 15:02:43.940 | After scriptable stripping: 1 +2026-03-27T14:02:44.1368806Z 15:02:43.941 | Processed in 0.00 seconds +2026-03-27T14:02:44.2352982Z 15:02:44.152 | Pass "ShadowCaster" (vp) +2026-03-27T14:02:44.3660743Z 15:02:44.244 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.4738365Z 15:02:44.401 | Full variant space: 4 +2026-03-27T14:02:44.5879642Z 15:02:44.480 | After settings filtering: 4 +2026-03-27T14:02:44.5926281Z 15:02:44.591 | After built-in stripping: 2 +2026-03-27T14:02:44.5955619Z 15:02:44.594 | After scriptable stripping: 2 +2026-03-27T14:02:44.6051133Z 15:02:44.596 | Processed in 0.00 seconds +2026-03-27T14:02:44.6097217Z 15:02:44.608 | Pass "ShadowCaster" (fp) +2026-03-27T14:02:44.6112785Z 15:02:44.610 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6120715Z 15:02:44.611 | Full variant space: 4 +2026-03-27T14:02:44.6129383Z 15:02:44.612 | After settings filtering: 4 +2026-03-27T14:02:44.6135224Z 15:02:44.613 | After built-in stripping: 2 +2026-03-27T14:02:44.6145894Z 15:02:44.613 | After scriptable stripping: 2 +2026-03-27T14:02:44.6158120Z 15:02:44.615 | Processed in 0.00 seconds +2026-03-27T14:02:44.6164131Z 15:02:44.615 | Pass (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.17s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6170438Z 15:02:44.616 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6176872Z 15:02:44.617 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.12s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6182498Z 15:02:44.617 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6189392Z 15:02:44.618 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6194453Z 15:02:44.619 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6200765Z 15:02:44.619 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6207626Z 15:02:44.620 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6214074Z 15:02:44.620 | Pass ShadowCaster (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6220359Z 15:02:44.621 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6226987Z 15:02:44.622 | Pass ShadowCaster (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6231878Z 15:02:44.622 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6237781Z 15:02:44.623 | Compiling shader "Legacy Shaders/VertexLit" +2026-03-27T14:02:44.6243367Z 15:02:44.623 | Pass "" (vp) +2026-03-27T14:02:44.6249177Z 15:02:44.624 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6255186Z 15:02:44.625 | Full variant space: 12 +2026-03-27T14:02:44.6260712Z 15:02:44.625 | After settings filtering: 12 +2026-03-27T14:02:44.6266174Z 15:02:44.626 | After built-in stripping: 3 +2026-03-27T14:02:44.6271745Z 15:02:44.626 | After scriptable stripping: 3 +2026-03-27T14:02:44.6277102Z 15:02:44.627 | Processed in 0.00 seconds +2026-03-27T14:02:44.6283101Z 15:02:44.627 | Pass "" (fp) +2026-03-27T14:02:44.6288930Z 15:02:44.628 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6294734Z 15:02:44.629 | Full variant space: 12 +2026-03-27T14:02:44.6311497Z 15:02:44.629 | After settings filtering: 12 +2026-03-27T14:02:44.6319064Z 15:02:44.631 | After built-in stripping: 3 +2026-03-27T14:02:44.6329859Z 15:02:44.632 | After scriptable stripping: 3 +2026-03-27T14:02:44.6335008Z 15:02:44.633 | Processed in 0.00 seconds +2026-03-27T14:02:44.6341712Z 15:02:44.633 | Pass "" (vp) +2026-03-27T14:02:44.6348551Z 15:02:44.634 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6357773Z 15:02:44.635 | Full variant space: 4 +2026-03-27T14:02:44.6364457Z 15:02:44.636 | After settings filtering: 4 +2026-03-27T14:02:44.6373158Z 15:02:44.636 | After built-in stripping: 1 +2026-03-27T14:02:44.6380138Z 15:02:44.637 | After scriptable stripping: 1 +2026-03-27T14:02:44.6389351Z 15:02:44.638 | Processed in 0.00 seconds +2026-03-27T14:02:44.6394835Z 15:02:44.639 | Pass "" (fp) +2026-03-27T14:02:44.6400707Z 15:02:44.639 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6407785Z 15:02:44.640 | Full variant space: 4 +2026-03-27T14:02:44.6413487Z 15:02:44.640 | After settings filtering: 4 +2026-03-27T14:02:44.6419618Z 15:02:44.641 | After built-in stripping: 1 +2026-03-27T14:02:44.6425630Z 15:02:44.642 | After scriptable stripping: 1 +2026-03-27T14:02:44.6431347Z 15:02:44.642 | Processed in 0.00 seconds +2026-03-27T14:02:44.6437117Z 15:02:44.643 | Pass "ShadowCaster" (vp) +2026-03-27T14:02:44.6442660Z 15:02:44.643 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6448408Z 15:02:44.644 | Full variant space: 4 +2026-03-27T14:02:44.6453883Z 15:02:44.644 | After settings filtering: 4 +2026-03-27T14:02:44.6462676Z 15:02:44.645 | After built-in stripping: 2 +2026-03-27T14:02:44.6471368Z 15:02:44.646 | After scriptable stripping: 2 +2026-03-27T14:02:44.6485522Z 15:02:44.648 | Processed in 0.00 seconds +2026-03-27T14:02:44.6504057Z 15:02:44.648 | Pass "ShadowCaster" (fp) +2026-03-27T14:02:44.6519758Z 15:02:44.651 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6527849Z 15:02:44.652 | Full variant space: 4 +2026-03-27T14:02:44.6534636Z 15:02:44.653 | After settings filtering: 4 +2026-03-27T14:02:44.6541006Z 15:02:44.653 | After built-in stripping: 2 +2026-03-27T14:02:44.6546762Z 15:02:44.654 | After scriptable stripping: 2 +2026-03-27T14:02:44.6551946Z 15:02:44.654 | Processed in 0.00 seconds +2026-03-27T14:02:44.6558747Z 15:02:44.655 | Pass (vp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.56s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6566283Z 15:02:44.656 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6573229Z 15:02:44.656 | Pass (fp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.14s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6578888Z 15:02:44.657 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6585397Z 15:02:44.658 | Pass (vp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6592427Z 15:02:44.658 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6599674Z 15:02:44.659 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6612292Z 15:02:44.660 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6627690Z 15:02:44.662 | Pass ShadowCaster (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.19s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6634481Z 15:02:44.663 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6639886Z 15:02:44.663 | Pass ShadowCaster (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6649229Z 15:02:44.664 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.6656065Z 15:02:44.665 | Serialized binary data for shader Legacy Shaders/VertexLit in 0.00s +2026-03-27T14:02:44.6661518Z 15:02:44.665 | gamecore_scarlett (total internal programs: 12, unique: 12) +2026-03-27T14:02:44.6668128Z 15:02:44.666 | Compiling shader "Legacy Shaders/Diffuse" +2026-03-27T14:02:44.6675261Z 15:02:44.667 | Pass "FORWARD" (vp) +2026-03-27T14:02:44.6682297Z 15:02:44.667 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6688956Z 15:02:44.668 | Full variant space: 664 +2026-03-27T14:02:44.6695483Z 15:02:44.669 | After settings filtering: 664 +2026-03-27T14:02:44.6701728Z 15:02:44.669 | After built-in stripping: 8 +2026-03-27T14:02:44.6708105Z 15:02:44.670 | After scriptable stripping: 8 +2026-03-27T14:02:44.6714382Z 15:02:44.671 | Processed in 0.00 seconds +2026-03-27T14:02:44.6721371Z 15:02:44.671 | Pass "FORWARD" (fp) +2026-03-27T14:02:44.6731343Z 15:02:44.672 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6738145Z 15:02:44.673 | Full variant space: 504 +2026-03-27T14:02:44.6744243Z 15:02:44.674 | After settings filtering: 504 +2026-03-27T14:02:44.6750229Z 15:02:44.674 | After built-in stripping: 4 +2026-03-27T14:02:44.6756685Z 15:02:44.675 | After scriptable stripping: 4 +2026-03-27T14:02:44.6768558Z 15:02:44.676 | Processed in 0.00 seconds +2026-03-27T14:02:44.6775244Z 15:02:44.677 | Pass "FORWARD" (vp) +2026-03-27T14:02:44.6784516Z 15:02:44.678 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6792379Z 15:02:44.678 | Full variant space: 20 +2026-03-27T14:02:44.6800985Z 15:02:44.679 | After settings filtering: 20 +2026-03-27T14:02:44.6809560Z 15:02:44.680 | After built-in stripping: 5 +2026-03-27T14:02:44.6815333Z 15:02:44.681 | After scriptable stripping: 5 +2026-03-27T14:02:44.6821248Z 15:02:44.681 | Processed in 0.00 seconds +2026-03-27T14:02:44.6828515Z 15:02:44.682 | Pass "FORWARD" (fp) +2026-03-27T14:02:44.6833997Z 15:02:44.683 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6839628Z 15:02:44.683 | Full variant space: 20 +2026-03-27T14:02:44.6847869Z 15:02:44.684 | After settings filtering: 20 +2026-03-27T14:02:44.6854218Z 15:02:44.685 | After built-in stripping: 5 +2026-03-27T14:02:44.6861440Z 15:02:44.685 | After scriptable stripping: 5 +2026-03-27T14:02:44.6867118Z 15:02:44.686 | Processed in 0.00 seconds +2026-03-27T14:02:44.6872724Z 15:02:44.686 | Pass "DEFERRED" (vp) +2026-03-27T14:02:44.6880277Z 15:02:44.687 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6885912Z 15:02:44.688 | Full variant space: 76 +2026-03-27T14:02:44.6892561Z 15:02:44.688 | After settings filtering: 76 +2026-03-27T14:02:44.6898496Z 15:02:44.689 | After built-in stripping: 4 +2026-03-27T14:02:44.6904196Z 15:02:44.690 | After scriptable stripping: 4 +2026-03-27T14:02:44.6909974Z 15:02:44.690 | Processed in 0.00 seconds +2026-03-27T14:02:44.6924435Z 15:02:44.691 | Pass "DEFERRED" (fp) +2026-03-27T14:02:44.6933488Z 15:02:44.692 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.6941565Z 15:02:44.693 | Full variant space: 76 +2026-03-27T14:02:44.6948837Z 15:02:44.694 | After settings filtering: 76 +2026-03-27T14:02:44.6955413Z 15:02:44.695 | After built-in stripping: 4 +2026-03-27T14:02:44.6962108Z 15:02:44.695 | After scriptable stripping: 4 +2026-03-27T14:02:44.6970766Z 15:02:44.696 | Processed in 0.00 seconds +2026-03-27T14:02:44.6978922Z 15:02:44.697 | Pass FORWARD (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 8 variants (0.57s CPU time), skipped 0 variants. +2026-03-27T14:02:44.6996013Z 15:02:44.698 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7001711Z 15:02:44.699 | Pass FORWARD (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.23s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7007341Z 15:02:44.700 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7013046Z 15:02:44.700 | Pass FORWARD (vp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 5 variants (0.29s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7021101Z 15:02:44.701 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7028887Z 15:02:44.702 | Pass FORWARD (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 5 variants (0.27s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7036868Z 15:02:44.703 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7044146Z 15:02:44.704 | Pass DEFERRED (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.21s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7051362Z 15:02:44.704 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7060761Z 15:02:44.705 | Pass DEFERRED (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.20s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7068178Z 15:02:44.706 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7092374Z 15:02:44.708 | Compiling shader "Legacy Shaders/Diffuse" +2026-03-27T14:02:44.7098150Z 15:02:44.709 | Pass "FORWARD" (vp) +2026-03-27T14:02:44.7105673Z 15:02:44.710 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.7119461Z 15:02:44.711 | Full variant space: 664 +2026-03-27T14:02:44.7126515Z 15:02:44.712 | After settings filtering: 664 +2026-03-27T14:02:44.7133839Z 15:02:44.712 | After built-in stripping: 8 +2026-03-27T14:02:44.7139089Z 15:02:44.713 | After scriptable stripping: 8 +2026-03-27T14:02:44.7145395Z 15:02:44.714 | Processed in 0.00 seconds +2026-03-27T14:02:44.7151420Z 15:02:44.714 | Pass "FORWARD" (fp) +2026-03-27T14:02:44.7156962Z 15:02:44.715 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.7162995Z 15:02:44.715 | Full variant space: 504 +2026-03-27T14:02:44.7170003Z 15:02:44.716 | After settings filtering: 504 +2026-03-27T14:02:44.7175230Z 15:02:44.717 | After built-in stripping: 4 +2026-03-27T14:02:44.7180568Z 15:02:44.717 | After scriptable stripping: 4 +2026-03-27T14:02:44.7185728Z 15:02:44.718 | Processed in 0.00 seconds +2026-03-27T14:02:44.7191633Z 15:02:44.718 | Pass "FORWARD" (vp) +2026-03-27T14:02:44.7197260Z 15:02:44.719 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.7202785Z 15:02:44.719 | Full variant space: 20 +2026-03-27T14:02:44.7208042Z 15:02:44.720 | After settings filtering: 20 +2026-03-27T14:02:44.7213419Z 15:02:44.720 | After built-in stripping: 5 +2026-03-27T14:02:44.7223893Z 15:02:44.721 | After scriptable stripping: 5 +2026-03-27T14:02:44.7232115Z 15:02:44.722 | Processed in 0.00 seconds +2026-03-27T14:02:44.7238465Z 15:02:44.723 | Pass "FORWARD" (fp) +2026-03-27T14:02:44.7243937Z 15:02:44.724 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.7252082Z 15:02:44.724 | Full variant space: 20 +2026-03-27T14:02:44.7257885Z 15:02:44.725 | After settings filtering: 20 +2026-03-27T14:02:44.7263204Z 15:02:44.725 | After built-in stripping: 5 +2026-03-27T14:02:44.7268601Z 15:02:44.726 | After scriptable stripping: 5 +2026-03-27T14:02:44.7274448Z 15:02:44.727 | Processed in 0.00 seconds +2026-03-27T14:02:44.7281183Z 15:02:44.727 | Pass "DEFERRED" (vp) +2026-03-27T14:02:44.7287614Z 15:02:44.728 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.7293446Z 15:02:44.728 | Full variant space: 76 +2026-03-27T14:02:44.7298872Z 15:02:44.729 | After settings filtering: 76 +2026-03-27T14:02:44.7304194Z 15:02:44.730 | After built-in stripping: 4 +2026-03-27T14:02:44.7309598Z 15:02:44.730 | After scriptable stripping: 4 +2026-03-27T14:02:44.7315379Z 15:02:44.731 | Processed in 0.00 seconds +2026-03-27T14:02:44.7321147Z 15:02:44.731 | Pass "DEFERRED" (fp) +2026-03-27T14:02:44.7328775Z 15:02:44.732 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.7334001Z 15:02:44.733 | Full variant space: 76 +2026-03-27T14:02:44.7340077Z 15:02:44.733 | After settings filtering: 76 +2026-03-27T14:02:44.7345805Z 15:02:44.734 | After built-in stripping: 4 +2026-03-27T14:02:44.7351399Z 15:02:44.734 | After scriptable stripping: 4 +2026-03-27T14:02:44.7356912Z 15:02:44.735 | Processed in 0.00 seconds +2026-03-27T14:02:44.7363072Z 15:02:44.735 | Pass FORWARD (vp, gamecore_scarlett) finished in 0.30 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 8 variants (1.21s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7369109Z 15:02:44.736 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7380537Z 15:02:44.737 | Pass FORWARD (fp, gamecore_scarlett) finished in 0.18 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.42s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7389192Z 15:02:44.738 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7395991Z 15:02:44.739 | Pass FORWARD (vp, gamecore_scarlett) finished in 0.24 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 5 variants (0.68s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7403724Z 15:02:44.739 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7414250Z 15:02:44.740 | Pass FORWARD (fp, gamecore_scarlett) finished in 0.18 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 5 variants (0.41s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7415352Z 15:02:44.741 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7420160Z 15:02:44.741 | Pass DEFERRED (vp, gamecore_scarlett) finished in 0.20 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.52s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7425140Z 15:02:44.742 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7430900Z 15:02:44.742 | Pass DEFERRED (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.25s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7436536Z 15:02:44.743 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.7442091Z 15:02:44.743 | Serialized binary data for shader Legacy Shaders/Diffuse in 0.00s +2026-03-27T14:02:44.7448297Z 15:02:44.744 | gamecore_scarlett (total internal programs: 30, unique: 30) +2026-03-27T14:02:44.7454349Z 15:02:44.745 | Compiling shader "Hidden/Internal-StencilWrite" +2026-03-27T14:02:44.7460386Z 15:02:44.745 | Pass "" (vp) +2026-03-27T14:02:44.7466195Z 15:02:44.746 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.7472054Z 15:02:44.746 | Full variant space: 1 +2026-03-27T14:02:44.7477498Z 15:02:44.747 | After settings filtering: 1 +2026-03-27T14:02:44.7483388Z 15:02:44.747 | After built-in stripping: 1 +2026-03-27T14:02:44.7489764Z 15:02:44.748 | After scriptable stripping: 1 +2026-03-27T14:02:44.7495254Z 15:02:44.749 | Processed in 0.00 seconds +2026-03-27T14:02:44.7500530Z 15:02:44.749 | Pass "" (fp) +2026-03-27T14:02:44.7506033Z 15:02:44.750 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.7516676Z 15:02:44.750 | Full variant space: 1 +2026-03-27T14:02:44.7522040Z 15:02:44.751 | After settings filtering: 1 +2026-03-27T14:02:44.7527629Z 15:02:44.752 | After built-in stripping: 1 +2026-03-27T14:02:44.7538595Z 15:02:44.752 | After scriptable stripping: 1 +2026-03-27T14:02:44.7545501Z 15:02:44.754 | Processed in 0.00 seconds +2026-03-27T14:02:44.7553713Z 15:02:44.754 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:44.7559834Z 15:02:44.755 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.8064128Z 15:02:44.756 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:44.8489512Z 15:02:44.816 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.8870566Z 15:02:44.860 | Compiling shader "Hidden/Internal-StencilWrite" +2026-03-27T14:02:44.9271825Z 15:02:44.892 | Pass "" (vp) +2026-03-27T14:02:44.9672471Z 15:02:44.938 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.9755066Z 15:02:44.969 | Full variant space: 1 +2026-03-27T14:02:44.9789751Z 15:02:44.976 | After settings filtering: 1 +2026-03-27T14:02:44.9796993Z 15:02:44.979 | After built-in stripping: 1 +2026-03-27T14:02:44.9860017Z 15:02:44.980 | After scriptable stripping: 1 +2026-03-27T14:02:44.9867474Z 15:02:44.986 | Processed in 0.00 seconds +2026-03-27T14:02:44.9876768Z 15:02:44.987 | Pass "" (fp) +2026-03-27T14:02:44.9883267Z 15:02:44.987 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:44.9890036Z 15:02:44.988 | Full variant space: 1 +2026-03-27T14:02:44.9898132Z 15:02:44.989 | After settings filtering: 1 +2026-03-27T14:02:44.9904301Z 15:02:44.990 | After built-in stripping: 1 +2026-03-27T14:02:44.9909466Z 15:02:44.990 | After scriptable stripping: 1 +2026-03-27T14:02:44.9916429Z 15:02:44.991 | Processed in 0.00 seconds +2026-03-27T14:02:44.9923821Z 15:02:44.991 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:44.9931654Z 15:02:44.992 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.9938064Z 15:02:44.993 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:44.9944744Z 15:02:44.994 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:44.9951443Z 15:02:44.994 | Serialized binary data for shader Hidden/Internal-StencilWrite in 0.00s +2026-03-27T14:02:44.9957773Z 15:02:44.995 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:45.0059915Z 15:02:44.996 | Compiling shader "Hidden/Internal-DepthNormalsTexture" +2026-03-27T14:02:45.0665227Z 15:02:45.023 | Pass "" (vp) +2026-03-27T14:02:45.1261062Z 15:02:45.085 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.1713215Z 15:02:45.138 | Full variant space: 1 +2026-03-27T14:02:45.2043565Z 15:02:45.177 | After settings filtering: 1 +2026-03-27T14:02:45.2561931Z 15:02:45.215 | After built-in stripping: 1 +2026-03-27T14:02:45.2993510Z 15:02:45.269 | After scriptable stripping: 1 +2026-03-27T14:02:45.3563357Z 15:02:45.314 | Processed in 0.00 seconds +2026-03-27T14:02:45.3896866Z 15:02:45.366 | Pass "" (fp) +2026-03-27T14:02:45.4029541Z 15:02:45.396 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4107975Z 15:02:45.403 | Full variant space: 1 +2026-03-27T14:02:45.4123145Z 15:02:45.411 | After settings filtering: 1 +2026-03-27T14:02:45.4129969Z 15:02:45.412 | After built-in stripping: 1 +2026-03-27T14:02:45.4136505Z 15:02:45.413 | After scriptable stripping: 1 +2026-03-27T14:02:45.4163270Z 15:02:45.414 | Processed in 0.00 seconds +2026-03-27T14:02:45.4174038Z 15:02:45.416 | Pass "" (vp) +2026-03-27T14:02:45.4186860Z 15:02:45.418 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4193433Z 15:02:45.419 | Full variant space: 1 +2026-03-27T14:02:45.4225220Z 15:02:45.419 | After settings filtering: 1 +2026-03-27T14:02:45.4255974Z 15:02:45.423 | After built-in stripping: 1 +2026-03-27T14:02:45.4262814Z 15:02:45.425 | After scriptable stripping: 1 +2026-03-27T14:02:45.4281566Z 15:02:45.426 | Processed in 0.00 seconds +2026-03-27T14:02:45.4307613Z 15:02:45.428 | Pass "" (fp) +2026-03-27T14:02:45.4343256Z 15:02:45.433 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4349372Z 15:02:45.434 | Full variant space: 1 +2026-03-27T14:02:45.4355972Z 15:02:45.435 | After settings filtering: 1 +2026-03-27T14:02:45.4362818Z 15:02:45.435 | After built-in stripping: 1 +2026-03-27T14:02:45.4370928Z 15:02:45.436 | After scriptable stripping: 1 +2026-03-27T14:02:45.4380273Z 15:02:45.437 | Processed in 0.00 seconds +2026-03-27T14:02:45.4388112Z 15:02:45.438 | Pass "" (vp) +2026-03-27T14:02:45.4395016Z 15:02:45.439 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4401948Z 15:02:45.439 | Full variant space: 1 +2026-03-27T14:02:45.4409997Z 15:02:45.440 | After settings filtering: 1 +2026-03-27T14:02:45.4416007Z 15:02:45.441 | After built-in stripping: 1 +2026-03-27T14:02:45.4429110Z 15:02:45.441 | After scriptable stripping: 1 +2026-03-27T14:02:45.4435632Z 15:02:45.443 | Processed in 0.00 seconds +2026-03-27T14:02:45.4442280Z 15:02:45.443 | Pass "" (fp) +2026-03-27T14:02:45.4448246Z 15:02:45.444 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4459076Z 15:02:45.445 | Full variant space: 1 +2026-03-27T14:02:45.4509811Z 15:02:45.446 | After settings filtering: 1 +2026-03-27T14:02:45.4525500Z 15:02:45.451 | After built-in stripping: 1 +2026-03-27T14:02:45.4537752Z 15:02:45.453 | After scriptable stripping: 1 +2026-03-27T14:02:45.4556689Z 15:02:45.454 | Processed in 0.00 seconds +2026-03-27T14:02:45.4573008Z 15:02:45.456 | Pass "" (vp) +2026-03-27T14:02:45.4587209Z 15:02:45.457 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4599390Z 15:02:45.459 | Full variant space: 1 +2026-03-27T14:02:45.4608292Z 15:02:45.460 | After settings filtering: 1 +2026-03-27T14:02:45.4631942Z 15:02:45.461 | After built-in stripping: 1 +2026-03-27T14:02:45.4642974Z 15:02:45.463 | After scriptable stripping: 1 +2026-03-27T14:02:45.4649048Z 15:02:45.464 | Processed in 0.00 seconds +2026-03-27T14:02:45.4654417Z 15:02:45.465 | Pass "" (fp) +2026-03-27T14:02:45.4659679Z 15:02:45.465 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4664889Z 15:02:45.466 | Full variant space: 1 +2026-03-27T14:02:45.4670164Z 15:02:45.466 | After settings filtering: 1 +2026-03-27T14:02:45.4675805Z 15:02:45.467 | After built-in stripping: 1 +2026-03-27T14:02:45.4681401Z 15:02:45.467 | After scriptable stripping: 1 +2026-03-27T14:02:45.4686808Z 15:02:45.468 | Processed in 0.00 seconds +2026-03-27T14:02:45.4692017Z 15:02:45.468 | Pass "" (vp) +2026-03-27T14:02:45.4698461Z 15:02:45.469 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4704149Z 15:02:45.470 | Full variant space: 1 +2026-03-27T14:02:45.4710038Z 15:02:45.470 | After settings filtering: 1 +2026-03-27T14:02:45.4715663Z 15:02:45.471 | After built-in stripping: 1 +2026-03-27T14:02:45.4721656Z 15:02:45.471 | After scriptable stripping: 1 +2026-03-27T14:02:45.4727871Z 15:02:45.472 | Processed in 0.00 seconds +2026-03-27T14:02:45.4733553Z 15:02:45.472 | Pass "" (fp) +2026-03-27T14:02:45.4739030Z 15:02:45.473 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4744733Z 15:02:45.474 | Full variant space: 1 +2026-03-27T14:02:45.4750108Z 15:02:45.474 | After settings filtering: 1 +2026-03-27T14:02:45.4755297Z 15:02:45.475 | After built-in stripping: 1 +2026-03-27T14:02:45.4760661Z 15:02:45.475 | After scriptable stripping: 1 +2026-03-27T14:02:45.4765705Z 15:02:45.476 | Processed in 0.00 seconds +2026-03-27T14:02:45.4795093Z 15:02:45.476 | Pass "" (vp) +2026-03-27T14:02:45.4800545Z 15:02:45.479 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4806876Z 15:02:45.480 | Full variant space: 1 +2026-03-27T14:02:45.4812532Z 15:02:45.480 | After settings filtering: 1 +2026-03-27T14:02:45.4820902Z 15:02:45.481 | After built-in stripping: 1 +2026-03-27T14:02:45.4830044Z 15:02:45.482 | After scriptable stripping: 1 +2026-03-27T14:02:45.4837662Z 15:02:45.483 | Processed in 0.00 seconds +2026-03-27T14:02:45.4844054Z 15:02:45.483 | Pass "" (fp) +2026-03-27T14:02:45.4851506Z 15:02:45.484 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4856966Z 15:02:45.485 | Full variant space: 1 +2026-03-27T14:02:45.4862579Z 15:02:45.485 | After settings filtering: 1 +2026-03-27T14:02:45.4868011Z 15:02:45.486 | After built-in stripping: 1 +2026-03-27T14:02:45.4873304Z 15:02:45.486 | After scriptable stripping: 1 +2026-03-27T14:02:45.4878736Z 15:02:45.487 | Processed in 0.00 seconds +2026-03-27T14:02:45.4883808Z 15:02:45.487 | Pass "" (vp) +2026-03-27T14:02:45.4890527Z 15:02:45.488 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4896430Z 15:02:45.489 | Full variant space: 1 +2026-03-27T14:02:45.4901937Z 15:02:45.489 | After settings filtering: 1 +2026-03-27T14:02:45.4907775Z 15:02:45.490 | After built-in stripping: 1 +2026-03-27T14:02:45.4913410Z 15:02:45.490 | After scriptable stripping: 1 +2026-03-27T14:02:45.4919099Z 15:02:45.491 | Processed in 0.00 seconds +2026-03-27T14:02:45.4927656Z 15:02:45.492 | Pass "" (fp) +2026-03-27T14:02:45.4937718Z 15:02:45.493 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4943466Z 15:02:45.493 | Full variant space: 1 +2026-03-27T14:02:45.4949123Z 15:02:45.494 | After settings filtering: 1 +2026-03-27T14:02:45.4955084Z 15:02:45.495 | After built-in stripping: 1 +2026-03-27T14:02:45.4960907Z 15:02:45.495 | After scriptable stripping: 1 +2026-03-27T14:02:45.4974412Z 15:02:45.496 | Processed in 0.00 seconds +2026-03-27T14:02:45.4980271Z 15:02:45.497 | Pass "" (vp) +2026-03-27T14:02:45.4985888Z 15:02:45.498 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.4991325Z 15:02:45.498 | Full variant space: 1 +2026-03-27T14:02:45.4996672Z 15:02:45.499 | After settings filtering: 1 +2026-03-27T14:02:45.5002105Z 15:02:45.499 | After built-in stripping: 1 +2026-03-27T14:02:45.5007638Z 15:02:45.500 | After scriptable stripping: 1 +2026-03-27T14:02:45.5013581Z 15:02:45.500 | Processed in 0.00 seconds +2026-03-27T14:02:45.5018890Z 15:02:45.501 | Pass "" (fp) +2026-03-27T14:02:45.5024156Z 15:02:45.502 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.5029556Z 15:02:45.502 | Full variant space: 1 +2026-03-27T14:02:45.5035059Z 15:02:45.503 | After settings filtering: 1 +2026-03-27T14:02:45.5040534Z 15:02:45.503 | After built-in stripping: 1 +2026-03-27T14:02:45.5047064Z 15:02:45.504 | After scriptable stripping: 1 +2026-03-27T14:02:45.5052976Z 15:02:45.504 | Processed in 0.00 seconds +2026-03-27T14:02:45.5058332Z 15:02:45.505 | Pass "" (vp) +2026-03-27T14:02:45.5063761Z 15:02:45.505 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.5069405Z 15:02:45.506 | Full variant space: 1 +2026-03-27T14:02:45.5074928Z 15:02:45.507 | After settings filtering: 1 +2026-03-27T14:02:45.5088334Z 15:02:45.507 | After built-in stripping: 1 +2026-03-27T14:02:45.5107799Z 15:02:45.510 | After scriptable stripping: 1 +2026-03-27T14:02:45.5113473Z 15:02:45.511 | Processed in 0.00 seconds +2026-03-27T14:02:45.5123578Z 15:02:45.511 | Pass "" (fp) +2026-03-27T14:02:45.5129981Z 15:02:45.512 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.5137973Z 15:02:45.513 | Full variant space: 1 +2026-03-27T14:02:45.5143336Z 15:02:45.513 | After settings filtering: 1 +2026-03-27T14:02:45.5149124Z 15:02:45.514 | After built-in stripping: 1 +2026-03-27T14:02:45.5154602Z 15:02:45.515 | After scriptable stripping: 1 +2026-03-27T14:02:45.5160002Z 15:02:45.515 | Processed in 0.00 seconds +2026-03-27T14:02:45.5165820Z 15:02:45.516 | Pass "" (vp) +2026-03-27T14:02:45.5171910Z 15:02:45.516 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.5176878Z 15:02:45.517 | Full variant space: 1 +2026-03-27T14:02:45.5182411Z 15:02:45.517 | After settings filtering: 1 +2026-03-27T14:02:45.5187497Z 15:02:45.518 | After built-in stripping: 1 +2026-03-27T14:02:45.5192839Z 15:02:45.518 | After scriptable stripping: 1 +2026-03-27T14:02:45.5197933Z 15:02:45.519 | Processed in 0.00 seconds +2026-03-27T14:02:45.5203537Z 15:02:45.519 | Pass "" (fp) +2026-03-27T14:02:45.5746784Z 15:02:45.520 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:45.5986423Z 15:02:45.582 | Full variant space: 1 +2026-03-27T14:02:45.6254593Z 15:02:45.603 | After settings filtering: 1 +2026-03-27T14:02:45.6354040Z 15:02:45.633 | After built-in stripping: 1 +2026-03-27T14:02:45.6374440Z 15:02:45.635 | After scriptable stripping: 1 +2026-03-27T14:02:45.6396415Z 15:02:45.638 | Processed in 0.00 seconds +2026-03-27T14:02:45.6529677Z 15:02:45.641 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:45.7517571Z 15:02:45.667 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:45.8347094Z 15:02:45.770 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:45.9017218Z 15:02:45.853 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:45.9560200Z 15:02:45.919 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:46.0232853Z 15:02:45.989 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.0636309Z 15:02:46.041 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:46.0842827Z 15:02:46.070 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.0927622Z 15:02:46.087 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:46.0979820Z 15:02:46.094 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.0987971Z 15:02:46.098 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:46.0999110Z 15:02:46.099 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1006805Z 15:02:46.100 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1014170Z 15:02:46.101 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1021909Z 15:02:46.101 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1033400Z 15:02:46.102 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1050435Z 15:02:46.103 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1055811Z 15:02:46.105 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1064513Z 15:02:46.105 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1072062Z 15:02:46.106 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1078304Z 15:02:46.107 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1092982Z 15:02:46.108 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1100438Z 15:02:46.109 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1104757Z 15:02:46.110 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1111372Z 15:02:46.110 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1116970Z 15:02:46.111 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1124882Z 15:02:46.111 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1130225Z 15:02:46.112 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1136763Z 15:02:46.113 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1142928Z 15:02:46.113 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1149354Z 15:02:46.114 | Pass (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1154580Z 15:02:46.115 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1160410Z 15:02:46.115 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1165572Z 15:02:46.116 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1172837Z 15:02:46.116 | Pass (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1177755Z 15:02:46.117 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1185734Z 15:02:46.118 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1199618Z 15:02:46.119 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1207296Z 15:02:46.120 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:46.1212958Z 15:02:46.120 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.1218870Z 15:02:46.121 | Compiling shader "Hidden/Internal-DepthNormalsTexture" +2026-03-27T14:02:46.1225911Z 15:02:46.122 | Pass "" (vp) +2026-03-27T14:02:46.1232072Z 15:02:46.122 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.1238399Z 15:02:46.123 | Full variant space: 1 +2026-03-27T14:02:46.1244139Z 15:02:46.124 | After settings filtering: 1 +2026-03-27T14:02:46.1251352Z 15:02:46.124 | After built-in stripping: 1 +2026-03-27T14:02:46.1256973Z 15:02:46.125 | After scriptable stripping: 1 +2026-03-27T14:02:46.1262484Z 15:02:46.125 | Processed in 0.00 seconds +2026-03-27T14:02:46.1268244Z 15:02:46.126 | Pass "" (fp) +2026-03-27T14:02:46.1274204Z 15:02:46.127 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.1280120Z 15:02:46.127 | Full variant space: 1 +2026-03-27T14:02:46.1285674Z 15:02:46.128 | After settings filtering: 1 +2026-03-27T14:02:46.1292493Z 15:02:46.128 | After built-in stripping: 1 +2026-03-27T14:02:46.1298133Z 15:02:46.129 | After scriptable stripping: 1 +2026-03-27T14:02:46.1303517Z 15:02:46.129 | Processed in 0.00 seconds +2026-03-27T14:02:46.1309439Z 15:02:46.130 | Pass "" (vp) +2026-03-27T14:02:46.1314665Z 15:02:46.131 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.1320467Z 15:02:46.131 | Full variant space: 1 +2026-03-27T14:02:46.1327419Z 15:02:46.132 | After settings filtering: 1 +2026-03-27T14:02:46.1763864Z 15:02:46.132 | After built-in stripping: 1 +2026-03-27T14:02:46.1944035Z 15:02:46.181 | After scriptable stripping: 1 +2026-03-27T14:02:46.2153693Z 15:02:46.195 | Processed in 0.00 seconds +2026-03-27T14:02:46.2354394Z 15:02:46.217 | Pass "" (fp) +2026-03-27T14:02:46.2477786Z 15:02:46.242 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.2686847Z 15:02:46.249 | Full variant space: 1 +2026-03-27T14:02:46.2907914Z 15:02:46.275 | After settings filtering: 1 +2026-03-27T14:02:46.3132814Z 15:02:46.297 | After built-in stripping: 1 +2026-03-27T14:02:46.3270148Z 15:02:46.314 | After scriptable stripping: 1 +2026-03-27T14:02:46.3518033Z 15:02:46.331 | Processed in 0.00 seconds +2026-03-27T14:02:46.3820079Z 15:02:46.362 | Pass "" (vp) +2026-03-27T14:02:46.4108352Z 15:02:46.391 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.4589685Z 15:02:46.424 | Full variant space: 1 +2026-03-27T14:02:46.4882165Z 15:02:46.468 | After settings filtering: 1 +2026-03-27T14:02:46.5124259Z 15:02:46.494 | After built-in stripping: 1 +2026-03-27T14:02:46.5444148Z 15:02:46.522 | After scriptable stripping: 1 +2026-03-27T14:02:46.5644421Z 15:02:46.552 | Processed in 0.00 seconds +2026-03-27T14:02:46.5848705Z 15:02:46.569 | Pass "" (fp) +2026-03-27T14:02:46.6154907Z 15:02:46.593 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.6513680Z 15:02:46.629 | Full variant space: 1 +2026-03-27T14:02:46.6828603Z 15:02:46.662 | After settings filtering: 1 +2026-03-27T14:02:46.7057672Z 15:02:46.689 | After built-in stripping: 1 +2026-03-27T14:02:46.7350217Z 15:02:46.715 | After scriptable stripping: 1 +2026-03-27T14:02:46.7431253Z 15:02:46.737 | Processed in 0.00 seconds +2026-03-27T14:02:46.7719736Z 15:02:46.751 | Pass "" (vp) +2026-03-27T14:02:46.8002600Z 15:02:46.779 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.8221467Z 15:02:46.808 | Full variant space: 1 +2026-03-27T14:02:46.8462841Z 15:02:46.829 | After settings filtering: 1 +2026-03-27T14:02:46.8704704Z 15:02:46.851 | After built-in stripping: 1 +2026-03-27T14:02:46.8753006Z 15:02:46.873 | After scriptable stripping: 1 +2026-03-27T14:02:46.8788901Z 15:02:46.877 | Processed in 0.00 seconds +2026-03-27T14:02:46.8809007Z 15:02:46.879 | Pass "" (fp) +2026-03-27T14:02:46.8861022Z 15:02:46.882 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.8880477Z 15:02:46.886 | Full variant space: 1 +2026-03-27T14:02:46.8891617Z 15:02:46.888 | After settings filtering: 1 +2026-03-27T14:02:46.8900285Z 15:02:46.889 | After built-in stripping: 1 +2026-03-27T14:02:46.8910719Z 15:02:46.890 | After scriptable stripping: 1 +2026-03-27T14:02:46.8918682Z 15:02:46.891 | Processed in 0.00 seconds +2026-03-27T14:02:46.8926424Z 15:02:46.892 | Pass "" (vp) +2026-03-27T14:02:46.8933340Z 15:02:46.892 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.8939780Z 15:02:46.893 | Full variant space: 1 +2026-03-27T14:02:46.8947362Z 15:02:46.894 | After settings filtering: 1 +2026-03-27T14:02:46.8954642Z 15:02:46.895 | After built-in stripping: 1 +2026-03-27T14:02:46.8962789Z 15:02:46.895 | After scriptable stripping: 1 +2026-03-27T14:02:46.8970288Z 15:02:46.896 | Processed in 0.00 seconds +2026-03-27T14:02:46.8976765Z 15:02:46.897 | Pass "" (fp) +2026-03-27T14:02:46.8987876Z 15:02:46.898 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.8993453Z 15:02:46.898 | Full variant space: 1 +2026-03-27T14:02:46.9002626Z 15:02:46.899 | After settings filtering: 1 +2026-03-27T14:02:46.9010378Z 15:02:46.900 | After built-in stripping: 1 +2026-03-27T14:02:46.9028675Z 15:02:46.901 | After scriptable stripping: 1 +2026-03-27T14:02:46.9035905Z 15:02:46.903 | Processed in 0.00 seconds +2026-03-27T14:02:46.9042334Z 15:02:46.903 | Pass "" (vp) +2026-03-27T14:02:46.9050757Z 15:02:46.904 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9059098Z 15:02:46.905 | Full variant space: 1 +2026-03-27T14:02:46.9067072Z 15:02:46.906 | After settings filtering: 1 +2026-03-27T14:02:46.9075282Z 15:02:46.907 | After built-in stripping: 1 +2026-03-27T14:02:46.9084266Z 15:02:46.907 | After scriptable stripping: 1 +2026-03-27T14:02:46.9091967Z 15:02:46.908 | Processed in 0.00 seconds +2026-03-27T14:02:46.9099884Z 15:02:46.909 | Pass "" (fp) +2026-03-27T14:02:46.9106788Z 15:02:46.910 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9111008Z 15:02:46.910 | Full variant space: 1 +2026-03-27T14:02:46.9116266Z 15:02:46.911 | After settings filtering: 1 +2026-03-27T14:02:46.9121603Z 15:02:46.911 | After built-in stripping: 1 +2026-03-27T14:02:46.9127104Z 15:02:46.912 | After scriptable stripping: 1 +2026-03-27T14:02:46.9132773Z 15:02:46.912 | Processed in 0.00 seconds +2026-03-27T14:02:46.9138023Z 15:02:46.913 | Pass "" (vp) +2026-03-27T14:02:46.9143485Z 15:02:46.913 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9148682Z 15:02:46.914 | Full variant space: 1 +2026-03-27T14:02:46.9153715Z 15:02:46.915 | After settings filtering: 1 +2026-03-27T14:02:46.9158627Z 15:02:46.915 | After built-in stripping: 1 +2026-03-27T14:02:46.9163731Z 15:02:46.915 | After scriptable stripping: 1 +2026-03-27T14:02:46.9172502Z 15:02:46.916 | Processed in 0.00 seconds +2026-03-27T14:02:46.9179084Z 15:02:46.917 | Pass "" (fp) +2026-03-27T14:02:46.9184442Z 15:02:46.918 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9189931Z 15:02:46.918 | Full variant space: 1 +2026-03-27T14:02:46.9195385Z 15:02:46.919 | After settings filtering: 1 +2026-03-27T14:02:46.9200836Z 15:02:46.919 | After built-in stripping: 1 +2026-03-27T14:02:46.9206273Z 15:02:46.920 | After scriptable stripping: 1 +2026-03-27T14:02:46.9211945Z 15:02:46.920 | Processed in 0.00 seconds +2026-03-27T14:02:46.9217098Z 15:02:46.921 | Pass "" (vp) +2026-03-27T14:02:46.9222760Z 15:02:46.921 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9228149Z 15:02:46.922 | Full variant space: 1 +2026-03-27T14:02:46.9234186Z 15:02:46.922 | After settings filtering: 1 +2026-03-27T14:02:46.9240279Z 15:02:46.923 | After built-in stripping: 1 +2026-03-27T14:02:46.9250672Z 15:02:46.924 | After scriptable stripping: 1 +2026-03-27T14:02:46.9258086Z 15:02:46.925 | Processed in 0.00 seconds +2026-03-27T14:02:46.9263550Z 15:02:46.925 | Pass "" (fp) +2026-03-27T14:02:46.9269428Z 15:02:46.926 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9274882Z 15:02:46.927 | Full variant space: 1 +2026-03-27T14:02:46.9280678Z 15:02:46.927 | After settings filtering: 1 +2026-03-27T14:02:46.9293891Z 15:02:46.928 | After built-in stripping: 1 +2026-03-27T14:02:46.9299339Z 15:02:46.929 | After scriptable stripping: 1 +2026-03-27T14:02:46.9304289Z 15:02:46.930 | Processed in 0.00 seconds +2026-03-27T14:02:46.9309374Z 15:02:46.930 | Pass "" (vp) +2026-03-27T14:02:46.9314498Z 15:02:46.931 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9319505Z 15:02:46.931 | Full variant space: 1 +2026-03-27T14:02:46.9328668Z 15:02:46.932 | After settings filtering: 1 +2026-03-27T14:02:46.9335029Z 15:02:46.933 | After built-in stripping: 1 +2026-03-27T14:02:46.9341787Z 15:02:46.933 | After scriptable stripping: 1 +2026-03-27T14:02:46.9349904Z 15:02:46.934 | Processed in 0.00 seconds +2026-03-27T14:02:46.9361964Z 15:02:46.935 | Pass "" (fp) +2026-03-27T14:02:46.9369360Z 15:02:46.936 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9375790Z 15:02:46.937 | Full variant space: 1 +2026-03-27T14:02:46.9384184Z 15:02:46.937 | After settings filtering: 1 +2026-03-27T14:02:46.9392518Z 15:02:46.938 | After built-in stripping: 1 +2026-03-27T14:02:46.9398659Z 15:02:46.939 | After scriptable stripping: 1 +2026-03-27T14:02:46.9404914Z 15:02:46.940 | Processed in 0.00 seconds +2026-03-27T14:02:46.9412456Z 15:02:46.940 | Pass "" (vp) +2026-03-27T14:02:46.9417950Z 15:02:46.941 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9423712Z 15:02:46.941 | Full variant space: 1 +2026-03-27T14:02:46.9429639Z 15:02:46.942 | After settings filtering: 1 +2026-03-27T14:02:46.9435170Z 15:02:46.943 | After built-in stripping: 1 +2026-03-27T14:02:46.9441896Z 15:02:46.943 | After scriptable stripping: 1 +2026-03-27T14:02:46.9447585Z 15:02:46.944 | Processed in 0.00 seconds +2026-03-27T14:02:46.9453535Z 15:02:46.944 | Pass "" (fp) +2026-03-27T14:02:46.9458899Z 15:02:46.945 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9463951Z 15:02:46.946 | Full variant space: 1 +2026-03-27T14:02:46.9469454Z 15:02:46.946 | After settings filtering: 1 +2026-03-27T14:02:46.9474538Z 15:02:46.947 | After built-in stripping: 1 +2026-03-27T14:02:46.9479577Z 15:02:46.947 | After scriptable stripping: 1 +2026-03-27T14:02:46.9494800Z 15:02:46.949 | Processed in 0.00 seconds +2026-03-27T14:02:46.9500391Z 15:02:46.949 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.15s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9505347Z 15:02:46.950 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9511530Z 15:02:46.950 | Pass (fp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9516758Z 15:02:46.951 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9522185Z 15:02:46.951 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.14s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9527575Z 15:02:46.952 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9533001Z 15:02:46.952 | Pass (fp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9537786Z 15:02:46.953 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9543966Z 15:02:46.953 | Pass (vp, gamecore_scarlett) finished in 0.21 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.21s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9548379Z 15:02:46.954 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9554237Z 15:02:46.954 | Pass (fp, gamecore_scarlett) finished in 0.17 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9559044Z 15:02:46.955 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9565086Z 15:02:46.956 | Pass (vp, gamecore_scarlett) finished in 0.18 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.18s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9570060Z 15:02:46.956 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9576987Z 15:02:46.957 | Pass (fp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9581890Z 15:02:46.957 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9588588Z 15:02:46.958 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.15s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9593454Z 15:02:46.958 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9599043Z 15:02:46.959 | Pass (fp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9609487Z 15:02:46.959 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9611106Z 15:02:46.960 | Pass (vp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.16s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9615549Z 15:02:46.961 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9621307Z 15:02:46.961 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9626416Z 15:02:46.962 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9632429Z 15:02:46.962 | Pass (vp, gamecore_scarlett) finished in 0.18 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.18s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9653449Z 15:02:46.963 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9666333Z 15:02:46.966 | Pass (fp, gamecore_scarlett) finished in 0.17 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9673169Z 15:02:46.967 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9680610Z 15:02:46.967 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9685611Z 15:02:46.968 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9693548Z 15:02:46.968 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9699827Z 15:02:46.969 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9705140Z 15:02:46.970 | Pass (vp, gamecore_scarlett) finished in 0.22 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.22s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9712209Z 15:02:46.970 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9719191Z 15:02:46.971 | Pass (fp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9726542Z 15:02:46.972 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9732850Z 15:02:46.972 | Pass (vp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.14s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9739417Z 15:02:46.973 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9746647Z 15:02:46.974 | Pass (fp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:46.9754389Z 15:02:46.975 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:46.9761200Z 15:02:46.975 | Serialized binary data for shader Hidden/Internal-DepthNormalsTexture in 0.00s +2026-03-27T14:02:46.9773509Z 15:02:46.976 | gamecore_scarlett (total internal programs: 20, unique: 17) +2026-03-27T14:02:46.9781917Z 15:02:46.977 | Compiling shader "Hidden/Internal-ScreenSpaceShadows" +2026-03-27T14:02:46.9788471Z 15:02:46.978 | Pass "" (vp) +2026-03-27T14:02:46.9798830Z 15:02:46.979 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9805301Z 15:02:46.980 | Full variant space: 4 +2026-03-27T14:02:46.9812173Z 15:02:46.980 | After settings filtering: 4 +2026-03-27T14:02:46.9818004Z 15:02:46.981 | After built-in stripping: 4 +2026-03-27T14:02:46.9823644Z 15:02:46.981 | After scriptable stripping: 4 +2026-03-27T14:02:46.9829902Z 15:02:46.982 | Processed in 0.00 seconds +2026-03-27T14:02:46.9837009Z 15:02:46.983 | Pass "" (fp) +2026-03-27T14:02:46.9843946Z 15:02:46.983 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9848969Z 15:02:46.984 | Full variant space: 4 +2026-03-27T14:02:46.9854906Z 15:02:46.985 | After settings filtering: 4 +2026-03-27T14:02:46.9860554Z 15:02:46.985 | After built-in stripping: 4 +2026-03-27T14:02:46.9866437Z 15:02:46.986 | After scriptable stripping: 4 +2026-03-27T14:02:46.9871514Z 15:02:46.986 | Processed in 0.00 seconds +2026-03-27T14:02:46.9877070Z 15:02:46.987 | Pass "" (vp) +2026-03-27T14:02:46.9883041Z 15:02:46.987 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9889878Z 15:02:46.988 | Full variant space: 4 +2026-03-27T14:02:46.9895179Z 15:02:46.989 | After settings filtering: 4 +2026-03-27T14:02:46.9900755Z 15:02:46.989 | After built-in stripping: 4 +2026-03-27T14:02:46.9905465Z 15:02:46.990 | After scriptable stripping: 4 +2026-03-27T14:02:46.9910706Z 15:02:46.990 | Processed in 0.00 seconds +2026-03-27T14:02:46.9917577Z 15:02:46.991 | Pass "" (fp) +2026-03-27T14:02:46.9923586Z 15:02:46.991 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9930122Z 15:02:46.992 | Full variant space: 4 +2026-03-27T14:02:46.9936060Z 15:02:46.993 | After settings filtering: 4 +2026-03-27T14:02:46.9942272Z 15:02:46.993 | After built-in stripping: 4 +2026-03-27T14:02:46.9954472Z 15:02:46.994 | After scriptable stripping: 4 +2026-03-27T14:02:46.9961238Z 15:02:46.995 | Processed in 0.00 seconds +2026-03-27T14:02:46.9967392Z 15:02:46.996 | Pass "" (vp) +2026-03-27T14:02:46.9972912Z 15:02:46.996 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:46.9978672Z 15:02:46.997 | Full variant space: 4 +2026-03-27T14:02:46.9984078Z 15:02:46.998 | After settings filtering: 4 +2026-03-27T14:02:46.9989325Z 15:02:46.998 | After built-in stripping: 4 +2026-03-27T14:02:46.9995328Z 15:02:46.999 | After scriptable stripping: 4 +2026-03-27T14:02:47.0000430Z 15:02:46.999 | Processed in 0.00 seconds +2026-03-27T14:02:47.0006910Z 15:02:47.000 | Pass "" (fp) +2026-03-27T14:02:47.0013331Z 15:02:47.000 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0018865Z 15:02:47.001 | Full variant space: 4 +2026-03-27T14:02:47.0024509Z 15:02:47.002 | After settings filtering: 4 +2026-03-27T14:02:47.0030095Z 15:02:47.002 | After built-in stripping: 4 +2026-03-27T14:02:47.0035499Z 15:02:47.003 | After scriptable stripping: 4 +2026-03-27T14:02:47.0040793Z 15:02:47.003 | Processed in 0.00 seconds +2026-03-27T14:02:47.0047072Z 15:02:47.004 | Pass "" (vp) +2026-03-27T14:02:47.0053397Z 15:02:47.004 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0058981Z 15:02:47.005 | Full variant space: 4 +2026-03-27T14:02:47.0064547Z 15:02:47.006 | After settings filtering: 4 +2026-03-27T14:02:47.0070794Z 15:02:47.006 | After built-in stripping: 4 +2026-03-27T14:02:47.0077153Z 15:02:47.007 | After scriptable stripping: 4 +2026-03-27T14:02:47.0083109Z 15:02:47.007 | Processed in 0.00 seconds +2026-03-27T14:02:47.0089426Z 15:02:47.008 | Pass "" (fp) +2026-03-27T14:02:47.0110445Z 15:02:47.009 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0129034Z 15:02:47.012 | Full variant space: 4 +2026-03-27T14:02:47.0135145Z 15:02:47.013 | After settings filtering: 4 +2026-03-27T14:02:47.0142695Z 15:02:47.013 | After built-in stripping: 4 +2026-03-27T14:02:47.0150129Z 15:02:47.014 | After scriptable stripping: 4 +2026-03-27T14:02:47.0156178Z 15:02:47.015 | Processed in 0.00 seconds +2026-03-27T14:02:47.0162556Z 15:02:47.015 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.23s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0170256Z 15:02:47.016 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0178290Z 15:02:47.017 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.25s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0184541Z 15:02:47.018 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0195972Z 15:02:47.018 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.24s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0204958Z 15:02:47.020 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0218217Z 15:02:47.020 | Pass (fp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.46s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0224426Z 15:02:47.022 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0230855Z 15:02:47.022 | Pass (vp, gamecore_scarlett) finished in 0.17 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.44s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0235687Z 15:02:47.023 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0241980Z 15:02:47.023 | Pass (fp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.60s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0250389Z 15:02:47.024 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0257893Z 15:02:47.025 | Pass (vp, gamecore_scarlett) finished in 0.20 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.35s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0262971Z 15:02:47.025 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0268930Z 15:02:47.026 | Pass (fp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.33s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0274233Z 15:02:47.027 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0280189Z 15:02:47.027 | Compiling shader "Hidden/Internal-ScreenSpaceShadows" +2026-03-27T14:02:47.0286049Z 15:02:47.028 | Pass "" (vp) +2026-03-27T14:02:47.0292603Z 15:02:47.028 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0298131Z 15:02:47.029 | Full variant space: 4 +2026-03-27T14:02:47.0303864Z 15:02:47.029 | After settings filtering: 4 +2026-03-27T14:02:47.0309499Z 15:02:47.030 | After built-in stripping: 4 +2026-03-27T14:02:47.0315024Z 15:02:47.031 | After scriptable stripping: 4 +2026-03-27T14:02:47.0320869Z 15:02:47.031 | Processed in 0.00 seconds +2026-03-27T14:02:47.0327116Z 15:02:47.032 | Pass "" (fp) +2026-03-27T14:02:47.0333554Z 15:02:47.032 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0338910Z 15:02:47.033 | Full variant space: 4 +2026-03-27T14:02:47.0344423Z 15:02:47.034 | After settings filtering: 4 +2026-03-27T14:02:47.0350486Z 15:02:47.034 | After built-in stripping: 4 +2026-03-27T14:02:47.0356297Z 15:02:47.035 | After scriptable stripping: 4 +2026-03-27T14:02:47.0361830Z 15:02:47.035 | Processed in 0.00 seconds +2026-03-27T14:02:47.0367518Z 15:02:47.036 | Pass "" (vp) +2026-03-27T14:02:47.0374825Z 15:02:47.037 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0380832Z 15:02:47.037 | Full variant space: 4 +2026-03-27T14:02:47.0386546Z 15:02:47.038 | After settings filtering: 4 +2026-03-27T14:02:47.0392151Z 15:02:47.038 | After built-in stripping: 4 +2026-03-27T14:02:47.0398275Z 15:02:47.039 | After scriptable stripping: 4 +2026-03-27T14:02:47.0403722Z 15:02:47.039 | Processed in 0.00 seconds +2026-03-27T14:02:47.0422749Z 15:02:47.040 | Pass "" (fp) +2026-03-27T14:02:47.0432254Z 15:02:47.042 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0439028Z 15:02:47.043 | Full variant space: 4 +2026-03-27T14:02:47.0443474Z 15:02:47.043 | After settings filtering: 4 +2026-03-27T14:02:47.0448873Z 15:02:47.044 | After built-in stripping: 4 +2026-03-27T14:02:47.0454365Z 15:02:47.045 | After scriptable stripping: 4 +2026-03-27T14:02:47.0461540Z 15:02:47.045 | Processed in 0.00 seconds +2026-03-27T14:02:47.0468830Z 15:02:47.046 | Pass "" (vp) +2026-03-27T14:02:47.0475236Z 15:02:47.047 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0482174Z 15:02:47.047 | Full variant space: 4 +2026-03-27T14:02:47.0488577Z 15:02:47.048 | After settings filtering: 4 +2026-03-27T14:02:47.0494429Z 15:02:47.049 | After built-in stripping: 4 +2026-03-27T14:02:47.0500364Z 15:02:47.049 | After scriptable stripping: 4 +2026-03-27T14:02:47.0505556Z 15:02:47.050 | Processed in 0.00 seconds +2026-03-27T14:02:47.0510785Z 15:02:47.050 | Pass "" (fp) +2026-03-27T14:02:47.0516136Z 15:02:47.051 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0521960Z 15:02:47.051 | Full variant space: 4 +2026-03-27T14:02:47.0527369Z 15:02:47.052 | After settings filtering: 4 +2026-03-27T14:02:47.0532787Z 15:02:47.052 | After built-in stripping: 4 +2026-03-27T14:02:47.0537862Z 15:02:47.053 | After scriptable stripping: 4 +2026-03-27T14:02:47.0542801Z 15:02:47.053 | Processed in 0.00 seconds +2026-03-27T14:02:47.0548240Z 15:02:47.054 | Pass "" (vp) +2026-03-27T14:02:47.0553573Z 15:02:47.054 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0559909Z 15:02:47.055 | Full variant space: 4 +2026-03-27T14:02:47.0567115Z 15:02:47.056 | After settings filtering: 4 +2026-03-27T14:02:47.0572357Z 15:02:47.056 | After built-in stripping: 4 +2026-03-27T14:02:47.0578080Z 15:02:47.057 | After scriptable stripping: 4 +2026-03-27T14:02:47.0583709Z 15:02:47.057 | Processed in 0.00 seconds +2026-03-27T14:02:47.0588890Z 15:02:47.058 | Pass "" (fp) +2026-03-27T14:02:47.0594476Z 15:02:47.059 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0599741Z 15:02:47.059 | Full variant space: 4 +2026-03-27T14:02:47.0604982Z 15:02:47.060 | After settings filtering: 4 +2026-03-27T14:02:47.0615901Z 15:02:47.060 | After built-in stripping: 4 +2026-03-27T14:02:47.0622324Z 15:02:47.061 | After scriptable stripping: 4 +2026-03-27T14:02:47.0627389Z 15:02:47.062 | Processed in 0.00 seconds +2026-03-27T14:02:47.0633765Z 15:02:47.062 | Pass (vp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.47s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0638605Z 15:02:47.063 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0644256Z 15:02:47.063 | Pass (fp, gamecore_scarlett) finished in 0.20 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.34s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0649458Z 15:02:47.064 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0655157Z 15:02:47.065 | Pass (vp, gamecore_scarlett) finished in 0.22 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.56s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0659656Z 15:02:47.065 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0665310Z 15:02:47.066 | Pass (fp, gamecore_scarlett) finished in 0.20 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.42s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0669703Z 15:02:47.066 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0675595Z 15:02:47.067 | Pass (vp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.50s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0681594Z 15:02:47.067 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0687056Z 15:02:47.068 | Pass (fp, gamecore_scarlett) finished in 0.21 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.54s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0692741Z 15:02:47.068 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0698633Z 15:02:47.069 | Pass (vp, gamecore_scarlett) finished in 0.25 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.52s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0703844Z 15:02:47.069 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0709809Z 15:02:47.070 | Pass (fp, gamecore_scarlett) finished in 0.22 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.46s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0714648Z 15:02:47.071 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0729731Z 15:02:47.071 | Serialized binary data for shader Hidden/Internal-ScreenSpaceShadows in 0.00s +2026-03-27T14:02:47.0759353Z 15:02:47.073 | gamecore_scarlett (total internal programs: 32, unique: 20) +2026-03-27T14:02:47.0787585Z 15:02:47.076 | Compiling shader "Hidden/Internal-CombineDepthNormals" +2026-03-27T14:02:47.0795388Z 15:02:47.079 | Pass "" (vp) +2026-03-27T14:02:47.0802673Z 15:02:47.079 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0809908Z 15:02:47.080 | Full variant space: 1 +2026-03-27T14:02:47.0815963Z 15:02:47.081 | After settings filtering: 1 +2026-03-27T14:02:47.0822564Z 15:02:47.081 | After built-in stripping: 1 +2026-03-27T14:02:47.0829127Z 15:02:47.082 | After scriptable stripping: 1 +2026-03-27T14:02:47.0835140Z 15:02:47.083 | Processed in 0.00 seconds +2026-03-27T14:02:47.0840387Z 15:02:47.083 | Pass "" (fp) +2026-03-27T14:02:47.0848505Z 15:02:47.084 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0857929Z 15:02:47.085 | Full variant space: 1 +2026-03-27T14:02:47.0863599Z 15:02:47.086 | After settings filtering: 1 +2026-03-27T14:02:47.0870725Z 15:02:47.086 | After built-in stripping: 1 +2026-03-27T14:02:47.0877259Z 15:02:47.087 | After scriptable stripping: 1 +2026-03-27T14:02:47.0887938Z 15:02:47.087 | Processed in 0.00 seconds +2026-03-27T14:02:47.0895595Z 15:02:47.089 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0900624Z 15:02:47.089 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0906774Z 15:02:47.090 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:47.0912005Z 15:02:47.090 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.0917909Z 15:02:47.091 | Compiling shader "Hidden/Internal-CombineDepthNormals" +2026-03-27T14:02:47.0924326Z 15:02:47.092 | Pass "" (vp) +2026-03-27T14:02:47.0930430Z 15:02:47.092 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0936436Z 15:02:47.093 | Full variant space: 1 +2026-03-27T14:02:47.0942264Z 15:02:47.093 | After settings filtering: 1 +2026-03-27T14:02:47.0947879Z 15:02:47.094 | After built-in stripping: 1 +2026-03-27T14:02:47.0953770Z 15:02:47.094 | After scriptable stripping: 1 +2026-03-27T14:02:47.0959093Z 15:02:47.095 | Processed in 0.00 seconds +2026-03-27T14:02:47.0965090Z 15:02:47.096 | Pass "" (fp) +2026-03-27T14:02:47.0971858Z 15:02:47.096 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.0977380Z 15:02:47.097 | Full variant space: 1 +2026-03-27T14:02:47.0983682Z 15:02:47.097 | After settings filtering: 1 +2026-03-27T14:02:47.0989035Z 15:02:47.098 | After built-in stripping: 1 +2026-03-27T14:02:47.0997076Z 15:02:47.099 | After scriptable stripping: 1 +2026-03-27T14:02:47.1001264Z 15:02:47.099 | Processed in 0.00 seconds +2026-03-27T14:02:47.1008299Z 15:02:47.100 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:47.1013499Z 15:02:47.100 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.1019528Z 15:02:47.101 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:47.1027344Z 15:02:47.102 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.1037606Z 15:02:47.102 | Serialized binary data for shader Hidden/Internal-CombineDepthNormals in 0.00s +2026-03-27T14:02:47.1045329Z 15:02:47.104 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:47.1055603Z 15:02:47.104 | Compiling shader "Hidden/BlitCopy" +2026-03-27T14:02:47.1071301Z 15:02:47.105 | Pass "" (vp) +2026-03-27T14:02:47.1079525Z 15:02:47.107 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.1093431Z 15:02:47.108 | Full variant space: 1 +2026-03-27T14:02:47.1100792Z 15:02:47.109 | After settings filtering: 1 +2026-03-27T14:02:47.1108263Z 15:02:47.110 | After built-in stripping: 1 +2026-03-27T14:02:47.1114777Z 15:02:47.111 | After scriptable stripping: 1 +2026-03-27T14:02:47.1121083Z 15:02:47.111 | Processed in 0.00 seconds +2026-03-27T14:02:47.1126836Z 15:02:47.112 | Pass "" (fp) +2026-03-27T14:02:47.1132570Z 15:02:47.112 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.1138292Z 15:02:47.113 | Full variant space: 1 +2026-03-27T14:02:47.1144334Z 15:02:47.114 | After settings filtering: 1 +2026-03-27T14:02:47.1149198Z 15:02:47.114 | After built-in stripping: 1 +2026-03-27T14:02:47.1156453Z 15:02:47.115 | After scriptable stripping: 1 +2026-03-27T14:02:47.1160899Z 15:02:47.115 | Processed in 0.00 seconds +2026-03-27T14:02:47.1169174Z 15:02:47.116 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:47.1176605Z 15:02:47.117 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.1193346Z 15:02:47.118 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:47.1202216Z 15:02:47.119 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.1210050Z 15:02:47.120 | Compiling shader "Hidden/BlitCopy" +2026-03-27T14:02:47.1215985Z 15:02:47.121 | Pass "" (vp) +2026-03-27T14:02:47.1221305Z 15:02:47.121 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.1227082Z 15:02:47.122 | Full variant space: 1 +2026-03-27T14:02:47.1232629Z 15:02:47.122 | After settings filtering: 1 +2026-03-27T14:02:47.1238495Z 15:02:47.123 | After built-in stripping: 1 +2026-03-27T14:02:47.1244615Z 15:02:47.124 | After scriptable stripping: 1 +2026-03-27T14:02:47.1250900Z 15:02:47.124 | Processed in 0.00 seconds +2026-03-27T14:02:47.1256926Z 15:02:47.125 | Pass "" (fp) +2026-03-27T14:02:47.1262521Z 15:02:47.125 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.1268461Z 15:02:47.126 | Full variant space: 1 +2026-03-27T14:02:47.1274480Z 15:02:47.127 | After settings filtering: 1 +2026-03-27T14:02:47.1280790Z 15:02:47.127 | After built-in stripping: 1 +2026-03-27T14:02:47.1287075Z 15:02:47.128 | After scriptable stripping: 1 +2026-03-27T14:02:47.1292959Z 15:02:47.128 | Processed in 0.00 seconds +2026-03-27T14:02:47.5644849Z 15:02:47.540 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:47.6108953Z 15:02:47.585 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.6468763Z 15:02:47.621 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:47.6819588Z 15:02:47.655 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:47.7180781Z 15:02:47.694 | Serialized binary data for shader Hidden/BlitCopy in 0.00s +2026-03-27T14:02:47.7434443Z 15:02:47.724 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:47.7688615Z 15:02:47.751 | Compiling shader "Hidden/BlitCopyDepth" +2026-03-27T14:02:47.8072483Z 15:02:47.779 | Pass "" (vp) +2026-03-27T14:02:47.8374096Z 15:02:47.815 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:47.8736389Z 15:02:47.849 | Full variant space: 1 +2026-03-27T14:02:47.9076149Z 15:02:47.883 | After settings filtering: 1 +2026-03-27T14:02:47.9458294Z 15:02:47.915 | After built-in stripping: 1 +2026-03-27T14:02:47.9801142Z 15:02:47.955 | After scriptable stripping: 1 +2026-03-27T14:02:48.0188203Z 15:02:47.993 | Processed in 0.00 seconds +2026-03-27T14:02:48.0680984Z 15:02:48.028 | Pass "" (fp) +2026-03-27T14:02:48.0982080Z 15:02:48.076 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:48.1284833Z 15:02:48.108 | Full variant space: 1 +2026-03-27T14:02:48.1383784Z 15:02:48.135 | After settings filtering: 1 +2026-03-27T14:02:48.1409140Z 15:02:48.139 | After built-in stripping: 1 +2026-03-27T14:02:48.1417927Z 15:02:48.141 | After scriptable stripping: 1 +2026-03-27T14:02:48.1432605Z 15:02:48.142 | Processed in 0.00 seconds +2026-03-27T14:02:48.1439841Z 15:02:48.143 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:48.1450135Z 15:02:48.144 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:48.1456639Z 15:02:48.145 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:48.1461396Z 15:02:48.145 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:48.1466811Z 15:02:48.146 | Compiling shader "Hidden/BlitCopyDepth" +2026-03-27T14:02:48.1472893Z 15:02:48.146 | Pass "" (vp) +2026-03-27T14:02:48.1486625Z 15:02:48.147 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:48.1493850Z 15:02:48.148 | Full variant space: 1 +2026-03-27T14:02:48.1499609Z 15:02:48.149 | After settings filtering: 1 +2026-03-27T14:02:48.1505805Z 15:02:48.150 | After built-in stripping: 1 +2026-03-27T14:02:48.1512304Z 15:02:48.150 | After scriptable stripping: 1 +2026-03-27T14:02:48.1518219Z 15:02:48.151 | Processed in 0.00 seconds +2026-03-27T14:02:48.1535517Z 15:02:48.151 | Pass "" (fp) +2026-03-27T14:02:48.1543365Z 15:02:48.153 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:48.1549612Z 15:02:48.154 | Full variant space: 1 +2026-03-27T14:02:48.2086930Z 15:02:48.161 | After settings filtering: 1 +2026-03-27T14:02:48.2390702Z 15:02:48.216 | After built-in stripping: 1 +2026-03-27T14:02:48.2701776Z 15:02:48.248 | After scriptable stripping: 1 +2026-03-27T14:02:48.2868857Z 15:02:48.283 | Processed in 0.00 seconds +2026-03-27T14:02:48.2884030Z 15:02:48.287 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:48.3146053Z 15:02:48.290 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:48.3423157Z 15:02:48.320 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:48.3727404Z 15:02:48.350 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:48.4149736Z 15:02:48.382 | Serialized binary data for shader Hidden/BlitCopyDepth in 0.00s +2026-03-27T14:02:48.4470727Z 15:02:48.427 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:48.4877597Z 15:02:48.458 | Compiling shader "Hidden/ConvertTexture" +2026-03-27T14:02:48.5359882Z 15:02:48.496 | Pass "" (vp) +2026-03-27T14:02:48.5779438Z 15:02:48.547 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:48.6261816Z 15:02:48.588 | Full variant space: 1 +2026-03-27T14:02:48.6688220Z 15:02:48.642 | After settings filtering: 1 +2026-03-27T14:02:48.7005150Z 15:02:48.679 | After built-in stripping: 1 +2026-03-27T14:02:48.7353549Z 15:02:48.708 | After scriptable stripping: 1 +2026-03-27T14:02:48.7766746Z 15:02:48.746 | Processed in 0.00 seconds +2026-03-27T14:02:48.8046914Z 15:02:48.783 | Pass "" (fp) +2026-03-27T14:02:48.8309784Z 15:02:48.813 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:48.8598626Z 15:02:48.841 | Full variant space: 1 +2026-03-27T14:02:48.8822458Z 15:02:48.867 | After settings filtering: 1 +2026-03-27T14:02:48.9220092Z 15:02:48.887 | After built-in stripping: 1 +2026-03-27T14:02:48.9554713Z 15:02:48.930 | After scriptable stripping: 1 +2026-03-27T14:02:48.9848334Z 15:02:48.963 | Processed in 0.00 seconds +2026-03-27T14:02:49.0216984Z 15:02:48.995 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:49.0555205Z 15:02:49.031 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.0877069Z 15:02:49.064 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:49.1243581Z 15:02:49.097 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.1636707Z 15:02:49.134 | Compiling shader "Hidden/ConvertTexture" +2026-03-27T14:02:49.1982434Z 15:02:49.172 | Pass "" (vp) +2026-03-27T14:02:49.2331098Z 15:02:49.204 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.2642977Z 15:02:49.241 | Full variant space: 1 +2026-03-27T14:02:49.2952779Z 15:02:49.271 | After settings filtering: 1 +2026-03-27T14:02:49.3295278Z 15:02:49.303 | After built-in stripping: 1 +2026-03-27T14:02:49.3676408Z 15:02:49.341 | After scriptable stripping: 1 +2026-03-27T14:02:49.4015234Z 15:02:49.377 | Processed in 0.00 seconds +2026-03-27T14:02:49.4333669Z 15:02:49.410 | Pass "" (fp) +2026-03-27T14:02:49.4489576Z 15:02:49.437 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.4532095Z 15:02:49.450 | Full variant space: 1 +2026-03-27T14:02:49.4557838Z 15:02:49.454 | After settings filtering: 1 +2026-03-27T14:02:49.4580435Z 15:02:49.456 | After built-in stripping: 1 +2026-03-27T14:02:49.4600321Z 15:02:49.458 | After scriptable stripping: 1 +2026-03-27T14:02:49.4623760Z 15:02:49.460 | Processed in 0.00 seconds +2026-03-27T14:02:49.4666329Z 15:02:49.464 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:49.4673686Z 15:02:49.466 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.4681205Z 15:02:49.467 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:49.4689035Z 15:02:49.468 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.4696034Z 15:02:49.469 | Serialized binary data for shader Hidden/ConvertTexture in 0.00s +2026-03-27T14:02:49.4702438Z 15:02:49.469 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:49.4708636Z 15:02:49.470 | Compiling shader "Hidden/Internal-DeferredShading" +2026-03-27T14:02:49.4714946Z 15:02:49.471 | Pass "" (vp) +2026-03-27T14:02:49.4721373Z 15:02:49.471 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.4729088Z 15:02:49.472 | Full variant space: 94 +2026-03-27T14:02:49.4735650Z 15:02:49.473 | After settings filtering: 94 +2026-03-27T14:02:49.4742426Z 15:02:49.473 | After built-in stripping: 26 +2026-03-27T14:02:49.4749579Z 15:02:49.474 | After scriptable stripping: 26 +2026-03-27T14:02:49.4757090Z 15:02:49.475 | Processed in 0.00 seconds +2026-03-27T14:02:49.4766478Z 15:02:49.476 | Pass "" (fp) +2026-03-27T14:02:49.4773400Z 15:02:49.476 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.4780314Z 15:02:49.477 | Full variant space: 94 +2026-03-27T14:02:49.4801249Z 15:02:49.478 | After settings filtering: 94 +2026-03-27T14:02:49.4811599Z 15:02:49.480 | After built-in stripping: 26 +2026-03-27T14:02:49.4818945Z 15:02:49.481 | After scriptable stripping: 26 +2026-03-27T14:02:49.4824284Z 15:02:49.482 | Processed in 0.00 seconds +2026-03-27T14:02:49.4831456Z 15:02:49.482 | Pass "" (vp) +2026-03-27T14:02:49.4839441Z 15:02:49.483 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.4846584Z 15:02:49.484 | Full variant space: 1 +2026-03-27T14:02:49.4853765Z 15:02:49.485 | After settings filtering: 1 +2026-03-27T14:02:49.4861422Z 15:02:49.485 | After built-in stripping: 1 +2026-03-27T14:02:49.4867202Z 15:02:49.486 | After scriptable stripping: 1 +2026-03-27T14:02:49.4872711Z 15:02:49.486 | Processed in 0.00 seconds +2026-03-27T14:02:49.4878122Z 15:02:49.487 | Pass "" (fp) +2026-03-27T14:02:49.4884406Z 15:02:49.488 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.4890234Z 15:02:49.488 | Full variant space: 1 +2026-03-27T14:02:49.4896106Z 15:02:49.489 | After settings filtering: 1 +2026-03-27T14:02:49.4901438Z 15:02:49.489 | After built-in stripping: 1 +2026-03-27T14:02:49.4906953Z 15:02:49.490 | After scriptable stripping: 1 +2026-03-27T14:02:49.4911959Z 15:02:49.490 | Processed in 0.00 seconds +2026-03-27T14:02:49.4917860Z 15:02:49.491 | Pass (vp, gamecore_scarlett) finished in 0.35 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 26 variants (1.86s CPU time), skipped 0 variants. +2026-03-27T14:02:49.4922683Z 15:02:49.491 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.4928757Z 15:02:49.492 | Pass (fp, gamecore_scarlett) finished in 0.46 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 26 variants (2.34s CPU time), skipped 0 variants. +2026-03-27T14:02:49.4933460Z 15:02:49.492 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.4939543Z 15:02:49.493 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:49.4956646Z 15:02:49.494 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.4965912Z 15:02:49.495 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:49.4974904Z 15:02:49.497 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.4980537Z 15:02:49.497 | Compiling shader "Hidden/Internal-DeferredShading" +2026-03-27T14:02:49.4986810Z 15:02:49.498 | Pass "" (vp) +2026-03-27T14:02:49.4992444Z 15:02:49.498 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.4998740Z 15:02:49.499 | Full variant space: 94 +2026-03-27T14:02:49.5003615Z 15:02:49.499 | After settings filtering: 94 +2026-03-27T14:02:49.5009205Z 15:02:49.500 | After built-in stripping: 26 +2026-03-27T14:02:49.5014753Z 15:02:49.501 | After scriptable stripping: 26 +2026-03-27T14:02:49.5020196Z 15:02:49.501 | Processed in 0.00 seconds +2026-03-27T14:02:49.5025907Z 15:02:49.502 | Pass "" (fp) +2026-03-27T14:02:49.5033223Z 15:02:49.502 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.5309373Z 15:02:49.506 | Full variant space: 94 +2026-03-27T14:02:49.5434019Z 15:02:49.538 | After settings filtering: 94 +2026-03-27T14:02:49.5443979Z 15:02:49.543 | After built-in stripping: 26 +2026-03-27T14:02:49.5452243Z 15:02:49.544 | After scriptable stripping: 26 +2026-03-27T14:02:49.5457278Z 15:02:49.545 | Processed in 0.00 seconds +2026-03-27T14:02:49.5463172Z 15:02:49.546 | Pass "" (vp) +2026-03-27T14:02:49.5470716Z 15:02:49.546 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.5477847Z 15:02:49.547 | Full variant space: 1 +2026-03-27T14:02:49.5484125Z 15:02:49.548 | After settings filtering: 1 +2026-03-27T14:02:49.5491089Z 15:02:49.548 | After built-in stripping: 1 +2026-03-27T14:02:49.5502416Z 15:02:49.549 | After scriptable stripping: 1 +2026-03-27T14:02:49.5512191Z 15:02:49.550 | Processed in 0.00 seconds +2026-03-27T14:02:49.5523677Z 15:02:49.551 | Pass "" (fp) +2026-03-27T14:02:49.5524113Z 15:02:49.552 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.5531438Z 15:02:49.552 | Full variant space: 1 +2026-03-27T14:02:49.5537838Z 15:02:49.553 | After settings filtering: 1 +2026-03-27T14:02:49.5547425Z 15:02:49.553 | After built-in stripping: 1 +2026-03-27T14:02:49.5597261Z 15:02:49.555 | After scriptable stripping: 1 +2026-03-27T14:02:49.5607342Z 15:02:49.560 | Processed in 0.00 seconds +2026-03-27T14:02:49.5614324Z 15:02:49.560 | Pass (vp, gamecore_scarlett) finished in 0.73 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 26 variants (4.12s CPU time), skipped 0 variants. +2026-03-27T14:02:49.5628341Z 15:02:49.562 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.5640197Z 15:02:49.563 | Pass (fp, gamecore_scarlett) finished in 0.68 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 26 variants (3.48s CPU time), skipped 0 variants. +2026-03-27T14:02:49.5648035Z 15:02:49.564 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.5654733Z 15:02:49.564 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:49.5660391Z 15:02:49.565 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.5666943Z 15:02:49.566 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:49.5672388Z 15:02:49.566 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.5677936Z 15:02:49.567 | Serialized binary data for shader Hidden/Internal-DeferredShading in 0.00s +2026-03-27T14:02:49.5683498Z 15:02:49.567 | gamecore_scarlett (total internal programs: 54, unique: 54) +2026-03-27T14:02:49.5694482Z 15:02:49.569 | Compiling shader "Hidden/Internal-DeferredReflections" +2026-03-27T14:02:49.5700018Z 15:02:49.569 | Pass "" (vp) +2026-03-27T14:02:49.5705330Z 15:02:49.570 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.5710764Z 15:02:49.570 | Full variant space: 1 +2026-03-27T14:02:49.5717979Z 15:02:49.571 | After settings filtering: 1 +2026-03-27T14:02:49.5728752Z 15:02:49.572 | After built-in stripping: 1 +2026-03-27T14:02:49.5734347Z 15:02:49.573 | After scriptable stripping: 1 +2026-03-27T14:02:49.5741319Z 15:02:49.573 | Processed in 0.00 seconds +2026-03-27T14:02:49.5744864Z 15:02:49.574 | Pass "" (fp) +2026-03-27T14:02:49.5750361Z 15:02:49.574 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.5755964Z 15:02:49.575 | Full variant space: 1 +2026-03-27T14:02:49.5761362Z 15:02:49.575 | After settings filtering: 1 +2026-03-27T14:02:49.5767122Z 15:02:49.576 | After built-in stripping: 1 +2026-03-27T14:02:49.5772600Z 15:02:49.576 | After scriptable stripping: 1 +2026-03-27T14:02:49.5778164Z 15:02:49.577 | Processed in 0.00 seconds +2026-03-27T14:02:49.5783691Z 15:02:49.577 | Pass "" (vp) +2026-03-27T14:02:49.5788991Z 15:02:49.578 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.5794282Z 15:02:49.579 | Full variant space: 2 +2026-03-27T14:02:49.5799585Z 15:02:49.579 | After settings filtering: 2 +2026-03-27T14:02:49.5804804Z 15:02:49.580 | After built-in stripping: 2 +2026-03-27T14:02:49.5810228Z 15:02:49.580 | After scriptable stripping: 2 +2026-03-27T14:02:49.5852051Z 15:02:49.581 | Processed in 0.00 seconds +2026-03-27T14:02:49.6253898Z 15:02:49.595 | Pass "" (fp) +2026-03-27T14:02:49.6591617Z 15:02:49.633 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.6807048Z 15:02:49.667 | Full variant space: 2 +2026-03-27T14:02:49.6901138Z 15:02:49.686 | After settings filtering: 2 +2026-03-27T14:02:49.6910993Z 15:02:49.690 | After built-in stripping: 2 +2026-03-27T14:02:49.6926868Z 15:02:49.692 | After scriptable stripping: 2 +2026-03-27T14:02:49.6934228Z 15:02:49.692 | Processed in 0.00 seconds +2026-03-27T14:02:49.6941492Z 15:02:49.693 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:49.6946989Z 15:02:49.694 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.6953807Z 15:02:49.694 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:49.6960125Z 15:02:49.695 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.6971267Z 15:02:49.696 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:49.6977404Z 15:02:49.697 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.6984946Z 15:02:49.697 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:49.7359022Z 15:02:49.716 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.7392390Z 15:02:49.737 | Compiling shader "Hidden/Internal-DeferredReflections" +2026-03-27T14:02:49.7407002Z 15:02:49.740 | Pass "" (vp) +2026-03-27T14:02:49.7413993Z 15:02:49.741 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.7428352Z 15:02:49.741 | Full variant space: 1 +2026-03-27T14:02:49.7486973Z 15:02:49.748 | After settings filtering: 1 +2026-03-27T14:02:49.7493325Z 15:02:49.748 | After built-in stripping: 1 +2026-03-27T14:02:49.7499562Z 15:02:49.749 | After scriptable stripping: 1 +2026-03-27T14:02:49.7506400Z 15:02:49.750 | Processed in 0.00 seconds +2026-03-27T14:02:49.7512416Z 15:02:49.750 | Pass "" (fp) +2026-03-27T14:02:49.7518855Z 15:02:49.751 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.7524738Z 15:02:49.752 | Full variant space: 1 +2026-03-27T14:02:49.7532672Z 15:02:49.752 | After settings filtering: 1 +2026-03-27T14:02:49.7539480Z 15:02:49.753 | After built-in stripping: 1 +2026-03-27T14:02:49.7545555Z 15:02:49.754 | After scriptable stripping: 1 +2026-03-27T14:02:49.7551886Z 15:02:49.754 | Processed in 0.00 seconds +2026-03-27T14:02:49.7556221Z 15:02:49.755 | Pass "" (vp) +2026-03-27T14:02:49.7561833Z 15:02:49.755 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.7567790Z 15:02:49.756 | Full variant space: 2 +2026-03-27T14:02:49.7573832Z 15:02:49.756 | After settings filtering: 2 +2026-03-27T14:02:49.7579309Z 15:02:49.757 | After built-in stripping: 2 +2026-03-27T14:02:49.7584616Z 15:02:49.758 | After scriptable stripping: 2 +2026-03-27T14:02:49.7593313Z 15:02:49.758 | Processed in 0.00 seconds +2026-03-27T14:02:49.7599093Z 15:02:49.759 | Pass "" (fp) +2026-03-27T14:02:49.7604622Z 15:02:49.760 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.7610329Z 15:02:49.760 | Full variant space: 2 +2026-03-27T14:02:49.7615340Z 15:02:49.761 | After settings filtering: 2 +2026-03-27T14:02:49.7620582Z 15:02:49.761 | After built-in stripping: 2 +2026-03-27T14:02:49.7629712Z 15:02:49.762 | After scriptable stripping: 2 +2026-03-27T14:02:49.7635154Z 15:02:49.763 | Processed in 0.00 seconds +2026-03-27T14:02:49.7640900Z 15:02:49.763 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:49.7646929Z 15:02:49.764 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.7653472Z 15:02:49.764 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. +2026-03-27T14:02:49.7658997Z 15:02:49.765 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.7664621Z 15:02:49.766 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.17s CPU time), skipped 0 variants. +2026-03-27T14:02:49.7671732Z 15:02:49.766 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.7678122Z 15:02:49.767 | Pass (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:49.7683763Z 15:02:49.767 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.7689261Z 15:02:49.768 | Serialized binary data for shader Hidden/Internal-DeferredReflections in 0.00s +2026-03-27T14:02:49.7695348Z 15:02:49.769 | gamecore_scarlett (total internal programs: 6, unique: 6) +2026-03-27T14:02:49.7749370Z 15:02:49.769 | Compiling shader "Hidden/Internal-MotionVectors" +2026-03-27T14:02:49.8068260Z 15:02:49.782 | Pass "" (vp) +2026-03-27T14:02:49.8325452Z 15:02:49.815 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.8471858Z 15:02:49.839 | Full variant space: 1 +2026-03-27T14:02:49.8513319Z 15:02:49.849 | After settings filtering: 1 +2026-03-27T14:02:49.8546190Z 15:02:49.853 | After built-in stripping: 1 +2026-03-27T14:02:49.8554243Z 15:02:49.854 | After scriptable stripping: 1 +2026-03-27T14:02:49.8559496Z 15:02:49.855 | Processed in 0.00 seconds +2026-03-27T14:02:49.8565220Z 15:02:49.856 | Pass "" (fp) +2026-03-27T14:02:49.8572218Z 15:02:49.856 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.8581837Z 15:02:49.857 | Full variant space: 1 +2026-03-27T14:02:49.8589253Z 15:02:49.858 | After settings filtering: 1 +2026-03-27T14:02:49.8596069Z 15:02:49.859 | After built-in stripping: 1 +2026-03-27T14:02:49.8602525Z 15:02:49.859 | After scriptable stripping: 1 +2026-03-27T14:02:49.8612369Z 15:02:49.860 | Processed in 0.00 seconds +2026-03-27T14:02:49.8620991Z 15:02:49.861 | Pass "" (vp) +2026-03-27T14:02:49.8627170Z 15:02:49.862 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.8632526Z 15:02:49.862 | Full variant space: 1 +2026-03-27T14:02:49.8638857Z 15:02:49.863 | After settings filtering: 1 +2026-03-27T14:02:49.8643794Z 15:02:49.864 | After built-in stripping: 1 +2026-03-27T14:02:49.8650320Z 15:02:49.864 | After scriptable stripping: 1 +2026-03-27T14:02:49.8656298Z 15:02:49.865 | Processed in 0.00 seconds +2026-03-27T14:02:49.8661681Z 15:02:49.865 | Pass "" (fp) +2026-03-27T14:02:49.8674203Z 15:02:49.866 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.8679960Z 15:02:49.867 | Full variant space: 1 +2026-03-27T14:02:49.8685112Z 15:02:49.868 | After settings filtering: 1 +2026-03-27T14:02:49.8691253Z 15:02:49.868 | After built-in stripping: 1 +2026-03-27T14:02:49.8698699Z 15:02:49.869 | After scriptable stripping: 1 +2026-03-27T14:02:49.8707350Z 15:02:49.870 | Processed in 0.00 seconds +2026-03-27T14:02:49.8715888Z 15:02:49.871 | Pass "" (vp) +2026-03-27T14:02:49.8727753Z 15:02:49.872 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.8737000Z 15:02:49.873 | Full variant space: 1 +2026-03-27T14:02:49.8743240Z 15:02:49.873 | After settings filtering: 1 +2026-03-27T14:02:49.8749463Z 15:02:49.874 | After built-in stripping: 1 +2026-03-27T14:02:49.8755989Z 15:02:49.875 | After scriptable stripping: 1 +2026-03-27T14:02:49.8763185Z 15:02:49.875 | Processed in 0.00 seconds +2026-03-27T14:02:49.8770106Z 15:02:49.876 | Pass "" (fp) +2026-03-27T14:02:49.8776795Z 15:02:49.877 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.8782436Z 15:02:49.877 | Full variant space: 1 +2026-03-27T14:02:49.8787956Z 15:02:49.878 | After settings filtering: 1 +2026-03-27T14:02:49.8793996Z 15:02:49.879 | After built-in stripping: 1 +2026-03-27T14:02:49.8800033Z 15:02:49.879 | After scriptable stripping: 1 +2026-03-27T14:02:49.8805455Z 15:02:49.880 | Processed in 0.00 seconds +2026-03-27T14:02:49.8813374Z 15:02:49.880 | Pass (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:49.8818252Z 15:02:49.881 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.8824433Z 15:02:49.882 | Pass (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:49.8833530Z 15:02:49.882 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.8840107Z 15:02:49.883 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:49.8845169Z 15:02:49.884 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.8851813Z 15:02:49.884 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:49.8856623Z 15:02:49.885 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.8866779Z 15:02:49.885 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:49.8872038Z 15:02:49.886 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.8878530Z 15:02:49.887 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:49.8883388Z 15:02:49.887 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.8889743Z 15:02:49.888 | Compiling shader "Hidden/Internal-MotionVectors" +2026-03-27T14:02:49.8895128Z 15:02:49.889 | Pass "" (vp) +2026-03-27T14:02:49.8901350Z 15:02:49.889 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.8905990Z 15:02:49.890 | Full variant space: 1 +2026-03-27T14:02:49.8911325Z 15:02:49.890 | After settings filtering: 1 +2026-03-27T14:02:49.8917646Z 15:02:49.891 | After built-in stripping: 1 +2026-03-27T14:02:49.8923498Z 15:02:49.891 | After scriptable stripping: 1 +2026-03-27T14:02:49.8929371Z 15:02:49.892 | Processed in 0.00 seconds +2026-03-27T14:02:49.8935136Z 15:02:49.893 | Pass "" (fp) +2026-03-27T14:02:49.8940676Z 15:02:49.893 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.8946069Z 15:02:49.894 | Full variant space: 1 +2026-03-27T14:02:49.8951946Z 15:02:49.894 | After settings filtering: 1 +2026-03-27T14:02:49.8957504Z 15:02:49.895 | After built-in stripping: 1 +2026-03-27T14:02:49.8963400Z 15:02:49.895 | After scriptable stripping: 1 +2026-03-27T14:02:49.8969186Z 15:02:49.896 | Processed in 0.00 seconds +2026-03-27T14:02:49.8974782Z 15:02:49.897 | Pass "" (vp) +2026-03-27T14:02:49.8986472Z 15:02:49.897 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.8994002Z 15:02:49.898 | Full variant space: 1 +2026-03-27T14:02:49.9001065Z 15:02:49.899 | After settings filtering: 1 +2026-03-27T14:02:49.9008770Z 15:02:49.900 | After built-in stripping: 1 +2026-03-27T14:02:49.9018887Z 15:02:49.901 | After scriptable stripping: 1 +2026-03-27T14:02:49.9025392Z 15:02:49.902 | Processed in 0.00 seconds +2026-03-27T14:02:49.9030909Z 15:02:49.902 | Pass "" (fp) +2026-03-27T14:02:49.9038123Z 15:02:49.903 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.9043649Z 15:02:49.903 | Full variant space: 1 +2026-03-27T14:02:49.9049128Z 15:02:49.904 | After settings filtering: 1 +2026-03-27T14:02:49.9055072Z 15:02:49.905 | After built-in stripping: 1 +2026-03-27T14:02:49.9060888Z 15:02:49.905 | After scriptable stripping: 1 +2026-03-27T14:02:49.9066593Z 15:02:49.906 | Processed in 0.00 seconds +2026-03-27T14:02:49.9071940Z 15:02:49.906 | Pass "" (vp) +2026-03-27T14:02:49.9076849Z 15:02:49.907 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.9083464Z 15:02:49.907 | Full variant space: 1 +2026-03-27T14:02:49.9090157Z 15:02:49.908 | After settings filtering: 1 +2026-03-27T14:02:49.9095543Z 15:02:49.909 | After built-in stripping: 1 +2026-03-27T14:02:49.9101352Z 15:02:49.909 | After scriptable stripping: 1 +2026-03-27T14:02:49.9107245Z 15:02:49.910 | Processed in 0.00 seconds +2026-03-27T14:02:49.9112920Z 15:02:49.910 | Pass "" (fp) +2026-03-27T14:02:49.9119113Z 15:02:49.911 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.9124992Z 15:02:49.912 | Full variant space: 1 +2026-03-27T14:02:49.9132036Z 15:02:49.912 | After settings filtering: 1 +2026-03-27T14:02:49.9143946Z 15:02:49.913 | After built-in stripping: 1 +2026-03-27T14:02:49.9149844Z 15:02:49.914 | After scriptable stripping: 1 +2026-03-27T14:02:49.9155683Z 15:02:49.915 | Processed in 0.00 seconds +2026-03-27T14:02:49.9161969Z 15:02:49.915 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. +2026-03-27T14:02:49.9169473Z 15:02:49.916 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.9176227Z 15:02:49.917 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:49.9184591Z 15:02:49.918 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.9191077Z 15:02:49.918 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:49.9196014Z 15:02:49.919 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.9202530Z 15:02:49.919 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:49.9207267Z 15:02:49.920 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.9218103Z 15:02:49.920 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:49.9219091Z 15:02:49.921 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.9224417Z 15:02:49.921 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:49.9228712Z 15:02:49.922 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.9235774Z 15:02:49.923 | Serialized binary data for shader Hidden/Internal-MotionVectors in 0.00s +2026-03-27T14:02:49.9241450Z 15:02:49.923 | gamecore_scarlett (total internal programs: 6, unique: 5) +2026-03-27T14:02:49.9247460Z 15:02:49.924 | Compiling shader "Hidden/Internal-Flare" +2026-03-27T14:02:49.9253346Z 15:02:49.924 | Pass "" (vp) +2026-03-27T14:02:49.9258804Z 15:02:49.925 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.9264480Z 15:02:49.926 | Full variant space: 1 +2026-03-27T14:02:49.9273996Z 15:02:49.927 | After settings filtering: 1 +2026-03-27T14:02:49.9279520Z 15:02:49.927 | After built-in stripping: 1 +2026-03-27T14:02:49.9285298Z 15:02:49.928 | After scriptable stripping: 1 +2026-03-27T14:02:49.9326306Z 15:02:49.928 | Processed in 0.00 seconds +2026-03-27T14:02:49.9343997Z 15:02:49.934 | Pass "" (fp) +2026-03-27T14:02:49.9349783Z 15:02:49.934 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.9357812Z 15:02:49.935 | Full variant space: 1 +2026-03-27T14:02:49.9363409Z 15:02:49.935 | After settings filtering: 1 +2026-03-27T14:02:49.9370084Z 15:02:49.936 | After built-in stripping: 1 +2026-03-27T14:02:49.9378138Z 15:02:49.937 | After scriptable stripping: 1 +2026-03-27T14:02:49.9385122Z 15:02:49.938 | Processed in 0.00 seconds +2026-03-27T14:02:49.9391460Z 15:02:49.938 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:49.9396712Z 15:02:49.939 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.9402993Z 15:02:49.939 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:49.9409344Z 15:02:49.940 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:49.9415407Z 15:02:49.941 | Compiling shader "Hidden/Internal-Flare" +2026-03-27T14:02:49.9421033Z 15:02:49.941 | Pass "" (vp) +2026-03-27T14:02:49.9427012Z 15:02:49.942 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.9432483Z 15:02:49.942 | Full variant space: 1 +2026-03-27T14:02:49.9438593Z 15:02:49.943 | After settings filtering: 1 +2026-03-27T14:02:49.9444704Z 15:02:49.944 | After built-in stripping: 1 +2026-03-27T14:02:49.9459810Z 15:02:49.944 | After scriptable stripping: 1 +2026-03-27T14:02:49.9465946Z 15:02:49.946 | Processed in 0.00 seconds +2026-03-27T14:02:49.9471469Z 15:02:49.946 | Pass "" (fp) +2026-03-27T14:02:49.9477311Z 15:02:49.947 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:49.9483246Z 15:02:49.947 | Full variant space: 1 +2026-03-27T14:02:49.9489759Z 15:02:49.948 | After settings filtering: 1 +2026-03-27T14:02:49.9494594Z 15:02:49.949 | After built-in stripping: 1 +2026-03-27T14:02:49.9500363Z 15:02:49.949 | After scriptable stripping: 1 +2026-03-27T14:02:49.9506241Z 15:02:49.950 | Processed in 0.00 seconds +2026-03-27T14:02:50.3666249Z 15:02:50.365 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:50.3674552Z 15:02:50.367 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.3684481Z 15:02:50.367 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:50.3693795Z 15:02:50.368 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.3700358Z 15:02:50.369 | Serialized binary data for shader Hidden/Internal-Flare in 0.00s +2026-03-27T14:02:50.3705911Z 15:02:50.370 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:50.3712036Z 15:02:50.370 | Compiling shader "Hidden/Internal-Halo" +2026-03-27T14:02:50.3717382Z 15:02:50.371 | Pass "" (vp) +2026-03-27T14:02:50.3723612Z 15:02:50.372 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.3731877Z 15:02:50.372 | Full variant space: 4 +2026-03-27T14:02:50.3740797Z 15:02:50.373 | After settings filtering: 4 +2026-03-27T14:02:50.3749300Z 15:02:50.374 | After built-in stripping: 1 +2026-03-27T14:02:50.3759556Z 15:02:50.375 | After scriptable stripping: 1 +2026-03-27T14:02:50.3767407Z 15:02:50.376 | Processed in 0.00 seconds +2026-03-27T14:02:50.3775435Z 15:02:50.376 | Pass "" (fp) +2026-03-27T14:02:50.3782733Z 15:02:50.377 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.3790385Z 15:02:50.378 | Full variant space: 4 +2026-03-27T14:02:50.3798049Z 15:02:50.379 | After settings filtering: 4 +2026-03-27T14:02:50.3805206Z 15:02:50.379 | After built-in stripping: 1 +2026-03-27T14:02:50.3824342Z 15:02:50.381 | After scriptable stripping: 1 +2026-03-27T14:02:50.3832911Z 15:02:50.382 | Processed in 0.00 seconds +2026-03-27T14:02:50.3841761Z 15:02:50.383 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.3868910Z 15:02:50.386 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.3884475Z 15:02:50.387 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.3892067Z 15:02:50.388 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.3898451Z 15:02:50.389 | Compiling shader "Hidden/Internal-Halo" +2026-03-27T14:02:50.3904705Z 15:02:50.390 | Pass "" (vp) +2026-03-27T14:02:50.3912473Z 15:02:50.390 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.3921805Z 15:02:50.391 | Full variant space: 4 +2026-03-27T14:02:50.3928583Z 15:02:50.392 | After settings filtering: 4 +2026-03-27T14:02:50.3936859Z 15:02:50.393 | After built-in stripping: 1 +2026-03-27T14:02:50.3943266Z 15:02:50.393 | After scriptable stripping: 1 +2026-03-27T14:02:50.3948620Z 15:02:50.394 | Processed in 0.00 seconds +2026-03-27T14:02:50.3958799Z 15:02:50.395 | Pass "" (fp) +2026-03-27T14:02:50.3973664Z 15:02:50.396 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.3981574Z 15:02:50.397 | Full variant space: 4 +2026-03-27T14:02:50.3990144Z 15:02:50.398 | After settings filtering: 4 +2026-03-27T14:02:50.3996355Z 15:02:50.399 | After built-in stripping: 1 +2026-03-27T14:02:50.4002500Z 15:02:50.399 | After scriptable stripping: 1 +2026-03-27T14:02:50.4012577Z 15:02:50.400 | Processed in 0.00 seconds +2026-03-27T14:02:50.4021908Z 15:02:50.401 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4029593Z 15:02:50.402 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4035814Z 15:02:50.403 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4042731Z 15:02:50.403 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4048508Z 15:02:50.404 | Serialized binary data for shader Hidden/Internal-Halo in 0.00s +2026-03-27T14:02:50.4053800Z 15:02:50.404 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:50.4059090Z 15:02:50.405 | Compiling shader "Hidden/BlitCopyWithDepth" +2026-03-27T14:02:50.4067133Z 15:02:50.406 | Pass "" (vp) +2026-03-27T14:02:50.4073082Z 15:02:50.406 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4078483Z 15:02:50.407 | Full variant space: 1 +2026-03-27T14:02:50.4083921Z 15:02:50.407 | After settings filtering: 1 +2026-03-27T14:02:50.4091667Z 15:02:50.408 | After built-in stripping: 1 +2026-03-27T14:02:50.4098604Z 15:02:50.409 | After scriptable stripping: 1 +2026-03-27T14:02:50.4104634Z 15:02:50.410 | Processed in 0.00 seconds +2026-03-27T14:02:50.4109851Z 15:02:50.410 | Pass "" (fp) +2026-03-27T14:02:50.4115016Z 15:02:50.411 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4122192Z 15:02:50.411 | Full variant space: 1 +2026-03-27T14:02:50.4127752Z 15:02:50.412 | After settings filtering: 1 +2026-03-27T14:02:50.4133175Z 15:02:50.412 | After built-in stripping: 1 +2026-03-27T14:02:50.4139476Z 15:02:50.413 | After scriptable stripping: 1 +2026-03-27T14:02:50.4145049Z 15:02:50.414 | Processed in 0.00 seconds +2026-03-27T14:02:50.4150750Z 15:02:50.414 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4160734Z 15:02:50.415 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4172157Z 15:02:50.416 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4180959Z 15:02:50.417 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4189356Z 15:02:50.418 | Compiling shader "Hidden/BlitCopyWithDepth" +2026-03-27T14:02:50.4205746Z 15:02:50.419 | Pass "" (vp) +2026-03-27T14:02:50.4215896Z 15:02:50.420 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4225015Z 15:02:50.422 | Full variant space: 1 +2026-03-27T14:02:50.4232626Z 15:02:50.422 | After settings filtering: 1 +2026-03-27T14:02:50.4239449Z 15:02:50.423 | After built-in stripping: 1 +2026-03-27T14:02:50.4247283Z 15:02:50.424 | After scriptable stripping: 1 +2026-03-27T14:02:50.4255622Z 15:02:50.425 | Processed in 0.00 seconds +2026-03-27T14:02:50.4264474Z 15:02:50.425 | Pass "" (fp) +2026-03-27T14:02:50.4271895Z 15:02:50.426 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4294809Z 15:02:50.427 | Full variant space: 1 +2026-03-27T14:02:50.4336495Z 15:02:50.433 | After settings filtering: 1 +2026-03-27T14:02:50.4345987Z 15:02:50.434 | After built-in stripping: 1 +2026-03-27T14:02:50.4352698Z 15:02:50.434 | After scriptable stripping: 1 +2026-03-27T14:02:50.4362347Z 15:02:50.435 | Processed in 0.00 seconds +2026-03-27T14:02:50.4376084Z 15:02:50.436 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4399269Z 15:02:50.438 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4409851Z 15:02:50.440 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4414210Z 15:02:50.440 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4420787Z 15:02:50.441 | Serialized binary data for shader Hidden/BlitCopyWithDepth in 0.00s +2026-03-27T14:02:50.4431485Z 15:02:50.442 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:50.4446957Z 15:02:50.443 | Compiling shader "Hidden/BlitToDepth" +2026-03-27T14:02:50.4459413Z 15:02:50.445 | Pass "" (vp) +2026-03-27T14:02:50.4473987Z 15:02:50.446 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4490392Z 15:02:50.448 | Full variant space: 1 +2026-03-27T14:02:50.4502672Z 15:02:50.449 | After settings filtering: 1 +2026-03-27T14:02:50.4511895Z 15:02:50.450 | After built-in stripping: 1 +2026-03-27T14:02:50.4521259Z 15:02:50.451 | After scriptable stripping: 1 +2026-03-27T14:02:50.4530151Z 15:02:50.452 | Processed in 0.00 seconds +2026-03-27T14:02:50.4540022Z 15:02:50.453 | Pass "" (fp) +2026-03-27T14:02:50.4552210Z 15:02:50.454 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4563907Z 15:02:50.455 | Full variant space: 1 +2026-03-27T14:02:50.4580325Z 15:02:50.457 | After settings filtering: 1 +2026-03-27T14:02:50.4598291Z 15:02:50.458 | After built-in stripping: 1 +2026-03-27T14:02:50.4610591Z 15:02:50.460 | After scriptable stripping: 1 +2026-03-27T14:02:50.4620808Z 15:02:50.461 | Processed in 0.00 seconds +2026-03-27T14:02:50.4631403Z 15:02:50.462 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4638389Z 15:02:50.463 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4649731Z 15:02:50.464 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4658182Z 15:02:50.465 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4667278Z 15:02:50.466 | Compiling shader "Hidden/BlitToDepth" +2026-03-27T14:02:50.4675267Z 15:02:50.466 | Pass "" (vp) +2026-03-27T14:02:50.4681385Z 15:02:50.467 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4688663Z 15:02:50.468 | Full variant space: 1 +2026-03-27T14:02:50.4698151Z 15:02:50.469 | After settings filtering: 1 +2026-03-27T14:02:50.4706221Z 15:02:50.470 | After built-in stripping: 1 +2026-03-27T14:02:50.4713513Z 15:02:50.470 | After scriptable stripping: 1 +2026-03-27T14:02:50.4718962Z 15:02:50.471 | Processed in 0.00 seconds +2026-03-27T14:02:50.4724607Z 15:02:50.472 | Pass "" (fp) +2026-03-27T14:02:50.4730851Z 15:02:50.472 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4740396Z 15:02:50.473 | Full variant space: 1 +2026-03-27T14:02:50.4746285Z 15:02:50.474 | After settings filtering: 1 +2026-03-27T14:02:50.4752089Z 15:02:50.474 | After built-in stripping: 1 +2026-03-27T14:02:50.4757757Z 15:02:50.475 | After scriptable stripping: 1 +2026-03-27T14:02:50.4763679Z 15:02:50.475 | Processed in 0.00 seconds +2026-03-27T14:02:50.4771045Z 15:02:50.476 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4775912Z 15:02:50.477 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4780841Z 15:02:50.477 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4788277Z 15:02:50.478 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4794897Z 15:02:50.479 | Serialized binary data for shader Hidden/BlitToDepth in 0.00s +2026-03-27T14:02:50.4799762Z 15:02:50.479 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:50.4806465Z 15:02:50.480 | Compiling shader "Hidden/BlitToDepth_MSAA" +2026-03-27T14:02:50.4812601Z 15:02:50.480 | Pass "" (vp) +2026-03-27T14:02:50.4818719Z 15:02:50.481 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4824382Z 15:02:50.482 | Full variant space: 1 +2026-03-27T14:02:50.4830248Z 15:02:50.482 | After settings filtering: 1 +2026-03-27T14:02:50.4835983Z 15:02:50.483 | After built-in stripping: 1 +2026-03-27T14:02:50.4841809Z 15:02:50.483 | After scriptable stripping: 1 +2026-03-27T14:02:50.4847622Z 15:02:50.484 | Processed in 0.00 seconds +2026-03-27T14:02:50.4852988Z 15:02:50.484 | Pass "" (fp) +2026-03-27T14:02:50.4858979Z 15:02:50.485 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4864857Z 15:02:50.486 | Full variant space: 1 +2026-03-27T14:02:50.4870576Z 15:02:50.486 | After settings filtering: 1 +2026-03-27T14:02:50.4876338Z 15:02:50.487 | After built-in stripping: 1 +2026-03-27T14:02:50.4882622Z 15:02:50.487 | After scriptable stripping: 1 +2026-03-27T14:02:50.4891517Z 15:02:50.488 | Processed in 0.00 seconds +2026-03-27T14:02:50.4900038Z 15:02:50.489 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4907774Z 15:02:50.490 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4916438Z 15:02:50.491 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.4923709Z 15:02:50.491 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.4931933Z 15:02:50.492 | Compiling shader "Hidden/BlitToDepth_MSAA" +2026-03-27T14:02:50.4937273Z 15:02:50.493 | Pass "" (vp) +2026-03-27T14:02:50.4943269Z 15:02:50.494 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4949055Z 15:02:50.494 | Full variant space: 1 +2026-03-27T14:02:50.4955079Z 15:02:50.495 | After settings filtering: 1 +2026-03-27T14:02:50.4960944Z 15:02:50.495 | After built-in stripping: 1 +2026-03-27T14:02:50.4967893Z 15:02:50.496 | After scriptable stripping: 1 +2026-03-27T14:02:50.4973674Z 15:02:50.496 | Processed in 0.00 seconds +2026-03-27T14:02:50.4979336Z 15:02:50.497 | Pass "" (fp) +2026-03-27T14:02:50.4985649Z 15:02:50.498 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.4991713Z 15:02:50.498 | Full variant space: 1 +2026-03-27T14:02:50.4997305Z 15:02:50.499 | After settings filtering: 1 +2026-03-27T14:02:50.5001594Z 15:02:50.499 | After built-in stripping: 1 +2026-03-27T14:02:50.5008201Z 15:02:50.500 | After scriptable stripping: 1 +2026-03-27T14:02:50.5016991Z 15:02:50.501 | Processed in 0.00 seconds +2026-03-27T14:02:50.5026234Z 15:02:50.502 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:50.5033498Z 15:02:50.502 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.5084664Z 15:02:50.503 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:50.5097435Z 15:02:50.509 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.5107195Z 15:02:50.510 | Serialized binary data for shader Hidden/BlitToDepth_MSAA in 0.00s +2026-03-27T14:02:50.5123029Z 15:02:50.511 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:50.5134249Z 15:02:50.512 | Compiling shader "Hidden/BlitCopyHDRTonemap" +2026-03-27T14:02:50.5143298Z 15:02:50.513 | Pass "" (vp) +2026-03-27T14:02:50.5152428Z 15:02:50.514 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.5158479Z 15:02:50.515 | Full variant space: 1 +2026-03-27T14:02:50.5164261Z 15:02:50.516 | After settings filtering: 1 +2026-03-27T14:02:50.5170722Z 15:02:50.516 | After built-in stripping: 1 +2026-03-27T14:02:50.5176759Z 15:02:50.517 | After scriptable stripping: 1 +2026-03-27T14:02:50.5182658Z 15:02:50.517 | Processed in 0.00 seconds +2026-03-27T14:02:50.5188062Z 15:02:50.518 | Pass "" (fp) +2026-03-27T14:02:50.5193841Z 15:02:50.518 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.5199366Z 15:02:50.519 | Full variant space: 1 +2026-03-27T14:02:50.5205114Z 15:02:50.520 | After settings filtering: 1 +2026-03-27T14:02:50.5231329Z 15:02:50.521 | After built-in stripping: 1 +2026-03-27T14:02:50.5240779Z 15:02:50.523 | After scriptable stripping: 1 +2026-03-27T14:02:50.5247571Z 15:02:50.524 | Processed in 0.00 seconds +2026-03-27T14:02:50.5254396Z 15:02:50.524 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:50.5260193Z 15:02:50.525 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.5266719Z 15:02:50.526 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:50.5271885Z 15:02:50.526 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.5277772Z 15:02:50.527 | Compiling shader "Hidden/BlitCopyHDRTonemap" +2026-03-27T14:02:50.5283460Z 15:02:50.527 | Pass "" (vp) +2026-03-27T14:02:50.5290104Z 15:02:50.528 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.5295794Z 15:02:50.529 | Full variant space: 1 +2026-03-27T14:02:50.5301622Z 15:02:50.529 | After settings filtering: 1 +2026-03-27T14:02:50.5307336Z 15:02:50.530 | After built-in stripping: 1 +2026-03-27T14:02:50.5312747Z 15:02:50.530 | After scriptable stripping: 1 +2026-03-27T14:02:50.5318643Z 15:02:50.531 | Processed in 0.00 seconds +2026-03-27T14:02:50.5324293Z 15:02:50.532 | Pass "" (fp) +2026-03-27T14:02:50.5330848Z 15:02:50.532 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.5336611Z 15:02:50.533 | Full variant space: 1 +2026-03-27T14:02:50.5342424Z 15:02:50.533 | After settings filtering: 1 +2026-03-27T14:02:50.5348061Z 15:02:50.534 | After built-in stripping: 1 +2026-03-27T14:02:50.5354497Z 15:02:50.535 | After scriptable stripping: 1 +2026-03-27T14:02:50.5373433Z 15:02:50.535 | Processed in 0.00 seconds +2026-03-27T14:02:50.9410535Z 15:02:50.940 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:50.9416069Z 15:02:50.941 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.9422192Z 15:02:50.941 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:50.9428270Z 15:02:50.942 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.9433787Z 15:02:50.942 | Serialized binary data for shader Hidden/BlitCopyHDRTonemap in 0.00s +2026-03-27T14:02:50.9439822Z 15:02:50.943 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:50.9445623Z 15:02:50.944 | Compiling shader "Hidden/Internal-DebugPattern" +2026-03-27T14:02:50.9452553Z 15:02:50.944 | Pass "Target Color and DepthStencil" (vp) +2026-03-27T14:02:50.9458069Z 15:02:50.945 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.9464253Z 15:02:50.945 | Full variant space: 1 +2026-03-27T14:02:50.9468198Z 15:02:50.946 | After settings filtering: 1 +2026-03-27T14:02:50.9473482Z 15:02:50.946 | After built-in stripping: 1 +2026-03-27T14:02:50.9478428Z 15:02:50.947 | After scriptable stripping: 1 +2026-03-27T14:02:50.9483915Z 15:02:50.948 | Processed in 0.00 seconds +2026-03-27T14:02:50.9489427Z 15:02:50.948 | Pass "Target Color and DepthStencil" (fp) +2026-03-27T14:02:50.9495489Z 15:02:50.949 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.9501361Z 15:02:50.949 | Full variant space: 1 +2026-03-27T14:02:50.9507326Z 15:02:50.950 | After settings filtering: 1 +2026-03-27T14:02:50.9512843Z 15:02:50.950 | After built-in stripping: 1 +2026-03-27T14:02:50.9518808Z 15:02:50.951 | After scriptable stripping: 1 +2026-03-27T14:02:50.9523939Z 15:02:50.952 | Processed in 0.00 seconds +2026-03-27T14:02:50.9530513Z 15:02:50.952 | Pass "Target only Color" (vp) +2026-03-27T14:02:50.9536021Z 15:02:50.953 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.9541403Z 15:02:50.953 | Full variant space: 1 +2026-03-27T14:02:50.9547485Z 15:02:50.954 | After settings filtering: 1 +2026-03-27T14:02:50.9557501Z 15:02:50.954 | After built-in stripping: 1 +2026-03-27T14:02:50.9569419Z 15:02:50.956 | After scriptable stripping: 1 +2026-03-27T14:02:50.9575138Z 15:02:50.957 | Processed in 0.00 seconds +2026-03-27T14:02:50.9582025Z 15:02:50.957 | Pass "Target only Color" (fp) +2026-03-27T14:02:50.9588216Z 15:02:50.958 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.9593368Z 15:02:50.958 | Full variant space: 1 +2026-03-27T14:02:50.9598931Z 15:02:50.959 | After settings filtering: 1 +2026-03-27T14:02:50.9604448Z 15:02:50.960 | After built-in stripping: 1 +2026-03-27T14:02:50.9610617Z 15:02:50.960 | After scriptable stripping: 1 +2026-03-27T14:02:50.9616856Z 15:02:50.961 | Processed in 0.00 seconds +2026-03-27T14:02:50.9622724Z 15:02:50.961 | Pass "Target only DepthStencil" (vp) +2026-03-27T14:02:50.9628422Z 15:02:50.962 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.9635777Z 15:02:50.963 | Full variant space: 1 +2026-03-27T14:02:50.9641688Z 15:02:50.963 | After settings filtering: 1 +2026-03-27T14:02:50.9647106Z 15:02:50.964 | After built-in stripping: 1 +2026-03-27T14:02:50.9652244Z 15:02:50.964 | After scriptable stripping: 1 +2026-03-27T14:02:50.9657481Z 15:02:50.965 | Processed in 0.00 seconds +2026-03-27T14:02:50.9662528Z 15:02:50.965 | Pass "Target only DepthStencil" (fp) +2026-03-27T14:02:50.9667863Z 15:02:50.966 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:50.9674048Z 15:02:50.967 | Full variant space: 1 +2026-03-27T14:02:50.9679830Z 15:02:50.967 | After settings filtering: 1 +2026-03-27T14:02:50.9685509Z 15:02:50.968 | After built-in stripping: 1 +2026-03-27T14:02:50.9691643Z 15:02:50.968 | After scriptable stripping: 1 +2026-03-27T14:02:50.9696910Z 15:02:50.969 | Processed in 0.00 seconds +2026-03-27T14:02:50.9702802Z 15:02:50.969 | Pass Target Color and DepthStencil (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:50.9713206Z 15:02:50.970 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.9743448Z 15:02:50.971 | Pass Target Color and DepthStencil (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.9771205Z 15:02:50.975 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.9793827Z 15:02:50.977 | Pass Target only Color (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.9809044Z 15:02:50.980 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.9840726Z 15:02:50.982 | Pass Target only Color (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:50.9910380Z 15:02:50.985 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:50.9982673Z 15:02:50.992 | Pass Target only DepthStencil (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.0014774Z 15:02:50.999 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.0032600Z 15:02:51.002 | Pass Target only DepthStencil (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.0039635Z 15:02:51.003 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.0047565Z 15:02:51.004 | Compiling shader "Hidden/Internal-DebugPattern" +2026-03-27T14:02:51.0054428Z 15:02:51.005 | Pass "Target Color and DepthStencil" (vp) +2026-03-27T14:02:51.0059328Z 15:02:51.005 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.0065518Z 15:02:51.006 | Full variant space: 1 +2026-03-27T14:02:51.0071099Z 15:02:51.006 | After settings filtering: 1 +2026-03-27T14:02:51.0076518Z 15:02:51.007 | After built-in stripping: 1 +2026-03-27T14:02:51.0082176Z 15:02:51.007 | After scriptable stripping: 1 +2026-03-27T14:02:51.0087522Z 15:02:51.008 | Processed in 0.00 seconds +2026-03-27T14:02:51.0092979Z 15:02:51.008 | Pass "Target Color and DepthStencil" (fp) +2026-03-27T14:02:51.0098441Z 15:02:51.009 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.0113130Z 15:02:51.010 | Full variant space: 1 +2026-03-27T14:02:51.0134329Z 15:02:51.012 | After settings filtering: 1 +2026-03-27T14:02:51.0173258Z 15:02:51.014 | After built-in stripping: 1 +2026-03-27T14:02:51.0278194Z 15:02:51.020 | After scriptable stripping: 1 +2026-03-27T14:02:51.0370798Z 15:02:51.030 | Processed in 0.00 seconds +2026-03-27T14:02:51.0397895Z 15:02:51.037 | Pass "Target only Color" (vp) +2026-03-27T14:02:51.0413349Z 15:02:51.040 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.0429769Z 15:02:51.042 | Full variant space: 1 +2026-03-27T14:02:51.0451858Z 15:02:51.043 | After settings filtering: 1 +2026-03-27T14:02:51.0498103Z 15:02:51.046 | After built-in stripping: 1 +2026-03-27T14:02:51.0519091Z 15:02:51.050 | After scriptable stripping: 1 +2026-03-27T14:02:51.0532068Z 15:02:51.052 | Processed in 0.00 seconds +2026-03-27T14:02:51.0541656Z 15:02:51.053 | Pass "Target only Color" (fp) +2026-03-27T14:02:51.0549681Z 15:02:51.054 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.0559251Z 15:02:51.055 | Full variant space: 1 +2026-03-27T14:02:51.0568374Z 15:02:51.056 | After settings filtering: 1 +2026-03-27T14:02:51.0574140Z 15:02:51.057 | After built-in stripping: 1 +2026-03-27T14:02:51.0580663Z 15:02:51.057 | After scriptable stripping: 1 +2026-03-27T14:02:51.0586057Z 15:02:51.058 | Processed in 0.00 seconds +2026-03-27T14:02:51.0595594Z 15:02:51.058 | Pass "Target only DepthStencil" (vp) +2026-03-27T14:02:51.0601791Z 15:02:51.059 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.0608421Z 15:02:51.060 | Full variant space: 1 +2026-03-27T14:02:51.0616263Z 15:02:51.061 | After settings filtering: 1 +2026-03-27T14:02:51.0621897Z 15:02:51.061 | After built-in stripping: 1 +2026-03-27T14:02:51.0628061Z 15:02:51.062 | After scriptable stripping: 1 +2026-03-27T14:02:51.0633693Z 15:02:51.062 | Processed in 0.00 seconds +2026-03-27T14:02:51.0639387Z 15:02:51.063 | Pass "Target only DepthStencil" (fp) +2026-03-27T14:02:51.0644078Z 15:02:51.064 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.0650126Z 15:02:51.064 | Full variant space: 1 +2026-03-27T14:02:51.0682615Z 15:02:51.065 | After settings filtering: 1 +2026-03-27T14:02:51.0706360Z 15:02:51.069 | After built-in stripping: 1 +2026-03-27T14:02:51.0714852Z 15:02:51.071 | After scriptable stripping: 1 +2026-03-27T14:02:51.0720473Z 15:02:51.071 | Processed in 0.00 seconds +2026-03-27T14:02:51.0726824Z 15:02:51.072 | Pass Target Color and DepthStencil (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:51.0732773Z 15:02:51.072 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.0739622Z 15:02:51.073 | Pass Target Color and DepthStencil (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:51.0745087Z 15:02:51.074 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.0753605Z 15:02:51.074 | Pass Target only Color (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:51.0758848Z 15:02:51.075 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.0765592Z 15:02:51.076 | Pass Target only Color (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.0771568Z 15:02:51.076 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.0777936Z 15:02:51.077 | Pass Target only DepthStencil (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:51.0783734Z 15:02:51.077 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.0790182Z 15:02:51.078 | Pass Target only DepthStencil (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.0794971Z 15:02:51.079 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.0839734Z 15:02:51.079 | Serialized binary data for shader Hidden/Internal-DebugPattern in 0.00s +2026-03-27T14:02:51.0852080Z 15:02:51.084 | gamecore_scarlett (total internal programs: 6, unique: 4) +2026-03-27T14:02:51.0862093Z 15:02:51.085 | Compiling shader "Hidden/Internal-GUITextureClip" +2026-03-27T14:02:51.0875532Z 15:02:51.087 | Pass "" (vp) +2026-03-27T14:02:51.0883130Z 15:02:51.087 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.0889260Z 15:02:51.088 | Full variant space: 1 +2026-03-27T14:02:51.0902391Z 15:02:51.089 | After settings filtering: 1 +2026-03-27T14:02:51.0910145Z 15:02:51.090 | After built-in stripping: 1 +2026-03-27T14:02:51.0918254Z 15:02:51.091 | After scriptable stripping: 1 +2026-03-27T14:02:51.0924879Z 15:02:51.092 | Processed in 0.00 seconds +2026-03-27T14:02:51.0932118Z 15:02:51.092 | Pass "" (fp) +2026-03-27T14:02:51.0939395Z 15:02:51.093 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.0948521Z 15:02:51.094 | Full variant space: 1 +2026-03-27T14:02:51.1046382Z 15:02:51.096 | After settings filtering: 1 +2026-03-27T14:02:51.1074109Z 15:02:51.106 | After built-in stripping: 1 +2026-03-27T14:02:51.1101979Z 15:02:51.108 | After scriptable stripping: 1 +2026-03-27T14:02:51.1123989Z 15:02:51.110 | Processed in 0.00 seconds +2026-03-27T14:02:51.1147960Z 15:02:51.113 | Pass "" (vp) +2026-03-27T14:02:51.1189257Z 15:02:51.116 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.1245147Z 15:02:51.122 | Full variant space: 1 +2026-03-27T14:02:51.1254445Z 15:02:51.125 | After settings filtering: 1 +2026-03-27T14:02:51.1262066Z 15:02:51.125 | After built-in stripping: 1 +2026-03-27T14:02:51.1293615Z 15:02:51.126 | After scriptable stripping: 1 +2026-03-27T14:02:51.1301581Z 15:02:51.129 | Processed in 0.00 seconds +2026-03-27T14:02:51.1313292Z 15:02:51.130 | Pass "" (fp) +2026-03-27T14:02:51.1319321Z 15:02:51.131 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.1325256Z 15:02:51.132 | Full variant space: 1 +2026-03-27T14:02:51.1331085Z 15:02:51.132 | After settings filtering: 1 +2026-03-27T14:02:51.1336957Z 15:02:51.133 | After built-in stripping: 1 +2026-03-27T14:02:51.1342727Z 15:02:51.133 | After scriptable stripping: 1 +2026-03-27T14:02:51.1348396Z 15:02:51.134 | Processed in 0.00 seconds +2026-03-27T14:02:51.1355744Z 15:02:51.135 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.1361383Z 15:02:51.135 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.1367882Z 15:02:51.136 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.1372769Z 15:02:51.136 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.1391127Z 15:02:51.137 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.1429707Z 15:02:51.140 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.1514059Z 15:02:51.146 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.1537031Z 15:02:51.152 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.1553168Z 15:02:51.154 | Compiling shader "Hidden/Internal-GUITextureClip" +2026-03-27T14:02:51.1574478Z 15:02:51.156 | Pass "" (vp) +2026-03-27T14:02:51.1612416Z 15:02:51.158 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.1630373Z 15:02:51.161 | Full variant space: 1 +2026-03-27T14:02:51.1653573Z 15:02:51.164 | After settings filtering: 1 +2026-03-27T14:02:51.1684458Z 15:02:51.166 | After built-in stripping: 1 +2026-03-27T14:02:51.1710235Z 15:02:51.169 | After scriptable stripping: 1 +2026-03-27T14:02:51.1733253Z 15:02:51.171 | Processed in 0.00 seconds +2026-03-27T14:02:51.1752952Z 15:02:51.173 | Pass "" (fp) +2026-03-27T14:02:51.1814206Z 15:02:51.178 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.1843285Z 15:02:51.183 | Full variant space: 1 +2026-03-27T14:02:51.1852019Z 15:02:51.184 | After settings filtering: 1 +2026-03-27T14:02:51.1860084Z 15:02:51.185 | After built-in stripping: 1 +2026-03-27T14:02:51.1867307Z 15:02:51.186 | After scriptable stripping: 1 +2026-03-27T14:02:51.1876066Z 15:02:51.187 | Processed in 0.00 seconds +2026-03-27T14:02:51.1882079Z 15:02:51.187 | Pass "" (vp) +2026-03-27T14:02:51.1888777Z 15:02:51.188 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.1894362Z 15:02:51.189 | Full variant space: 1 +2026-03-27T14:02:51.1900140Z 15:02:51.189 | After settings filtering: 1 +2026-03-27T14:02:51.1908548Z 15:02:51.190 | After built-in stripping: 1 +2026-03-27T14:02:51.1914604Z 15:02:51.191 | After scriptable stripping: 1 +2026-03-27T14:02:51.1920076Z 15:02:51.191 | Processed in 0.00 seconds +2026-03-27T14:02:51.1927234Z 15:02:51.192 | Pass "" (fp) +2026-03-27T14:02:51.1932512Z 15:02:51.192 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.1938172Z 15:02:51.193 | Full variant space: 1 +2026-03-27T14:02:51.1944034Z 15:02:51.194 | After settings filtering: 1 +2026-03-27T14:02:51.1950403Z 15:02:51.194 | After built-in stripping: 1 +2026-03-27T14:02:51.1956696Z 15:02:51.195 | After scriptable stripping: 1 +2026-03-27T14:02:51.1962348Z 15:02:51.195 | Processed in 0.00 seconds +2026-03-27T14:02:51.1969281Z 15:02:51.196 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:51.1975034Z 15:02:51.197 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.1981816Z 15:02:51.197 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:51.1987232Z 15:02:51.198 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.1992836Z 15:02:51.198 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:51.1998077Z 15:02:51.199 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.2004196Z 15:02:51.199 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:51.2009980Z 15:02:51.200 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.2015997Z 15:02:51.201 | Serialized binary data for shader Hidden/Internal-GUITextureClip in 0.00s +2026-03-27T14:02:51.2021317Z 15:02:51.201 | gamecore_scarlett (total internal programs: 4, unique: 2) +2026-03-27T14:02:51.2026991Z 15:02:51.202 | Compiling shader "Hidden/Internal-GUITextureClipText" +2026-03-27T14:02:51.2032039Z 15:02:51.202 | Pass "" (vp) +2026-03-27T14:02:51.2037396Z 15:02:51.203 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.2043052Z 15:02:51.203 | Full variant space: 1 +2026-03-27T14:02:51.2049629Z 15:02:51.204 | After settings filtering: 1 +2026-03-27T14:02:51.2055423Z 15:02:51.205 | After built-in stripping: 1 +2026-03-27T14:02:51.2070040Z 15:02:51.205 | After scriptable stripping: 1 +2026-03-27T14:02:51.2079100Z 15:02:51.207 | Processed in 0.00 seconds +2026-03-27T14:02:51.2085047Z 15:02:51.208 | Pass "" (fp) +2026-03-27T14:02:51.2091993Z 15:02:51.208 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.2099768Z 15:02:51.209 | Full variant space: 1 +2026-03-27T14:02:51.2106199Z 15:02:51.210 | After settings filtering: 1 +2026-03-27T14:02:51.2116465Z 15:02:51.211 | After built-in stripping: 1 +2026-03-27T14:02:51.2122210Z 15:02:51.211 | After scriptable stripping: 1 +2026-03-27T14:02:51.2128518Z 15:02:51.212 | Processed in 0.00 seconds +2026-03-27T14:02:51.2134077Z 15:02:51.213 | Pass "" (vp) +2026-03-27T14:02:51.2139823Z 15:02:51.213 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.2145643Z 15:02:51.214 | Full variant space: 1 +2026-03-27T14:02:51.2151235Z 15:02:51.214 | After settings filtering: 1 +2026-03-27T14:02:51.2156759Z 15:02:51.215 | After built-in stripping: 1 +2026-03-27T14:02:51.2162349Z 15:02:51.215 | After scriptable stripping: 1 +2026-03-27T14:02:51.2168711Z 15:02:51.216 | Processed in 0.00 seconds +2026-03-27T14:02:51.2174310Z 15:02:51.217 | Pass "" (fp) +2026-03-27T14:02:51.2180295Z 15:02:51.217 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.2185783Z 15:02:51.218 | Full variant space: 1 +2026-03-27T14:02:51.2194754Z 15:02:51.219 | After settings filtering: 1 +2026-03-27T14:02:51.2201422Z 15:02:51.219 | After built-in stripping: 1 +2026-03-27T14:02:51.2207633Z 15:02:51.220 | After scriptable stripping: 1 +2026-03-27T14:02:51.2213261Z 15:02:51.220 | Processed in 0.00 seconds +2026-03-27T14:02:51.2225196Z 15:02:51.221 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.2233280Z 15:02:51.222 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.2242739Z 15:02:51.223 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.2251114Z 15:02:51.224 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.2257772Z 15:02:51.225 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.2263061Z 15:02:51.225 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.2268866Z 15:02:51.226 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.2273638Z 15:02:51.226 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.2279502Z 15:02:51.227 | Compiling shader "Hidden/Internal-GUITextureClipText" +2026-03-27T14:02:51.2284994Z 15:02:51.228 | Pass "" (vp) +2026-03-27T14:02:51.2290639Z 15:02:51.228 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.2298134Z 15:02:51.229 | Full variant space: 1 +2026-03-27T14:02:51.2330733Z 15:02:51.231 | After settings filtering: 1 +2026-03-27T14:02:51.2509511Z 15:02:51.235 | After built-in stripping: 1 +2026-03-27T14:02:51.2563825Z 15:02:51.251 | After scriptable stripping: 1 +2026-03-27T14:02:51.2601439Z 15:02:51.257 | Processed in 0.00 seconds +2026-03-27T14:02:51.2620530Z 15:02:51.261 | Pass "" (fp) +2026-03-27T14:02:51.2631546Z 15:02:51.262 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.2639849Z 15:02:51.263 | Full variant space: 1 +2026-03-27T14:02:51.2650825Z 15:02:51.264 | After settings filtering: 1 +2026-03-27T14:02:51.2660390Z 15:02:51.265 | After built-in stripping: 1 +2026-03-27T14:02:51.2668384Z 15:02:51.266 | After scriptable stripping: 1 +2026-03-27T14:02:51.2682392Z 15:02:51.267 | Processed in 0.00 seconds +2026-03-27T14:02:51.2699176Z 15:02:51.268 | Pass "" (vp) +2026-03-27T14:02:51.2707056Z 15:02:51.270 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.2713422Z 15:02:51.270 | Full variant space: 1 +2026-03-27T14:02:51.2719455Z 15:02:51.271 | After settings filtering: 1 +2026-03-27T14:02:51.2725812Z 15:02:51.272 | After built-in stripping: 1 +2026-03-27T14:02:51.2732825Z 15:02:51.272 | After scriptable stripping: 1 +2026-03-27T14:02:51.2738318Z 15:02:51.273 | Processed in 0.00 seconds +2026-03-27T14:02:51.2744154Z 15:02:51.274 | Pass "" (fp) +2026-03-27T14:02:51.2749578Z 15:02:51.274 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.2755403Z 15:02:51.275 | Full variant space: 1 +2026-03-27T14:02:51.2761001Z 15:02:51.275 | After settings filtering: 1 +2026-03-27T14:02:51.2767110Z 15:02:51.276 | After built-in stripping: 1 +2026-03-27T14:02:51.2773354Z 15:02:51.276 | After scriptable stripping: 1 +2026-03-27T14:02:51.2786156Z 15:02:51.277 | Processed in 0.00 seconds +2026-03-27T14:02:51.2825429Z 15:02:51.280 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:51.2897508Z 15:02:51.283 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.3032063Z 15:02:51.293 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.3066300Z 15:02:51.304 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.3084775Z 15:02:51.307 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:51.3127087Z 15:02:51.309 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.3176155Z 15:02:51.313 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.3220792Z 15:02:51.319 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.3239484Z 15:02:51.322 | Serialized binary data for shader Hidden/Internal-GUITextureClipText in 0.00s +2026-03-27T14:02:51.3268509Z 15:02:51.324 | gamecore_scarlett (total internal programs: 4, unique: 2) +2026-03-27T14:02:51.3282035Z 15:02:51.327 | Compiling shader "Hidden/Internal-GUITexture" +2026-03-27T14:02:51.3335134Z 15:02:51.329 | Pass "" (vp) +2026-03-27T14:02:51.3353078Z 15:02:51.334 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.3386399Z 15:02:51.336 | Full variant space: 1 +2026-03-27T14:02:51.3424878Z 15:02:51.339 | After settings filtering: 1 +2026-03-27T14:02:51.3433564Z 15:02:51.342 | After built-in stripping: 1 +2026-03-27T14:02:51.3445914Z 15:02:51.343 | After scriptable stripping: 1 +2026-03-27T14:02:51.3453641Z 15:02:51.345 | Processed in 0.00 seconds +2026-03-27T14:02:51.3477386Z 15:02:51.346 | Pass "" (fp) +2026-03-27T14:02:51.3481883Z 15:02:51.347 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.3490512Z 15:02:51.348 | Full variant space: 1 +2026-03-27T14:02:51.3499117Z 15:02:51.349 | After settings filtering: 1 +2026-03-27T14:02:51.3512068Z 15:02:51.350 | After built-in stripping: 1 +2026-03-27T14:02:51.3541938Z 15:02:51.352 | After scriptable stripping: 1 +2026-03-27T14:02:51.3554993Z 15:02:51.354 | Processed in 0.00 seconds +2026-03-27T14:02:51.3564917Z 15:02:51.356 | Pass "" (vp) +2026-03-27T14:02:51.3574273Z 15:02:51.357 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.3585184Z 15:02:51.357 | Full variant space: 1 +2026-03-27T14:02:51.3593419Z 15:02:51.358 | After settings filtering: 1 +2026-03-27T14:02:51.3603485Z 15:02:51.359 | After built-in stripping: 1 +2026-03-27T14:02:51.3624166Z 15:02:51.360 | After scriptable stripping: 1 +2026-03-27T14:02:51.3649935Z 15:02:51.363 | Processed in 0.00 seconds +2026-03-27T14:02:51.3660114Z 15:02:51.365 | Pass "" (fp) +2026-03-27T14:02:51.3666729Z 15:02:51.366 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.3672480Z 15:02:51.366 | Full variant space: 1 +2026-03-27T14:02:51.3677626Z 15:02:51.367 | After settings filtering: 1 +2026-03-27T14:02:51.3683704Z 15:02:51.367 | After built-in stripping: 1 +2026-03-27T14:02:51.3690129Z 15:02:51.368 | After scriptable stripping: 1 +2026-03-27T14:02:51.3696099Z 15:02:51.369 | Processed in 0.00 seconds +2026-03-27T14:02:51.3702447Z 15:02:51.369 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.3706913Z 15:02:51.370 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.3713680Z 15:02:51.370 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.3719240Z 15:02:51.371 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.3726997Z 15:02:51.372 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.3732018Z 15:02:51.372 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.3738379Z 15:02:51.373 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.3742935Z 15:02:51.373 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.3748347Z 15:02:51.374 | Compiling shader "Hidden/Internal-GUITexture" +2026-03-27T14:02:51.3754032Z 15:02:51.375 | Pass "" (vp) +2026-03-27T14:02:51.3759229Z 15:02:51.375 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.3764596Z 15:02:51.376 | Full variant space: 1 +2026-03-27T14:02:51.3777154Z 15:02:51.377 | After settings filtering: 1 +2026-03-27T14:02:51.3782216Z 15:02:51.377 | After built-in stripping: 1 +2026-03-27T14:02:51.3787797Z 15:02:51.378 | After scriptable stripping: 1 +2026-03-27T14:02:51.3821116Z 15:02:51.379 | Processed in 0.00 seconds +2026-03-27T14:02:51.3873274Z 15:02:51.384 | Pass "" (fp) +2026-03-27T14:02:51.3886799Z 15:02:51.387 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.3912772Z 15:02:51.389 | Full variant space: 1 +2026-03-27T14:02:51.3962477Z 15:02:51.393 | After settings filtering: 1 +2026-03-27T14:02:51.3994695Z 15:02:51.397 | After built-in stripping: 1 +2026-03-27T14:02:51.4024314Z 15:02:51.400 | After scriptable stripping: 1 +2026-03-27T14:02:51.4043071Z 15:02:51.403 | Processed in 0.00 seconds +2026-03-27T14:02:51.4069276Z 15:02:51.405 | Pass "" (vp) +2026-03-27T14:02:51.4081658Z 15:02:51.407 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.4172742Z 15:02:51.409 | Full variant space: 1 +2026-03-27T14:02:51.4186045Z 15:02:51.418 | After settings filtering: 1 +2026-03-27T14:02:51.4191204Z 15:02:51.418 | After built-in stripping: 1 +2026-03-27T14:02:51.4196828Z 15:02:51.419 | After scriptable stripping: 1 +2026-03-27T14:02:51.4202332Z 15:02:51.419 | Processed in 0.00 seconds +2026-03-27T14:02:51.4208183Z 15:02:51.420 | Pass "" (fp) +2026-03-27T14:02:51.4213577Z 15:02:51.420 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.4218926Z 15:02:51.421 | Full variant space: 1 +2026-03-27T14:02:51.4224292Z 15:02:51.422 | After settings filtering: 1 +2026-03-27T14:02:51.4229756Z 15:02:51.422 | After built-in stripping: 1 +2026-03-27T14:02:51.4234679Z 15:02:51.423 | After scriptable stripping: 1 +2026-03-27T14:02:51.4244821Z 15:02:51.423 | Processed in 0.00 seconds +2026-03-27T14:02:51.4251694Z 15:02:51.424 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:51.4257073Z 15:02:51.425 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.4262463Z 15:02:51.425 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.4266985Z 15:02:51.426 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.4272902Z 15:02:51.426 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:51.4278259Z 15:02:51.427 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.4284280Z 15:02:51.427 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:51.4293512Z 15:02:51.428 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.4297607Z 15:02:51.429 | Serialized binary data for shader Hidden/Internal-GUITexture in 0.00s +2026-03-27T14:02:51.4324484Z 15:02:51.430 | gamecore_scarlett (total internal programs: 4, unique: 2) +2026-03-27T14:02:51.4353166Z 15:02:51.433 | Compiling shader "Hidden/Internal-GUITextureBlit" +2026-03-27T14:02:51.4381044Z 15:02:51.436 | Pass "" (vp) +2026-03-27T14:02:51.4413064Z 15:02:51.438 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.4531476Z 15:02:51.445 | Full variant space: 1 +2026-03-27T14:02:51.4684140Z 15:02:51.457 | After settings filtering: 1 +2026-03-27T14:02:51.4774747Z 15:02:51.473 | After built-in stripping: 1 +2026-03-27T14:02:51.4820779Z 15:02:51.478 | After scriptable stripping: 1 +2026-03-27T14:02:51.4832663Z 15:02:51.482 | Processed in 0.00 seconds +2026-03-27T14:02:51.4854285Z 15:02:51.483 | Pass "" (fp) +2026-03-27T14:02:51.4878470Z 15:02:51.486 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.4896624Z 15:02:51.489 | Full variant space: 1 +2026-03-27T14:02:51.4902874Z 15:02:51.489 | After settings filtering: 1 +2026-03-27T14:02:51.4907892Z 15:02:51.490 | After built-in stripping: 1 +2026-03-27T14:02:51.4919652Z 15:02:51.491 | After scriptable stripping: 1 +2026-03-27T14:02:51.4932229Z 15:02:51.492 | Processed in 0.00 seconds +2026-03-27T14:02:51.4938709Z 15:02:51.493 | Pass "" (vp) +2026-03-27T14:02:51.4944241Z 15:02:51.494 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.4950416Z 15:02:51.494 | Full variant space: 1 +2026-03-27T14:02:51.4968578Z 15:02:51.495 | After settings filtering: 1 +2026-03-27T14:02:51.4992879Z 15:02:51.497 | After built-in stripping: 1 +2026-03-27T14:02:51.5018287Z 15:02:51.501 | After scriptable stripping: 1 +2026-03-27T14:02:51.5066594Z 15:02:51.502 | Processed in 0.00 seconds +2026-03-27T14:02:51.5126327Z 15:02:51.510 | Pass "" (fp) +2026-03-27T14:02:51.5142827Z 15:02:51.513 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.5153628Z 15:02:51.514 | Full variant space: 1 +2026-03-27T14:02:51.5161175Z 15:02:51.515 | After settings filtering: 1 +2026-03-27T14:02:51.5169014Z 15:02:51.516 | After built-in stripping: 1 +2026-03-27T14:02:51.5179156Z 15:02:51.517 | After scriptable stripping: 1 +2026-03-27T14:02:51.5186827Z 15:02:51.518 | Processed in 0.00 seconds +2026-03-27T14:02:51.5219196Z 15:02:51.520 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.5228554Z 15:02:51.522 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.5234808Z 15:02:51.523 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.5244710Z 15:02:51.524 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.5251511Z 15:02:51.524 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:51.5259780Z 15:02:51.525 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.5267626Z 15:02:51.526 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:51.5273681Z 15:02:51.527 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:51.5284896Z 15:02:51.527 | Compiling shader "Hidden/Internal-GUITextureBlit" +2026-03-27T14:02:51.5291157Z 15:02:51.528 | Pass "" (vp) +2026-03-27T14:02:51.5298537Z 15:02:51.529 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.5305815Z 15:02:51.530 | Full variant space: 1 +2026-03-27T14:02:51.5312769Z 15:02:51.530 | After settings filtering: 1 +2026-03-27T14:02:51.5321969Z 15:02:51.531 | After built-in stripping: 1 +2026-03-27T14:02:51.5331094Z 15:02:51.532 | After scriptable stripping: 1 +2026-03-27T14:02:51.5337761Z 15:02:51.533 | Processed in 0.00 seconds +2026-03-27T14:02:51.5342842Z 15:02:51.533 | Pass "" (fp) +2026-03-27T14:02:51.5352025Z 15:02:51.534 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.5362879Z 15:02:51.535 | Full variant space: 1 +2026-03-27T14:02:51.5369810Z 15:02:51.536 | After settings filtering: 1 +2026-03-27T14:02:51.5376614Z 15:02:51.537 | After built-in stripping: 1 +2026-03-27T14:02:51.5779677Z 15:02:51.537 | After scriptable stripping: 1 +2026-03-27T14:02:51.6016029Z 15:02:51.586 | Processed in 0.00 seconds +2026-03-27T14:02:51.6021669Z 15:02:51.601 | Pass "" (vp) +2026-03-27T14:02:51.6027610Z 15:02:51.602 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.6040882Z 15:02:51.603 | Full variant space: 1 +2026-03-27T14:02:51.6050700Z 15:02:51.604 | After settings filtering: 1 +2026-03-27T14:02:51.6056272Z 15:02:51.605 | After built-in stripping: 1 +2026-03-27T14:02:51.6064886Z 15:02:51.606 | After scriptable stripping: 1 +2026-03-27T14:02:51.6133442Z 15:02:51.606 | Processed in 0.00 seconds +2026-03-27T14:02:51.6469993Z 15:02:51.622 | Pass "" (fp) +2026-03-27T14:02:51.6861125Z 15:02:51.658 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:51.7207097Z 15:02:51.698 | Full variant space: 1 +2026-03-27T14:02:51.7642358Z 15:02:51.728 | After settings filtering: 1 +2026-03-27T14:02:51.8077686Z 15:02:51.776 | After built-in stripping: 1 +2026-03-27T14:02:51.8527019Z 15:02:51.816 | After scriptable stripping: 1 +2026-03-27T14:02:51.9010914Z 15:02:51.873 | Processed in 0.00 seconds +2026-03-27T14:02:51.9308306Z 15:02:51.907 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:51.9663289Z 15:02:51.939 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:52.0071472Z 15:02:51.981 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:52.0415513Z 15:02:52.017 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:52.0636569Z 15:02:52.046 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:52.1057658Z 15:02:52.071 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:52.1420311Z 15:02:52.115 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:52.1720671Z 15:02:52.152 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:52.2120901Z 15:02:52.183 | Serialized binary data for shader Hidden/Internal-GUITextureBlit in 0.00s +2026-03-27T14:02:52.2509135Z 15:02:52.222 | gamecore_scarlett (total internal programs: 4, unique: 2) +2026-03-27T14:02:52.2810212Z 15:02:52.259 | Compiling shader "Hidden/Internal-GUIRoundedRect" +2026-03-27T14:02:52.3087059Z 15:02:52.288 | Pass "" (vp) +2026-03-27T14:02:52.3434467Z 15:02:52.316 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:52.3754529Z 15:02:52.352 | Full variant space: 1 +2026-03-27T14:02:52.4145638Z 15:02:52.388 | After settings filtering: 1 +2026-03-27T14:02:52.4506892Z 15:02:52.426 | After built-in stripping: 1 +2026-03-27T14:02:52.4948792Z 15:02:52.463 | After scriptable stripping: 1 +2026-03-27T14:02:52.5329360Z 15:02:52.504 | Processed in 0.00 seconds +2026-03-27T14:02:52.5649951Z 15:02:52.547 | Pass "" (fp) +2026-03-27T14:02:52.5695078Z 15:02:52.568 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:52.5710399Z 15:02:52.570 | Full variant space: 1 +2026-03-27T14:02:52.5717423Z 15:02:52.571 | After settings filtering: 1 +2026-03-27T14:02:52.5724071Z 15:02:52.571 | After built-in stripping: 1 +2026-03-27T14:02:52.5737330Z 15:02:52.572 | After scriptable stripping: 1 +2026-03-27T14:02:52.5743972Z 15:02:52.573 | Processed in 0.00 seconds +2026-03-27T14:02:52.5751346Z 15:02:52.574 | Pass "" (vp) +2026-03-27T14:02:52.5761185Z 15:02:52.575 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:52.5768736Z 15:02:52.576 | Full variant space: 1 +2026-03-27T14:02:52.5775998Z 15:02:52.577 | After settings filtering: 1 +2026-03-27T14:02:52.5781530Z 15:02:52.577 | After built-in stripping: 1 +2026-03-27T14:02:52.5787599Z 15:02:52.578 | After scriptable stripping: 1 +2026-03-27T14:02:52.5793708Z 15:02:52.578 | Processed in 0.00 seconds +2026-03-27T14:02:52.5799797Z 15:02:52.579 | Pass "" (fp) +2026-03-27T14:02:52.5806842Z 15:02:52.580 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:52.5813333Z 15:02:52.580 | Full variant space: 1 +2026-03-27T14:02:52.5976637Z 15:02:52.581 | After settings filtering: 1 +2026-03-27T14:02:52.6447038Z 15:02:52.620 | After built-in stripping: 1 +2026-03-27T14:02:52.6746455Z 15:02:52.651 | After scriptable stripping: 1 +2026-03-27T14:02:52.7007372Z 15:02:52.684 | Processed in 0.00 seconds +2026-03-27T14:02:52.7311115Z 15:02:52.711 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:52.7592059Z 15:02:52.739 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:52.7868857Z 15:02:52.766 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:52.8326470Z 15:02:52.799 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:52.8631089Z 15:02:52.842 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:52.8914622Z 15:02:52.870 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:52.9235590Z 15:02:52.898 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:52.9596293Z 15:02:52.931 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:53.0015523Z 15:02:52.975 | Compiling shader "Hidden/Internal-GUIRoundedRect" +2026-03-27T14:02:53.0356805Z 15:02:53.010 | Pass "" (vp) +2026-03-27T14:02:53.0662950Z 15:02:53.045 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:53.1078574Z 15:02:53.075 | Full variant space: 1 +2026-03-27T14:02:53.1419293Z 15:02:53.114 | After settings filtering: 1 +2026-03-27T14:02:53.1781336Z 15:02:53.156 | After built-in stripping: 1 +2026-03-27T14:02:53.2043373Z 15:02:53.184 | After scriptable stripping: 1 +2026-03-27T14:02:53.2362742Z 15:02:53.218 | Processed in 0.00 seconds +2026-03-27T14:02:53.2664109Z 15:02:53.242 | Pass "" (fp) +2026-03-27T14:02:53.3014547Z 15:02:53.278 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:53.3406562Z 15:02:53.308 | Full variant space: 1 +2026-03-27T14:02:53.3806952Z 15:02:53.356 | After settings filtering: 1 +2026-03-27T14:02:53.4129588Z 15:02:53.386 | After built-in stripping: 1 +2026-03-27T14:02:53.4390332Z 15:02:53.421 | After scriptable stripping: 1 +2026-03-27T14:02:53.4826183Z 15:02:53.447 | Processed in 0.00 seconds +2026-03-27T14:02:53.5192030Z 15:02:53.489 | Pass "" (vp) +2026-03-27T14:02:53.5495516Z 15:02:53.525 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:53.5816330Z 15:02:53.556 | Full variant space: 1 +2026-03-27T14:02:53.6114985Z 15:02:53.589 | After settings filtering: 1 +2026-03-27T14:02:53.6430319Z 15:02:53.620 | After built-in stripping: 1 +2026-03-27T14:02:53.6717875Z 15:02:53.651 | After scriptable stripping: 1 +2026-03-27T14:02:53.7101726Z 15:02:53.684 | Processed in 0.00 seconds +2026-03-27T14:02:53.7419887Z 15:02:53.720 | Pass "" (fp) +2026-03-27T14:02:53.7700108Z 15:02:53.752 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:53.7981098Z 15:02:53.776 | Full variant space: 1 +2026-03-27T14:02:53.8402747Z 15:02:53.807 | After settings filtering: 1 +2026-03-27T14:02:53.8683458Z 15:02:53.848 | After built-in stripping: 1 +2026-03-27T14:02:53.9004460Z 15:02:53.876 | After scriptable stripping: 1 +2026-03-27T14:02:53.9297504Z 15:02:53.907 | Processed in 0.00 seconds +2026-03-27T14:02:53.9687051Z 15:02:53.938 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:54.0088184Z 15:02:53.980 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:54.0489577Z 15:02:54.020 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:54.0867462Z 15:02:54.059 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:54.1312289Z 15:02:54.100 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:54.1592465Z 15:02:54.141 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:54.1932026Z 15:02:54.171 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:54.2352487Z 15:02:54.203 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:54.2687923Z 15:02:54.245 | Serialized binary data for shader Hidden/Internal-GUIRoundedRect in 0.00s +2026-03-27T14:02:54.2856452Z 15:02:54.272 | gamecore_scarlett (total internal programs: 4, unique: 2) +2026-03-27T14:02:54.3109257Z 15:02:54.293 | Compiling shader "Hidden/Internal-GUIRoundedRectWithColorPerBorder" +2026-03-27T14:02:54.3447131Z 15:02:54.319 | Pass "" (vp) +2026-03-27T14:02:54.3801205Z 15:02:54.357 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:54.4180516Z 15:02:54.392 | Full variant space: 1 +2026-03-27T14:02:54.4441327Z 15:02:54.423 | After settings filtering: 1 +2026-03-27T14:02:54.4794809Z 15:02:54.455 | After built-in stripping: 1 +2026-03-27T14:02:54.5114219Z 15:02:54.490 | After scriptable stripping: 1 +2026-03-27T14:02:54.5484746Z 15:02:54.523 | Processed in 0.00 seconds +2026-03-27T14:02:54.5903798Z 15:02:54.555 | Pass "" (fp) +2026-03-27T14:02:54.6376377Z 15:02:54.608 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:54.6626358Z 15:02:54.644 | Full variant space: 1 +2026-03-27T14:02:54.6945312Z 15:02:54.673 | After settings filtering: 1 +2026-03-27T14:02:54.7248036Z 15:02:54.704 | After built-in stripping: 1 +2026-03-27T14:02:54.7728764Z 15:02:54.736 | After scriptable stripping: 1 +2026-03-27T14:02:54.8050660Z 15:02:54.782 | Processed in 0.00 seconds +2026-03-27T14:02:54.8308957Z 15:02:54.811 | Pass "" (vp) +2026-03-27T14:02:54.8720113Z 15:02:54.837 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:54.8977354Z 15:02:54.879 | Full variant space: 1 +2026-03-27T14:02:54.9314061Z 15:02:54.909 | After settings filtering: 1 +2026-03-27T14:02:54.9656519Z 15:02:54.939 | After built-in stripping: 1 +2026-03-27T14:02:55.0088005Z 15:02:54.977 | After scriptable stripping: 1 +2026-03-27T14:02:55.0494833Z 15:02:55.019 | Processed in 0.00 seconds +2026-03-27T14:02:55.0836103Z 15:02:55.056 | Pass "" (fp) +2026-03-27T14:02:55.1177812Z 15:02:55.098 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.1356652Z 15:02:55.124 | Full variant space: 1 +2026-03-27T14:02:55.1427983Z 15:02:55.136 | After settings filtering: 1 +2026-03-27T14:02:55.1449322Z 15:02:55.143 | After built-in stripping: 1 +2026-03-27T14:02:55.1481077Z 15:02:55.145 | After scriptable stripping: 1 +2026-03-27T14:02:55.1503980Z 15:02:55.149 | Processed in 0.00 seconds +2026-03-27T14:02:55.1518739Z 15:02:55.151 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:55.1534743Z 15:02:55.152 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.1543062Z 15:02:55.153 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:55.1551466Z 15:02:55.154 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.1559143Z 15:02:55.155 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:55.1576911Z 15:02:55.156 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.1617411Z 15:02:55.160 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:55.1699032Z 15:02:55.169 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.1709776Z 15:02:55.170 | Compiling shader "Hidden/Internal-GUIRoundedRectWithColorPerBorder" +2026-03-27T14:02:55.1722369Z 15:02:55.171 | Pass "" (vp) +2026-03-27T14:02:55.1730511Z 15:02:55.172 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.1738057Z 15:02:55.173 | Full variant space: 1 +2026-03-27T14:02:55.1750537Z 15:02:55.174 | After settings filtering: 1 +2026-03-27T14:02:55.1757444Z 15:02:55.175 | After built-in stripping: 1 +2026-03-27T14:02:55.1764038Z 15:02:55.175 | After scriptable stripping: 1 +2026-03-27T14:02:55.1824464Z 15:02:55.176 | Processed in 0.00 seconds +2026-03-27T14:02:55.1846529Z 15:02:55.183 | Pass "" (fp) +2026-03-27T14:02:55.1853320Z 15:02:55.184 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.1859170Z 15:02:55.185 | Full variant space: 1 +2026-03-27T14:02:55.1865908Z 15:02:55.186 | After settings filtering: 1 +2026-03-27T14:02:55.1872885Z 15:02:55.186 | After built-in stripping: 1 +2026-03-27T14:02:55.1879772Z 15:02:55.187 | After scriptable stripping: 1 +2026-03-27T14:02:55.1887196Z 15:02:55.188 | Processed in 0.00 seconds +2026-03-27T14:02:55.1893677Z 15:02:55.188 | Pass "" (vp) +2026-03-27T14:02:55.1899289Z 15:02:55.189 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.1904726Z 15:02:55.190 | Full variant space: 1 +2026-03-27T14:02:55.1910202Z 15:02:55.190 | After settings filtering: 1 +2026-03-27T14:02:55.1915493Z 15:02:55.191 | After built-in stripping: 1 +2026-03-27T14:02:55.1921067Z 15:02:55.191 | After scriptable stripping: 1 +2026-03-27T14:02:55.1934272Z 15:02:55.192 | Processed in 0.00 seconds +2026-03-27T14:02:55.1940160Z 15:02:55.193 | Pass "" (fp) +2026-03-27T14:02:55.1945648Z 15:02:55.194 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.1951992Z 15:02:55.194 | Full variant space: 1 +2026-03-27T14:02:55.1957191Z 15:02:55.195 | After settings filtering: 1 +2026-03-27T14:02:55.1963163Z 15:02:55.195 | After built-in stripping: 1 +2026-03-27T14:02:55.1968977Z 15:02:55.196 | After scriptable stripping: 1 +2026-03-27T14:02:55.1975937Z 15:02:55.197 | Processed in 0.00 seconds +2026-03-27T14:02:55.1983337Z 15:02:55.197 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:55.1988823Z 15:02:55.198 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.1995636Z 15:02:55.199 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:55.2001115Z 15:02:55.199 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.2007657Z 15:02:55.200 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:55.2013093Z 15:02:55.200 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.2019654Z 15:02:55.201 | Pass (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:55.2025061Z 15:02:55.202 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.2031331Z 15:02:55.202 | Serialized binary data for shader Hidden/Internal-GUIRoundedRectWithColorPerBorder in 0.00s +2026-03-27T14:02:55.2036841Z 15:02:55.203 | gamecore_scarlett (total internal programs: 4, unique: 2) +2026-03-27T14:02:55.2042194Z 15:02:55.203 | Compiling shader "Hidden/Internal-UIRDefault" +2026-03-27T14:02:55.2047815Z 15:02:55.204 | Pass "" (vp) +2026-03-27T14:02:55.2053631Z 15:02:55.204 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.2059454Z 15:02:55.205 | Full variant space: 40 +2026-03-27T14:02:55.2065208Z 15:02:55.206 | After settings filtering: 40 +2026-03-27T14:02:55.2070904Z 15:02:55.206 | After built-in stripping: 40 +2026-03-27T14:02:55.2080864Z 15:02:55.207 | After scriptable stripping: 40 +2026-03-27T14:02:55.2091673Z 15:02:55.208 | Processed in 0.00 seconds +2026-03-27T14:02:55.2101036Z 15:02:55.209 | Pass "" (fp) +2026-03-27T14:02:55.2106648Z 15:02:55.210 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.2112244Z 15:02:55.210 | Full variant space: 40 +2026-03-27T14:02:55.2117496Z 15:02:55.211 | After settings filtering: 40 +2026-03-27T14:02:55.2123019Z 15:02:55.211 | After built-in stripping: 40 +2026-03-27T14:02:55.2129091Z 15:02:55.212 | After scriptable stripping: 40 +2026-03-27T14:02:55.2134964Z 15:02:55.213 | Processed in 0.00 seconds +2026-03-27T14:02:55.2140972Z 15:02:55.213 | Pass (vp, gamecore_scarlett) finished in 0.54 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 40 variants (3.07s CPU time), skipped 0 variants. +2026-03-27T14:02:55.2145487Z 15:02:55.214 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.2151361Z 15:02:55.214 | Pass (fp, gamecore_scarlett) finished in 0.57 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 40 variants (3.06s CPU time), skipped 0 variants. +2026-03-27T14:02:55.2156282Z 15:02:55.215 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.2162004Z 15:02:55.215 | Compiling shader "Hidden/Internal-UIRDefault" +2026-03-27T14:02:55.2169681Z 15:02:55.216 | Pass "" (vp) +2026-03-27T14:02:55.2175959Z 15:02:55.217 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.2181590Z 15:02:55.217 | Full variant space: 40 +2026-03-27T14:02:55.2188420Z 15:02:55.218 | After settings filtering: 40 +2026-03-27T14:02:55.2192661Z 15:02:55.218 | After built-in stripping: 40 +2026-03-27T14:02:55.2197950Z 15:02:55.219 | After scriptable stripping: 40 +2026-03-27T14:02:55.2203280Z 15:02:55.219 | Processed in 0.00 seconds +2026-03-27T14:02:55.2208861Z 15:02:55.220 | Pass "" (fp) +2026-03-27T14:02:55.2214462Z 15:02:55.221 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.2225082Z 15:02:55.221 | Full variant space: 40 +2026-03-27T14:02:55.2231235Z 15:02:55.222 | After settings filtering: 40 +2026-03-27T14:02:55.2262295Z 15:02:55.223 | After built-in stripping: 40 +2026-03-27T14:02:55.2283791Z 15:02:55.227 | After scriptable stripping: 40 +2026-03-27T14:02:55.2290843Z 15:02:55.228 | Processed in 0.00 seconds +2026-03-27T14:02:55.2296376Z 15:02:55.229 | Pass (vp, gamecore_scarlett) finished in 1.75 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 40 variants (9.93s CPU time), skipped 0 variants. +2026-03-27T14:02:55.2303874Z 15:02:55.230 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.2311369Z 15:02:55.230 | Pass (fp, gamecore_scarlett) finished in 1.00 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 40 variants (5.34s CPU time), skipped 0 variants. +2026-03-27T14:02:55.2317819Z 15:02:55.231 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.2324737Z 15:02:55.232 | Serialized binary data for shader Hidden/Internal-UIRDefault in 0.00s +2026-03-27T14:02:55.2332667Z 15:02:55.232 | gamecore_scarlett (total internal programs: 80, unique: 80) +2026-03-27T14:02:55.2338086Z 15:02:55.233 | Compiling shader "Hidden/Internal-UIRAtlasBlitCopy" +2026-03-27T14:02:55.2343817Z 15:02:55.233 | Pass "" (vp) +2026-03-27T14:02:55.2349489Z 15:02:55.234 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.2355291Z 15:02:55.235 | Full variant space: 1 +2026-03-27T14:02:55.2361177Z 15:02:55.235 | After settings filtering: 1 +2026-03-27T14:02:55.2368182Z 15:02:55.236 | After built-in stripping: 1 +2026-03-27T14:02:55.2374462Z 15:02:55.237 | After scriptable stripping: 1 +2026-03-27T14:02:55.2383345Z 15:02:55.237 | Processed in 0.00 seconds +2026-03-27T14:02:55.2392401Z 15:02:55.238 | Pass "" (fp) +2026-03-27T14:02:55.2398414Z 15:02:55.239 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.2404278Z 15:02:55.240 | Full variant space: 1 +2026-03-27T14:02:55.2410961Z 15:02:55.240 | After settings filtering: 1 +2026-03-27T14:02:55.2416875Z 15:02:55.241 | After built-in stripping: 1 +2026-03-27T14:02:55.2422481Z 15:02:55.241 | After scriptable stripping: 1 +2026-03-27T14:02:55.2427958Z 15:02:55.242 | Processed in 0.00 seconds +2026-03-27T14:02:55.2434771Z 15:02:55.242 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:55.2439603Z 15:02:55.243 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.2445563Z 15:02:55.244 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:55.2452334Z 15:02:55.244 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.2457844Z 15:02:55.245 | Compiling shader "Hidden/Internal-UIRAtlasBlitCopy" +2026-03-27T14:02:55.2463462Z 15:02:55.245 | Pass "" (vp) +2026-03-27T14:02:55.2469274Z 15:02:55.246 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.2474680Z 15:02:55.247 | Full variant space: 1 +2026-03-27T14:02:55.2480157Z 15:02:55.247 | After settings filtering: 1 +2026-03-27T14:02:55.2485278Z 15:02:55.248 | After built-in stripping: 1 +2026-03-27T14:02:55.2490593Z 15:02:55.248 | After scriptable stripping: 1 +2026-03-27T14:02:55.2497022Z 15:02:55.249 | Processed in 0.00 seconds +2026-03-27T14:02:55.2501368Z 15:02:55.249 | Pass "" (fp) +2026-03-27T14:02:55.2506866Z 15:02:55.250 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.2512305Z 15:02:55.250 | Full variant space: 1 +2026-03-27T14:02:55.2517715Z 15:02:55.251 | After settings filtering: 1 +2026-03-27T14:02:55.2523499Z 15:02:55.251 | After built-in stripping: 1 +2026-03-27T14:02:55.2530591Z 15:02:55.252 | After scriptable stripping: 1 +2026-03-27T14:02:55.2538460Z 15:02:55.253 | Processed in 0.00 seconds +2026-03-27T14:02:55.6905339Z 15:02:55.666 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:55.7155070Z 15:02:55.695 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.7387271Z 15:02:55.720 | Pass (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:55.7637732Z 15:02:55.744 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.7711198Z 15:02:55.766 | Serialized binary data for shader Hidden/Internal-UIRAtlasBlitCopy in 0.00s +2026-03-27T14:02:55.7773427Z 15:02:55.775 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:55.7790041Z 15:02:55.777 | Compiling shader "Sprites/Default" +2026-03-27T14:02:55.7797740Z 15:02:55.779 | Pass "" (vp) +2026-03-27T14:02:55.7804259Z 15:02:55.780 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.7812655Z 15:02:55.780 | Full variant space: 8 +2026-03-27T14:02:55.7817640Z 15:02:55.781 | After settings filtering: 8 +2026-03-27T14:02:55.7829539Z 15:02:55.781 | After built-in stripping: 2 +2026-03-27T14:02:55.7840259Z 15:02:55.783 | After scriptable stripping: 2 +2026-03-27T14:02:55.7848247Z 15:02:55.784 | Processed in 0.00 seconds +2026-03-27T14:02:55.7853870Z 15:02:55.785 | Pass "" (fp) +2026-03-27T14:02:55.7863019Z 15:02:55.785 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.7869380Z 15:02:55.786 | Full variant space: 8 +2026-03-27T14:02:55.7875326Z 15:02:55.787 | After settings filtering: 8 +2026-03-27T14:02:55.7882949Z 15:02:55.787 | After built-in stripping: 2 +2026-03-27T14:02:55.7913965Z 15:02:55.788 | After scriptable stripping: 2 +2026-03-27T14:02:55.7933578Z 15:02:55.791 | Processed in 0.00 seconds +2026-03-27T14:02:55.7951329Z 15:02:55.794 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:55.7973390Z 15:02:55.796 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.7990077Z 15:02:55.798 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:55.8003005Z 15:02:55.799 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.8012160Z 15:02:55.800 | Compiling shader "Sprites/Default" +2026-03-27T14:02:55.8022346Z 15:02:55.801 | Pass "" (vp) +2026-03-27T14:02:55.8030287Z 15:02:55.802 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.8035863Z 15:02:55.803 | Full variant space: 8 +2026-03-27T14:02:55.8041630Z 15:02:55.803 | After settings filtering: 8 +2026-03-27T14:02:55.8052566Z 15:02:55.804 | After built-in stripping: 2 +2026-03-27T14:02:55.8060992Z 15:02:55.805 | After scriptable stripping: 2 +2026-03-27T14:02:55.8070806Z 15:02:55.806 | Processed in 0.00 seconds +2026-03-27T14:02:55.8077163Z 15:02:55.807 | Pass "" (fp) +2026-03-27T14:02:55.8082866Z 15:02:55.807 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.8089460Z 15:02:55.808 | Full variant space: 8 +2026-03-27T14:02:55.8095257Z 15:02:55.809 | After settings filtering: 8 +2026-03-27T14:02:55.8103426Z 15:02:55.809 | After built-in stripping: 2 +2026-03-27T14:02:55.8109873Z 15:02:55.810 | After scriptable stripping: 2 +2026-03-27T14:02:55.8464682Z 15:02:55.811 | Processed in 0.00 seconds +2026-03-27T14:02:55.8618268Z 15:02:55.848 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.17s CPU time), skipped 0 variants. +2026-03-27T14:02:55.8641874Z 15:02:55.863 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.8658795Z 15:02:55.864 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:55.8710361Z 15:02:55.867 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.8720325Z 15:02:55.871 | Serialized binary data for shader Sprites/Default in 0.00s +2026-03-27T14:02:55.8726878Z 15:02:55.872 | gamecore_scarlett (total internal programs: 4, unique: 4) +2026-03-27T14:02:55.8733351Z 15:02:55.872 | Compiling shader "Sprites/Mask" +2026-03-27T14:02:55.8739848Z 15:02:55.873 | Pass "" (vp) +2026-03-27T14:02:55.8745244Z 15:02:55.874 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.8754050Z 15:02:55.874 | Full variant space: 4 +2026-03-27T14:02:55.8760019Z 15:02:55.875 | After settings filtering: 4 +2026-03-27T14:02:55.8768057Z 15:02:55.876 | After built-in stripping: 2 +2026-03-27T14:02:55.8774040Z 15:02:55.877 | After scriptable stripping: 2 +2026-03-27T14:02:55.8780622Z 15:02:55.877 | Processed in 0.00 seconds +2026-03-27T14:02:55.8787797Z 15:02:55.878 | Pass "" (fp) +2026-03-27T14:02:55.8793335Z 15:02:55.879 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.8799179Z 15:02:55.879 | Full variant space: 4 +2026-03-27T14:02:55.8806922Z 15:02:55.880 | After settings filtering: 4 +2026-03-27T14:02:55.8818440Z 15:02:55.881 | After built-in stripping: 2 +2026-03-27T14:02:55.8824290Z 15:02:55.882 | After scriptable stripping: 2 +2026-03-27T14:02:55.8830310Z 15:02:55.882 | Processed in 0.00 seconds +2026-03-27T14:02:55.8840201Z 15:02:55.883 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:55.8849438Z 15:02:55.884 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.8855886Z 15:02:55.885 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:55.8861178Z 15:02:55.885 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:55.8867428Z 15:02:55.886 | Compiling shader "Sprites/Mask" +2026-03-27T14:02:55.8873180Z 15:02:55.886 | Pass "" (vp) +2026-03-27T14:02:55.8879900Z 15:02:55.887 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.8885639Z 15:02:55.888 | Full variant space: 4 +2026-03-27T14:02:55.8892926Z 15:02:55.888 | After settings filtering: 4 +2026-03-27T14:02:55.8899738Z 15:02:55.889 | After built-in stripping: 2 +2026-03-27T14:02:55.8906553Z 15:02:55.890 | After scriptable stripping: 2 +2026-03-27T14:02:55.8912701Z 15:02:55.890 | Processed in 0.00 seconds +2026-03-27T14:02:55.8918685Z 15:02:55.891 | Pass "" (fp) +2026-03-27T14:02:55.9177732Z 15:02:55.897 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:55.9438676Z 15:02:55.925 | Full variant space: 4 +2026-03-27T14:02:55.9721746Z 15:02:55.951 | After settings filtering: 4 +2026-03-27T14:02:55.9944048Z 15:02:55.978 | After built-in stripping: 2 +2026-03-27T14:02:55.9963936Z 15:02:55.996 | After scriptable stripping: 2 +2026-03-27T14:02:55.9984439Z 15:02:55.997 | Processed in 0.00 seconds +2026-03-27T14:02:55.9993623Z 15:02:55.998 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.16s CPU time), skipped 0 variants. +2026-03-27T14:02:55.9999091Z 15:02:55.999 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.0014548Z 15:02:56.000 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:56.0019530Z 15:02:56.001 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.0036643Z 15:02:56.002 | Serialized binary data for shader Sprites/Mask in 0.00s +2026-03-27T14:02:56.0043744Z 15:02:56.004 | gamecore_scarlett (total internal programs: 4, unique: 4) +2026-03-27T14:02:56.0060862Z 15:02:56.005 | Compiling shader "UI/Default" +2026-03-27T14:02:56.0066307Z 15:02:56.006 | Pass "Default" (vp) +2026-03-27T14:02:56.0071260Z 15:02:56.006 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.0076566Z 15:02:56.007 | Full variant space: 4 +2026-03-27T14:02:56.0082189Z 15:02:56.007 | After settings filtering: 4 +2026-03-27T14:02:56.0088381Z 15:02:56.008 | After built-in stripping: 4 +2026-03-27T14:02:56.0094281Z 15:02:56.009 | After scriptable stripping: 4 +2026-03-27T14:02:56.0103383Z 15:02:56.009 | Processed in 0.00 seconds +2026-03-27T14:02:56.0115058Z 15:02:56.011 | Pass "Default" (fp) +2026-03-27T14:02:56.0120777Z 15:02:56.011 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.0126332Z 15:02:56.012 | Full variant space: 4 +2026-03-27T14:02:56.0134259Z 15:02:56.012 | After settings filtering: 4 +2026-03-27T14:02:56.0140402Z 15:02:56.013 | After built-in stripping: 4 +2026-03-27T14:02:56.0146635Z 15:02:56.014 | After scriptable stripping: 4 +2026-03-27T14:02:56.0152169Z 15:02:56.014 | Processed in 0.00 seconds +2026-03-27T14:02:56.0157961Z 15:02:56.015 | Pass Default (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.17s CPU time), skipped 0 variants. +2026-03-27T14:02:56.0162246Z 15:02:56.015 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.0180056Z 15:02:56.016 | Pass Default (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.15s CPU time), skipped 0 variants. +2026-03-27T14:02:56.0189475Z 15:02:56.018 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.0194569Z 15:02:56.019 | Compiling shader "UI/Default" +2026-03-27T14:02:56.0199574Z 15:02:56.019 | Pass "Default" (vp) +2026-03-27T14:02:56.0205897Z 15:02:56.020 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.0216444Z 15:02:56.021 | Full variant space: 4 +2026-03-27T14:02:56.0228502Z 15:02:56.022 | After settings filtering: 4 +2026-03-27T14:02:56.0253242Z 15:02:56.023 | After built-in stripping: 4 +2026-03-27T14:02:56.0292274Z 15:02:56.027 | After scriptable stripping: 4 +2026-03-27T14:02:56.0305121Z 15:02:56.029 | Processed in 0.00 seconds +2026-03-27T14:02:56.0314171Z 15:02:56.030 | Pass "Default" (fp) +2026-03-27T14:02:56.0321886Z 15:02:56.031 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.0333186Z 15:02:56.032 | Full variant space: 4 +2026-03-27T14:02:56.0341938Z 15:02:56.033 | After settings filtering: 4 +2026-03-27T14:02:56.0353541Z 15:02:56.034 | After built-in stripping: 4 +2026-03-27T14:02:56.0364036Z 15:02:56.035 | After scriptable stripping: 4 +2026-03-27T14:02:56.0377324Z 15:02:56.036 | Processed in 0.00 seconds +2026-03-27T14:02:56.0386983Z 15:02:56.038 | Pass Default (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.44s CPU time), skipped 0 variants. +2026-03-27T14:02:56.0395738Z 15:02:56.038 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.0404548Z 15:02:56.039 | Pass Default (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.22s CPU time), skipped 0 variants. +2026-03-27T14:02:56.0411072Z 15:02:56.040 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.0432933Z 15:02:56.041 | Serialized binary data for shader UI/Default in 0.00s +2026-03-27T14:02:56.0443867Z 15:02:56.043 | gamecore_scarlett (total internal programs: 8, unique: 8) +2026-03-27T14:02:56.0454625Z 15:02:56.045 | Compiling shader "UI/DefaultETC1" +2026-03-27T14:02:56.0465656Z 15:02:56.046 | Pass "Default" (vp) +2026-03-27T14:02:56.0474550Z 15:02:56.046 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.0486668Z 15:02:56.047 | Full variant space: 4 +2026-03-27T14:02:56.0502005Z 15:02:56.049 | After settings filtering: 4 +2026-03-27T14:02:56.0513537Z 15:02:56.050 | After built-in stripping: 4 +2026-03-27T14:02:56.0523352Z 15:02:56.051 | After scriptable stripping: 4 +2026-03-27T14:02:56.0530436Z 15:02:56.052 | Processed in 0.00 seconds +2026-03-27T14:02:56.0538233Z 15:02:56.053 | Pass "Default" (fp) +2026-03-27T14:02:56.0546000Z 15:02:56.054 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.0553245Z 15:02:56.054 | Full variant space: 4 +2026-03-27T14:02:56.0560689Z 15:02:56.055 | After settings filtering: 4 +2026-03-27T14:02:56.0588452Z 15:02:56.056 | After built-in stripping: 4 +2026-03-27T14:02:56.0599398Z 15:02:56.059 | After scriptable stripping: 4 +2026-03-27T14:02:56.0606835Z 15:02:56.060 | Processed in 0.00 seconds +2026-03-27T14:02:56.0618467Z 15:02:56.061 | Pass Default (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.17s CPU time), skipped 0 variants. +2026-03-27T14:02:56.0635016Z 15:02:56.062 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.0659298Z 15:02:56.064 | Pass Default (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.15s CPU time), skipped 0 variants. +2026-03-27T14:02:56.1266089Z 15:02:56.081 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.1342804Z 15:02:56.132 | Compiling shader "UI/DefaultETC1" +2026-03-27T14:02:56.1433895Z 15:02:56.135 | Pass "Default" (vp) +2026-03-27T14:02:56.1460457Z 15:02:56.144 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.1484824Z 15:02:56.147 | Full variant space: 4 +2026-03-27T14:02:56.1492929Z 15:02:56.148 | After settings filtering: 4 +2026-03-27T14:02:56.1500793Z 15:02:56.149 | After built-in stripping: 4 +2026-03-27T14:02:56.1506296Z 15:02:56.150 | After scriptable stripping: 4 +2026-03-27T14:02:56.1512666Z 15:02:56.150 | Processed in 0.00 seconds +2026-03-27T14:02:56.1530399Z 15:02:56.151 | Pass "Default" (fp) +2026-03-27T14:02:56.1537728Z 15:02:56.153 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.1545800Z 15:02:56.154 | Full variant space: 4 +2026-03-27T14:02:56.1550363Z 15:02:56.154 | After settings filtering: 4 +2026-03-27T14:02:56.1557717Z 15:02:56.155 | After built-in stripping: 4 +2026-03-27T14:02:56.1563236Z 15:02:56.156 | After scriptable stripping: 4 +2026-03-27T14:02:56.1569967Z 15:02:56.156 | Processed in 0.00 seconds +2026-03-27T14:02:56.1576469Z 15:02:56.157 | Pass Default (vp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.47s CPU time), skipped 0 variants. +2026-03-27T14:02:56.1581930Z 15:02:56.157 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.1588767Z 15:02:56.158 | Pass Default (fp, gamecore_scarlett) finished in 0.17 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.23s CPU time), skipped 0 variants. +2026-03-27T14:02:56.1593656Z 15:02:56.158 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.1599475Z 15:02:56.159 | Serialized binary data for shader UI/DefaultETC1 in 0.00s +2026-03-27T14:02:56.1605367Z 15:02:56.160 | gamecore_scarlett (total internal programs: 8, unique: 8) +2026-03-27T14:02:56.1610800Z 15:02:56.160 | Compiling shader "Hidden/CubeBlur" +2026-03-27T14:02:56.1616798Z 15:02:56.161 | Pass "" (vp) +2026-03-27T14:02:56.1622763Z 15:02:56.161 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.1628447Z 15:02:56.162 | Full variant space: 1 +2026-03-27T14:02:56.1633083Z 15:02:56.163 | After settings filtering: 1 +2026-03-27T14:02:56.1639270Z 15:02:56.163 | After built-in stripping: 1 +2026-03-27T14:02:56.1645653Z 15:02:56.164 | After scriptable stripping: 1 +2026-03-27T14:02:56.1652767Z 15:02:56.164 | Processed in 0.00 seconds +2026-03-27T14:02:56.1658146Z 15:02:56.165 | Pass "" (fp) +2026-03-27T14:02:56.1664712Z 15:02:56.166 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.1680425Z 15:02:56.167 | Full variant space: 1 +2026-03-27T14:02:56.1691235Z 15:02:56.168 | After settings filtering: 1 +2026-03-27T14:02:56.1707740Z 15:02:56.169 | After built-in stripping: 1 +2026-03-27T14:02:56.1721397Z 15:02:56.171 | After scriptable stripping: 1 +2026-03-27T14:02:56.1742973Z 15:02:56.173 | Processed in 0.00 seconds +2026-03-27T14:02:56.1750122Z 15:02:56.174 | Pass "" (vp) +2026-03-27T14:02:56.1757220Z 15:02:56.175 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.1762891Z 15:02:56.175 | Full variant space: 1 +2026-03-27T14:02:56.1768062Z 15:02:56.176 | After settings filtering: 1 +2026-03-27T14:02:56.1773772Z 15:02:56.176 | After built-in stripping: 1 +2026-03-27T14:02:56.1780443Z 15:02:56.177 | After scriptable stripping: 1 +2026-03-27T14:02:56.1786008Z 15:02:56.178 | Processed in 0.00 seconds +2026-03-27T14:02:56.1791792Z 15:02:56.178 | Pass "" (fp) +2026-03-27T14:02:56.1800157Z 15:02:56.179 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.1812531Z 15:02:56.180 | Full variant space: 1 +2026-03-27T14:02:56.1819736Z 15:02:56.181 | After settings filtering: 1 +2026-03-27T14:02:56.1827828Z 15:02:56.182 | After built-in stripping: 1 +2026-03-27T14:02:56.2618900Z 15:02:56.227 | After scriptable stripping: 1 +2026-03-27T14:02:56.2990812Z 15:02:56.277 | Processed in 0.00 seconds +2026-03-27T14:02:56.3020408Z 15:02:56.300 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:56.3042618Z 15:02:56.302 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.3060363Z 15:02:56.304 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. +2026-03-27T14:02:56.3125274Z 15:02:56.306 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.3137631Z 15:02:56.313 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:56.3146491Z 15:02:56.314 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.3154394Z 15:02:56.315 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:56.3160347Z 15:02:56.315 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.3169029Z 15:02:56.316 | Compiling shader "Hidden/CubeBlur" +2026-03-27T14:02:56.3175875Z 15:02:56.317 | Pass "" (vp) +2026-03-27T14:02:56.3186469Z 15:02:56.318 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.3192346Z 15:02:56.318 | Full variant space: 1 +2026-03-27T14:02:56.3197897Z 15:02:56.319 | After settings filtering: 1 +2026-03-27T14:02:56.3202730Z 15:02:56.320 | After built-in stripping: 1 +2026-03-27T14:02:56.3212146Z 15:02:56.320 | After scriptable stripping: 1 +2026-03-27T14:02:56.3238411Z 15:02:56.321 | Processed in 0.00 seconds +2026-03-27T14:02:56.3283785Z 15:02:56.326 | Pass "" (fp) +2026-03-27T14:02:56.3313691Z 15:02:56.329 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.3324969Z 15:02:56.331 | Full variant space: 1 +2026-03-27T14:02:56.3342543Z 15:02:56.332 | After settings filtering: 1 +2026-03-27T14:02:56.3384616Z 15:02:56.335 | After built-in stripping: 1 +2026-03-27T14:02:56.3405703Z 15:02:56.339 | After scriptable stripping: 1 +2026-03-27T14:02:56.3413285Z 15:02:56.340 | Processed in 0.00 seconds +2026-03-27T14:02:56.3418770Z 15:02:56.341 | Pass "" (vp) +2026-03-27T14:02:56.3424379Z 15:02:56.342 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.3449451Z 15:02:56.342 | Full variant space: 1 +2026-03-27T14:02:56.3456293Z 15:02:56.345 | After settings filtering: 1 +2026-03-27T14:02:56.3462848Z 15:02:56.345 | After built-in stripping: 1 +2026-03-27T14:02:56.3468331Z 15:02:56.346 | After scriptable stripping: 1 +2026-03-27T14:02:56.3473967Z 15:02:56.346 | Processed in 0.00 seconds +2026-03-27T14:02:56.3480041Z 15:02:56.347 | Pass "" (fp) +2026-03-27T14:02:56.3486937Z 15:02:56.348 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.3492348Z 15:02:56.348 | Full variant space: 1 +2026-03-27T14:02:56.3497970Z 15:02:56.349 | After settings filtering: 1 +2026-03-27T14:02:56.3503636Z 15:02:56.350 | After built-in stripping: 1 +2026-03-27T14:02:56.3515012Z 15:02:56.350 | After scriptable stripping: 1 +2026-03-27T14:02:56.3528068Z 15:02:56.351 | Processed in 0.00 seconds +2026-03-27T14:02:56.3554084Z 15:02:56.354 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:56.3631039Z 15:02:56.358 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.7675363Z 15:02:56.766 | Pass (fp, gamecore_scarlett) finished in 0.33 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.33s CPU time), skipped 0 variants. +2026-03-27T14:02:56.7681743Z 15:02:56.767 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.7688382Z 15:02:56.768 | Pass (vp, gamecore_scarlett) finished in 0.33 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:56.7694072Z 15:02:56.768 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.7701045Z 15:02:56.769 | Pass (fp, gamecore_scarlett) finished in 0.32 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:56.7709725Z 15:02:56.770 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.7725340Z 15:02:56.771 | Serialized binary data for shader Hidden/CubeBlur in 0.00s +2026-03-27T14:02:56.7740644Z 15:02:56.773 | gamecore_scarlett (total internal programs: 4, unique: 3) +2026-03-27T14:02:56.7761751Z 15:02:56.775 | Compiling shader "Hidden/CubeCopy" +2026-03-27T14:02:56.7770358Z 15:02:56.776 | Pass "" (vp) +2026-03-27T14:02:56.7776278Z 15:02:56.777 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.7782819Z 15:02:56.777 | Full variant space: 1 +2026-03-27T14:02:56.7788879Z 15:02:56.778 | After settings filtering: 1 +2026-03-27T14:02:56.7797206Z 15:02:56.779 | After built-in stripping: 1 +2026-03-27T14:02:56.7803443Z 15:02:56.779 | After scriptable stripping: 1 +2026-03-27T14:02:56.7815060Z 15:02:56.780 | Processed in 0.00 seconds +2026-03-27T14:02:56.7838571Z 15:02:56.783 | Pass "" (fp) +2026-03-27T14:02:56.7851546Z 15:02:56.784 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.7863315Z 15:02:56.785 | Full variant space: 1 +2026-03-27T14:02:56.7872731Z 15:02:56.786 | After settings filtering: 1 +2026-03-27T14:02:56.7878268Z 15:02:56.787 | After built-in stripping: 1 +2026-03-27T14:02:56.7884591Z 15:02:56.788 | After scriptable stripping: 1 +2026-03-27T14:02:56.7892919Z 15:02:56.788 | Processed in 0.00 seconds +2026-03-27T14:02:56.7899189Z 15:02:56.789 | Pass "" (vp) +2026-03-27T14:02:56.7904516Z 15:02:56.790 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.7909948Z 15:02:56.790 | Full variant space: 1 +2026-03-27T14:02:56.7915261Z 15:02:56.791 | After settings filtering: 1 +2026-03-27T14:02:56.7920890Z 15:02:56.791 | After built-in stripping: 1 +2026-03-27T14:02:56.7926830Z 15:02:56.792 | After scriptable stripping: 1 +2026-03-27T14:02:56.7933659Z 15:02:56.792 | Processed in 0.00 seconds +2026-03-27T14:02:56.7939469Z 15:02:56.793 | Pass "" (fp) +2026-03-27T14:02:56.7945043Z 15:02:56.794 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.7950621Z 15:02:56.794 | Full variant space: 1 +2026-03-27T14:02:56.7955972Z 15:02:56.795 | After settings filtering: 1 +2026-03-27T14:02:56.7961603Z 15:02:56.795 | After built-in stripping: 1 +2026-03-27T14:02:56.7967026Z 15:02:56.796 | After scriptable stripping: 1 +2026-03-27T14:02:56.7976592Z 15:02:56.797 | Processed in 0.00 seconds +2026-03-27T14:02:56.7983449Z 15:02:56.797 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:56.7993295Z 15:02:56.798 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.7999772Z 15:02:56.799 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8007581Z 15:02:56.800 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8015846Z 15:02:56.800 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8028550Z 15:02:56.801 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8036693Z 15:02:56.803 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8043377Z 15:02:56.803 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8050792Z 15:02:56.804 | Compiling shader "Hidden/CubeCopy" +2026-03-27T14:02:56.8055641Z 15:02:56.805 | Pass "" (vp) +2026-03-27T14:02:56.8061625Z 15:02:56.805 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8068233Z 15:02:56.806 | Full variant space: 1 +2026-03-27T14:02:56.8075486Z 15:02:56.806 | After settings filtering: 1 +2026-03-27T14:02:56.8083211Z 15:02:56.807 | After built-in stripping: 1 +2026-03-27T14:02:56.8089315Z 15:02:56.808 | After scriptable stripping: 1 +2026-03-27T14:02:56.8095219Z 15:02:56.809 | Processed in 0.00 seconds +2026-03-27T14:02:56.8101080Z 15:02:56.809 | Pass "" (fp) +2026-03-27T14:02:56.8108470Z 15:02:56.810 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8114236Z 15:02:56.810 | Full variant space: 1 +2026-03-27T14:02:56.8120364Z 15:02:56.811 | After settings filtering: 1 +2026-03-27T14:02:56.8131262Z 15:02:56.812 | After built-in stripping: 1 +2026-03-27T14:02:56.8147933Z 15:02:56.814 | After scriptable stripping: 1 +2026-03-27T14:02:56.8155811Z 15:02:56.815 | Processed in 0.00 seconds +2026-03-27T14:02:56.8163521Z 15:02:56.815 | Pass "" (vp) +2026-03-27T14:02:56.8171955Z 15:02:56.816 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8179446Z 15:02:56.817 | Full variant space: 1 +2026-03-27T14:02:56.8185733Z 15:02:56.818 | After settings filtering: 1 +2026-03-27T14:02:56.8191758Z 15:02:56.818 | After built-in stripping: 1 +2026-03-27T14:02:56.8198287Z 15:02:56.819 | After scriptable stripping: 1 +2026-03-27T14:02:56.8208161Z 15:02:56.820 | Processed in 0.00 seconds +2026-03-27T14:02:56.8216870Z 15:02:56.821 | Pass "" (fp) +2026-03-27T14:02:56.8223271Z 15:02:56.821 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8229128Z 15:02:56.822 | Full variant space: 1 +2026-03-27T14:02:56.8235271Z 15:02:56.823 | After settings filtering: 1 +2026-03-27T14:02:56.8240721Z 15:02:56.823 | After built-in stripping: 1 +2026-03-27T14:02:56.8247024Z 15:02:56.824 | After scriptable stripping: 1 +2026-03-27T14:02:56.8253422Z 15:02:56.824 | Processed in 0.00 seconds +2026-03-27T14:02:56.8259684Z 15:02:56.825 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8265480Z 15:02:56.826 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8273021Z 15:02:56.826 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8277711Z 15:02:56.827 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8289383Z 15:02:56.827 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8296909Z 15:02:56.829 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8302898Z 15:02:56.829 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8308303Z 15:02:56.830 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8313609Z 15:02:56.830 | Serialized binary data for shader Hidden/CubeCopy in 0.00s +2026-03-27T14:02:56.8319365Z 15:02:56.831 | gamecore_scarlett (total internal programs: 4, unique: 2) +2026-03-27T14:02:56.8325262Z 15:02:56.832 | Compiling shader "Hidden/CubeBlend" +2026-03-27T14:02:56.8331393Z 15:02:56.832 | Pass "" (vp) +2026-03-27T14:02:56.8337072Z 15:02:56.833 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8343238Z 15:02:56.833 | Full variant space: 1 +2026-03-27T14:02:56.8348917Z 15:02:56.834 | After settings filtering: 1 +2026-03-27T14:02:56.8354437Z 15:02:56.835 | After built-in stripping: 1 +2026-03-27T14:02:56.8359954Z 15:02:56.835 | After scriptable stripping: 1 +2026-03-27T14:02:56.8365199Z 15:02:56.836 | Processed in 0.00 seconds +2026-03-27T14:02:56.8370898Z 15:02:56.836 | Pass "" (fp) +2026-03-27T14:02:56.8376374Z 15:02:56.837 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8381823Z 15:02:56.837 | Full variant space: 1 +2026-03-27T14:02:56.8387124Z 15:02:56.838 | After settings filtering: 1 +2026-03-27T14:02:56.8392068Z 15:02:56.838 | After built-in stripping: 1 +2026-03-27T14:02:56.8397225Z 15:02:56.839 | After scriptable stripping: 1 +2026-03-27T14:02:56.8402440Z 15:02:56.839 | Processed in 0.00 seconds +2026-03-27T14:02:56.8408265Z 15:02:56.840 | Pass "" (vp) +2026-03-27T14:02:56.8414263Z 15:02:56.841 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8420392Z 15:02:56.841 | Full variant space: 1 +2026-03-27T14:02:56.8425103Z 15:02:56.842 | After settings filtering: 1 +2026-03-27T14:02:56.8430248Z 15:02:56.842 | After built-in stripping: 1 +2026-03-27T14:02:56.8435400Z 15:02:56.843 | After scriptable stripping: 1 +2026-03-27T14:02:56.8440780Z 15:02:56.843 | Processed in 0.00 seconds +2026-03-27T14:02:56.8454788Z 15:02:56.844 | Pass "" (fp) +2026-03-27T14:02:56.8460456Z 15:02:56.845 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8465761Z 15:02:56.846 | Full variant space: 1 +2026-03-27T14:02:56.8471008Z 15:02:56.846 | After settings filtering: 1 +2026-03-27T14:02:56.8476044Z 15:02:56.847 | After built-in stripping: 1 +2026-03-27T14:02:56.8481461Z 15:02:56.847 | After scriptable stripping: 1 +2026-03-27T14:02:56.8487248Z 15:02:56.848 | Processed in 0.00 seconds +2026-03-27T14:02:56.8493093Z 15:02:56.848 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8498199Z 15:02:56.849 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8504241Z 15:02:56.849 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8508973Z 15:02:56.850 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8514821Z 15:02:56.851 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8519190Z 15:02:56.851 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8525334Z 15:02:56.852 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:56.8531544Z 15:02:56.852 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:56.8537462Z 15:02:56.853 | Compiling shader "Hidden/CubeBlend" +2026-03-27T14:02:56.8542945Z 15:02:56.853 | Pass "" (vp) +2026-03-27T14:02:56.8548248Z 15:02:56.854 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8553727Z 15:02:56.854 | Full variant space: 1 +2026-03-27T14:02:56.8558951Z 15:02:56.855 | After settings filtering: 1 +2026-03-27T14:02:56.8564512Z 15:02:56.856 | After built-in stripping: 1 +2026-03-27T14:02:56.8570391Z 15:02:56.856 | After scriptable stripping: 1 +2026-03-27T14:02:56.8576507Z 15:02:56.857 | Processed in 0.00 seconds +2026-03-27T14:02:56.8582526Z 15:02:56.857 | Pass "" (fp) +2026-03-27T14:02:56.8587849Z 15:02:56.858 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:56.8594731Z 15:02:56.859 | Full variant space: 1 +2026-03-27T14:02:56.9170974Z 15:02:56.899 | After settings filtering: 1 +2026-03-27T14:02:56.9426358Z 15:02:56.923 | After built-in stripping: 1 +2026-03-27T14:02:56.9715846Z 15:02:56.949 | After scriptable stripping: 1 +2026-03-27T14:02:56.9929509Z 15:02:56.977 | Processed in 0.00 seconds +2026-03-27T14:02:57.0158797Z 15:02:57.001 | Pass "" (vp) +2026-03-27T14:02:57.0283066Z 15:02:57.023 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.0354740Z 15:02:57.031 | Full variant space: 1 +2026-03-27T14:02:57.0367107Z 15:02:57.036 | After settings filtering: 1 +2026-03-27T14:02:57.0391672Z 15:02:57.038 | After built-in stripping: 1 +2026-03-27T14:02:57.0403696Z 15:02:57.039 | After scriptable stripping: 1 +2026-03-27T14:02:57.0411046Z 15:02:57.040 | Processed in 0.00 seconds +2026-03-27T14:02:57.0420616Z 15:02:57.041 | Pass "" (fp) +2026-03-27T14:02:57.0427971Z 15:02:57.042 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.0434426Z 15:02:57.042 | Full variant space: 1 +2026-03-27T14:02:57.0440711Z 15:02:57.043 | After settings filtering: 1 +2026-03-27T14:02:57.0448575Z 15:02:57.044 | After built-in stripping: 1 +2026-03-27T14:02:57.0454412Z 15:02:57.045 | After scriptable stripping: 1 +2026-03-27T14:02:57.0459598Z 15:02:57.045 | Processed in 0.00 seconds +2026-03-27T14:02:57.0465635Z 15:02:57.046 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:57.0470891Z 15:02:57.046 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.0476582Z 15:02:57.047 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.0481691Z 15:02:57.047 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.0640716Z 15:02:57.048 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:57.0961721Z 15:02:57.074 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.1201619Z 15:02:57.106 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.1418876Z 15:02:57.126 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.1472665Z 15:02:57.145 | Serialized binary data for shader Hidden/CubeBlend in 0.00s +2026-03-27T14:02:57.1722644Z 15:02:57.152 | gamecore_scarlett (total internal programs: 4, unique: 2) +2026-03-27T14:02:57.1963456Z 15:02:57.180 | Compiling shader "Hidden/VR/BlitTexArraySlice" +2026-03-27T14:02:57.2184727Z 15:02:57.206 | Pass "" (vp) +2026-03-27T14:02:57.2449511Z 15:02:57.226 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.2687092Z 15:02:57.253 | Full variant space: 1 +2026-03-27T14:02:57.2927199Z 15:02:57.274 | After settings filtering: 1 +2026-03-27T14:02:57.3316106Z 15:02:57.304 | After built-in stripping: 1 +2026-03-27T14:02:57.3689063Z 15:02:57.339 | After scriptable stripping: 1 +2026-03-27T14:02:57.3815527Z 15:02:57.373 | Processed in 0.00 seconds +2026-03-27T14:02:57.3886930Z 15:02:57.385 | Pass "" (fp) +2026-03-27T14:02:57.3970537Z 15:02:57.391 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.3995995Z 15:02:57.397 | Full variant space: 1 +2026-03-27T14:02:57.4017469Z 15:02:57.400 | After settings filtering: 1 +2026-03-27T14:02:57.4034353Z 15:02:57.402 | After built-in stripping: 1 +2026-03-27T14:02:57.4056119Z 15:02:57.403 | After scriptable stripping: 1 +2026-03-27T14:02:57.4085668Z 15:02:57.406 | Processed in 0.00 seconds +2026-03-27T14:02:57.4122267Z 15:02:57.409 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.4131037Z 15:02:57.412 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.4138942Z 15:02:57.413 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.4147108Z 15:02:57.414 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.4152259Z 15:02:57.414 | Compiling shader "Hidden/VR/BlitTexArraySlice" +2026-03-27T14:02:57.4158775Z 15:02:57.415 | Pass "" (vp) +2026-03-27T14:02:57.4164924Z 15:02:57.416 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4171248Z 15:02:57.416 | Full variant space: 1 +2026-03-27T14:02:57.4177808Z 15:02:57.417 | After settings filtering: 1 +2026-03-27T14:02:57.4183250Z 15:02:57.417 | After built-in stripping: 1 +2026-03-27T14:02:57.4188847Z 15:02:57.418 | After scriptable stripping: 1 +2026-03-27T14:02:57.4193895Z 15:02:57.419 | Processed in 0.00 seconds +2026-03-27T14:02:57.4199433Z 15:02:57.419 | Pass "" (fp) +2026-03-27T14:02:57.4205484Z 15:02:57.420 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4211286Z 15:02:57.420 | Full variant space: 1 +2026-03-27T14:02:57.4217079Z 15:02:57.421 | After settings filtering: 1 +2026-03-27T14:02:57.4225146Z 15:02:57.421 | After built-in stripping: 1 +2026-03-27T14:02:57.4237701Z 15:02:57.422 | After scriptable stripping: 1 +2026-03-27T14:02:57.4298618Z 15:02:57.427 | Processed in 0.00 seconds +2026-03-27T14:02:57.4325735Z 15:02:57.431 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:57.4356846Z 15:02:57.433 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.4378101Z 15:02:57.437 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.4384494Z 15:02:57.437 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.4395510Z 15:02:57.438 | Serialized binary data for shader Hidden/VR/BlitTexArraySlice in 0.00s +2026-03-27T14:02:57.4401779Z 15:02:57.439 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:57.4409249Z 15:02:57.440 | Compiling shader "Hidden/Internal-ODSWorldTexture" +2026-03-27T14:02:57.4414939Z 15:02:57.441 | Pass "" (vp) +2026-03-27T14:02:57.4420697Z 15:02:57.441 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4426624Z 15:02:57.442 | Full variant space: 1 +2026-03-27T14:02:57.4432553Z 15:02:57.442 | After settings filtering: 1 +2026-03-27T14:02:57.4438024Z 15:02:57.443 | After built-in stripping: 1 +2026-03-27T14:02:57.4443752Z 15:02:57.443 | After scriptable stripping: 1 +2026-03-27T14:02:57.4449191Z 15:02:57.444 | Processed in 0.00 seconds +2026-03-27T14:02:57.4454613Z 15:02:57.445 | Pass "" (fp) +2026-03-27T14:02:57.4459981Z 15:02:57.445 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4465202Z 15:02:57.446 | Full variant space: 1 +2026-03-27T14:02:57.4470494Z 15:02:57.446 | After settings filtering: 1 +2026-03-27T14:02:57.4475890Z 15:02:57.447 | After built-in stripping: 1 +2026-03-27T14:02:57.4482513Z 15:02:57.447 | After scriptable stripping: 1 +2026-03-27T14:02:57.4488394Z 15:02:57.448 | Processed in 0.00 seconds +2026-03-27T14:02:57.4494092Z 15:02:57.449 | Pass "" (vp) +2026-03-27T14:02:57.4499302Z 15:02:57.449 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4504516Z 15:02:57.450 | Full variant space: 1 +2026-03-27T14:02:57.4510143Z 15:02:57.450 | After settings filtering: 1 +2026-03-27T14:02:57.4515033Z 15:02:57.451 | After built-in stripping: 1 +2026-03-27T14:02:57.4520520Z 15:02:57.451 | After scriptable stripping: 1 +2026-03-27T14:02:57.4527188Z 15:02:57.452 | Processed in 0.00 seconds +2026-03-27T14:02:57.4532749Z 15:02:57.452 | Pass "" (fp) +2026-03-27T14:02:57.4539117Z 15:02:57.453 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4544869Z 15:02:57.454 | Full variant space: 1 +2026-03-27T14:02:57.4554734Z 15:02:57.454 | After settings filtering: 1 +2026-03-27T14:02:57.4560483Z 15:02:57.455 | After built-in stripping: 1 +2026-03-27T14:02:57.4566946Z 15:02:57.456 | After scriptable stripping: 1 +2026-03-27T14:02:57.4573865Z 15:02:57.457 | Processed in 0.00 seconds +2026-03-27T14:02:57.4580194Z 15:02:57.457 | Pass "" (vp) +2026-03-27T14:02:57.4586825Z 15:02:57.458 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4592851Z 15:02:57.458 | Full variant space: 1 +2026-03-27T14:02:57.4597494Z 15:02:57.459 | After settings filtering: 1 +2026-03-27T14:02:57.4603189Z 15:02:57.459 | After built-in stripping: 1 +2026-03-27T14:02:57.4609678Z 15:02:57.460 | After scriptable stripping: 1 +2026-03-27T14:02:57.4615102Z 15:02:57.461 | Processed in 0.00 seconds +2026-03-27T14:02:57.4620572Z 15:02:57.461 | Pass "" (fp) +2026-03-27T14:02:57.4626179Z 15:02:57.462 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4631213Z 15:02:57.462 | Full variant space: 1 +2026-03-27T14:02:57.4640797Z 15:02:57.463 | After settings filtering: 1 +2026-03-27T14:02:57.4646380Z 15:02:57.464 | After built-in stripping: 1 +2026-03-27T14:02:57.4652057Z 15:02:57.464 | After scriptable stripping: 1 +2026-03-27T14:02:57.4657832Z 15:02:57.465 | Processed in 0.00 seconds +2026-03-27T14:02:57.4663498Z 15:02:57.465 | Pass "" (vp) +2026-03-27T14:02:57.4669808Z 15:02:57.466 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4675977Z 15:02:57.467 | Full variant space: 1 +2026-03-27T14:02:57.4682844Z 15:02:57.467 | After settings filtering: 1 +2026-03-27T14:02:57.4688505Z 15:02:57.468 | After built-in stripping: 1 +2026-03-27T14:02:57.4694420Z 15:02:57.469 | After scriptable stripping: 1 +2026-03-27T14:02:57.4699996Z 15:02:57.469 | Processed in 0.00 seconds +2026-03-27T14:02:57.4711132Z 15:02:57.470 | Pass "" (fp) +2026-03-27T14:02:57.4718697Z 15:02:57.471 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4723990Z 15:02:57.472 | Full variant space: 1 +2026-03-27T14:02:57.4729914Z 15:02:57.472 | After settings filtering: 1 +2026-03-27T14:02:57.4736463Z 15:02:57.473 | After built-in stripping: 1 +2026-03-27T14:02:57.4742632Z 15:02:57.473 | After scriptable stripping: 1 +2026-03-27T14:02:57.4748135Z 15:02:57.474 | Processed in 0.00 seconds +2026-03-27T14:02:57.4755031Z 15:02:57.475 | Pass "" (vp) +2026-03-27T14:02:57.4766371Z 15:02:57.475 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4772399Z 15:02:57.476 | Full variant space: 1 +2026-03-27T14:02:57.4779154Z 15:02:57.477 | After settings filtering: 1 +2026-03-27T14:02:57.4786332Z 15:02:57.478 | After built-in stripping: 1 +2026-03-27T14:02:57.4791202Z 15:02:57.478 | After scriptable stripping: 1 +2026-03-27T14:02:57.4796870Z 15:02:57.479 | Processed in 0.00 seconds +2026-03-27T14:02:57.4805196Z 15:02:57.480 | Pass "" (fp) +2026-03-27T14:02:57.4814767Z 15:02:57.480 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4822224Z 15:02:57.481 | Full variant space: 1 +2026-03-27T14:02:57.4828200Z 15:02:57.482 | After settings filtering: 1 +2026-03-27T14:02:57.4834635Z 15:02:57.483 | After built-in stripping: 1 +2026-03-27T14:02:57.4840844Z 15:02:57.483 | After scriptable stripping: 1 +2026-03-27T14:02:57.4847262Z 15:02:57.484 | Processed in 0.00 seconds +2026-03-27T14:02:57.4853337Z 15:02:57.484 | Pass "" (vp) +2026-03-27T14:02:57.4861728Z 15:02:57.485 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4867918Z 15:02:57.486 | Full variant space: 1 +2026-03-27T14:02:57.4873579Z 15:02:57.486 | After settings filtering: 1 +2026-03-27T14:02:57.4879904Z 15:02:57.487 | After built-in stripping: 1 +2026-03-27T14:02:57.4886750Z 15:02:57.488 | After scriptable stripping: 1 +2026-03-27T14:02:57.4893352Z 15:02:57.488 | Processed in 0.00 seconds +2026-03-27T14:02:57.4899424Z 15:02:57.489 | Pass "" (fp) +2026-03-27T14:02:57.4905073Z 15:02:57.490 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4910999Z 15:02:57.490 | Full variant space: 1 +2026-03-27T14:02:57.4917170Z 15:02:57.491 | After settings filtering: 1 +2026-03-27T14:02:57.4922762Z 15:02:57.491 | After built-in stripping: 1 +2026-03-27T14:02:57.4929472Z 15:02:57.492 | After scriptable stripping: 1 +2026-03-27T14:02:57.4936614Z 15:02:57.493 | Processed in 0.00 seconds +2026-03-27T14:02:57.4942719Z 15:02:57.493 | Pass "" (vp) +2026-03-27T14:02:57.4948287Z 15:02:57.494 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4954142Z 15:02:57.495 | Full variant space: 1 +2026-03-27T14:02:57.4959612Z 15:02:57.495 | After settings filtering: 1 +2026-03-27T14:02:57.4965271Z 15:02:57.496 | After built-in stripping: 1 +2026-03-27T14:02:57.4971404Z 15:02:57.496 | After scriptable stripping: 1 +2026-03-27T14:02:57.4976531Z 15:02:57.497 | Processed in 0.00 seconds +2026-03-27T14:02:57.4982889Z 15:02:57.497 | Pass "" (fp) +2026-03-27T14:02:57.4988137Z 15:02:57.498 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.4994921Z 15:02:57.499 | Full variant space: 1 +2026-03-27T14:02:57.5000403Z 15:02:57.499 | After settings filtering: 1 +2026-03-27T14:02:57.5005537Z 15:02:57.500 | After built-in stripping: 1 +2026-03-27T14:02:57.5011698Z 15:02:57.500 | After scriptable stripping: 1 +2026-03-27T14:02:57.5023585Z 15:02:57.501 | Processed in 0.00 seconds +2026-03-27T14:02:57.5029295Z 15:02:57.502 | Pass "" (vp) +2026-03-27T14:02:57.5034722Z 15:02:57.503 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.5040584Z 15:02:57.503 | Full variant space: 1 +2026-03-27T14:02:57.5046260Z 15:02:57.504 | After settings filtering: 1 +2026-03-27T14:02:57.5052072Z 15:02:57.504 | After built-in stripping: 1 +2026-03-27T14:02:57.5062126Z 15:02:57.505 | After scriptable stripping: 1 +2026-03-27T14:02:57.5067606Z 15:02:57.506 | Processed in 0.00 seconds +2026-03-27T14:02:57.5073632Z 15:02:57.506 | Pass "" (fp) +2026-03-27T14:02:57.5078937Z 15:02:57.507 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.5084698Z 15:02:57.508 | Full variant space: 1 +2026-03-27T14:02:57.5090937Z 15:02:57.508 | After settings filtering: 1 +2026-03-27T14:02:57.5096904Z 15:02:57.509 | After built-in stripping: 1 +2026-03-27T14:02:57.5103792Z 15:02:57.509 | After scriptable stripping: 1 +2026-03-27T14:02:57.5109456Z 15:02:57.510 | Processed in 0.00 seconds +2026-03-27T14:02:57.5115482Z 15:02:57.511 | Pass "" (vp) +2026-03-27T14:02:57.5121621Z 15:02:57.511 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.5127530Z 15:02:57.512 | Full variant space: 1 +2026-03-27T14:02:57.5133045Z 15:02:57.512 | After settings filtering: 1 +2026-03-27T14:02:57.5138639Z 15:02:57.513 | After built-in stripping: 1 +2026-03-27T14:02:57.5144239Z 15:02:57.514 | After scriptable stripping: 1 +2026-03-27T14:02:57.5149864Z 15:02:57.514 | Processed in 0.00 seconds +2026-03-27T14:02:57.5155387Z 15:02:57.515 | Pass "" (fp) +2026-03-27T14:02:57.5161123Z 15:02:57.515 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.5177542Z 15:02:57.516 | Full variant space: 1 +2026-03-27T14:02:57.5190725Z 15:02:57.518 | After settings filtering: 1 +2026-03-27T14:02:57.5197413Z 15:02:57.519 | After built-in stripping: 1 +2026-03-27T14:02:57.5203161Z 15:02:57.519 | After scriptable stripping: 1 +2026-03-27T14:02:57.5211725Z 15:02:57.520 | Processed in 0.00 seconds +2026-03-27T14:02:57.5218678Z 15:02:57.521 | Pass "" (vp) +2026-03-27T14:02:57.5224219Z 15:02:57.522 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.5236859Z 15:02:57.522 | Full variant space: 1 +2026-03-27T14:02:57.5243645Z 15:02:57.524 | After settings filtering: 1 +2026-03-27T14:02:57.5252595Z 15:02:57.524 | After built-in stripping: 1 +2026-03-27T14:02:57.5258694Z 15:02:57.525 | After scriptable stripping: 1 +2026-03-27T14:02:57.5264144Z 15:02:57.526 | Processed in 0.00 seconds +2026-03-27T14:02:57.5269520Z 15:02:57.526 | Pass "" (fp) +2026-03-27T14:02:57.5274954Z 15:02:57.527 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.5280821Z 15:02:57.527 | Full variant space: 1 +2026-03-27T14:02:57.5287984Z 15:02:57.528 | After settings filtering: 1 +2026-03-27T14:02:57.5293223Z 15:02:57.528 | After built-in stripping: 1 +2026-03-27T14:02:57.5298786Z 15:02:57.529 | After scriptable stripping: 1 +2026-03-27T14:02:57.5304441Z 15:02:57.530 | Processed in 0.00 seconds +2026-03-27T14:02:57.5310712Z 15:02:57.530 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5315824Z 15:02:57.531 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5321909Z 15:02:57.531 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5336271Z 15:02:57.532 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5342837Z 15:02:57.533 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5347822Z 15:02:57.534 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5354116Z 15:02:57.534 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5359145Z 15:02:57.535 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5366660Z 15:02:57.536 | Pass (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5372494Z 15:02:57.536 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5379360Z 15:02:57.537 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5388558Z 15:02:57.538 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5400814Z 15:02:57.539 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5408820Z 15:02:57.540 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5416214Z 15:02:57.541 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5422391Z 15:02:57.541 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5428591Z 15:02:57.542 | Pass (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5434186Z 15:02:57.543 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5440665Z 15:02:57.543 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5444900Z 15:02:57.544 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5452370Z 15:02:57.544 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5458324Z 15:02:57.545 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5465186Z 15:02:57.546 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5471361Z 15:02:57.546 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5477646Z 15:02:57.547 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5483013Z 15:02:57.547 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5512949Z 15:02:57.548 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5546445Z 15:02:57.553 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5558859Z 15:02:57.554 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5568037Z 15:02:57.556 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5576198Z 15:02:57.557 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5584154Z 15:02:57.557 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5591182Z 15:02:57.558 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5598594Z 15:02:57.559 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5606632Z 15:02:57.560 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5610826Z 15:02:57.560 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5618711Z 15:02:57.561 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5624156Z 15:02:57.562 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5630550Z 15:02:57.562 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.5636280Z 15:02:57.563 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.5642930Z 15:02:57.563 | Compiling shader "Hidden/Internal-ODSWorldTexture" +2026-03-27T14:02:57.5651685Z 15:02:57.564 | Pass "" (vp) +2026-03-27T14:02:57.5658090Z 15:02:57.565 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.5664323Z 15:02:57.566 | Full variant space: 1 +2026-03-27T14:02:57.5670160Z 15:02:57.566 | After settings filtering: 1 +2026-03-27T14:02:57.5676091Z 15:02:57.567 | After built-in stripping: 1 +2026-03-27T14:02:57.5683036Z 15:02:57.567 | After scriptable stripping: 1 +2026-03-27T14:02:57.5689695Z 15:02:57.568 | Processed in 0.00 seconds +2026-03-27T14:02:57.5695553Z 15:02:57.569 | Pass "" (fp) +2026-03-27T14:02:57.5701544Z 15:02:57.569 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.5707655Z 15:02:57.570 | Full variant space: 1 +2026-03-27T14:02:57.5714292Z 15:02:57.570 | After settings filtering: 1 +2026-03-27T14:02:57.5721360Z 15:02:57.571 | After built-in stripping: 1 +2026-03-27T14:02:57.5727879Z 15:02:57.572 | After scriptable stripping: 1 +2026-03-27T14:02:57.5734680Z 15:02:57.573 | Processed in 0.00 seconds +2026-03-27T14:02:57.5741037Z 15:02:57.573 | Pass "" (vp) +2026-03-27T14:02:57.5747651Z 15:02:57.574 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.5753519Z 15:02:57.574 | Full variant space: 1 +2026-03-27T14:02:57.5760932Z 15:02:57.575 | After settings filtering: 1 +2026-03-27T14:02:57.5766291Z 15:02:57.576 | After built-in stripping: 1 +2026-03-27T14:02:57.6062131Z 15:02:57.576 | After scriptable stripping: 1 +2026-03-27T14:02:57.6102878Z 15:02:57.607 | Processed in 0.00 seconds +2026-03-27T14:02:57.6116326Z 15:02:57.610 | Pass "" (fp) +2026-03-27T14:02:57.6138903Z 15:02:57.612 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.6148311Z 15:02:57.614 | Full variant space: 1 +2026-03-27T14:02:57.6153820Z 15:02:57.614 | After settings filtering: 1 +2026-03-27T14:02:57.6160172Z 15:02:57.615 | After built-in stripping: 1 +2026-03-27T14:02:57.6166836Z 15:02:57.616 | After scriptable stripping: 1 +2026-03-27T14:02:57.6172942Z 15:02:57.616 | Processed in 0.00 seconds +2026-03-27T14:02:57.6178534Z 15:02:57.617 | Pass "" (vp) +2026-03-27T14:02:57.6183982Z 15:02:57.617 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.6189397Z 15:02:57.618 | Full variant space: 1 +2026-03-27T14:02:57.6195025Z 15:02:57.619 | After settings filtering: 1 +2026-03-27T14:02:57.6200267Z 15:02:57.619 | After built-in stripping: 1 +2026-03-27T14:02:57.6205716Z 15:02:57.620 | After scriptable stripping: 1 +2026-03-27T14:02:57.6212024Z 15:02:57.620 | Processed in 0.00 seconds +2026-03-27T14:02:57.6217858Z 15:02:57.621 | Pass "" (fp) +2026-03-27T14:02:57.6223524Z 15:02:57.621 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.6228662Z 15:02:57.622 | Full variant space: 1 +2026-03-27T14:02:57.6233961Z 15:02:57.623 | After settings filtering: 1 +2026-03-27T14:02:57.6239058Z 15:02:57.623 | After built-in stripping: 1 +2026-03-27T14:02:57.6244913Z 15:02:57.624 | After scriptable stripping: 1 +2026-03-27T14:02:57.6251359Z 15:02:57.624 | Processed in 0.00 seconds +2026-03-27T14:02:57.6257302Z 15:02:57.625 | Pass "" (vp) +2026-03-27T14:02:57.6262796Z 15:02:57.625 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.6268111Z 15:02:57.626 | Full variant space: 1 +2026-03-27T14:02:57.6273428Z 15:02:57.626 | After settings filtering: 1 +2026-03-27T14:02:57.6279038Z 15:02:57.627 | After built-in stripping: 1 +2026-03-27T14:02:57.6296802Z 15:02:57.628 | After scriptable stripping: 1 +2026-03-27T14:02:57.6303004Z 15:02:57.629 | Processed in 0.00 seconds +2026-03-27T14:02:57.6308946Z 15:02:57.630 | Pass "" (fp) +2026-03-27T14:02:57.6318633Z 15:02:57.631 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.6324102Z 15:02:57.632 | Full variant space: 1 +2026-03-27T14:02:57.6329471Z 15:02:57.632 | After settings filtering: 1 +2026-03-27T14:02:57.6335546Z 15:02:57.633 | After built-in stripping: 1 +2026-03-27T14:02:57.6341029Z 15:02:57.633 | After scriptable stripping: 1 +2026-03-27T14:02:57.6346578Z 15:02:57.634 | Processed in 0.00 seconds +2026-03-27T14:02:57.6351972Z 15:02:57.634 | Pass "" (vp) +2026-03-27T14:02:57.6357430Z 15:02:57.635 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.6363111Z 15:02:57.635 | Full variant space: 1 +2026-03-27T14:02:57.6369655Z 15:02:57.636 | After settings filtering: 1 +2026-03-27T14:02:57.6743657Z 15:02:57.637 | After built-in stripping: 1 +2026-03-27T14:02:57.6867499Z 15:02:57.680 | After scriptable stripping: 1 +2026-03-27T14:02:57.6882325Z 15:02:57.687 | Processed in 0.00 seconds +2026-03-27T14:02:57.6922602Z 15:02:57.689 | Pass "" (fp) +2026-03-27T14:02:57.6940292Z 15:02:57.693 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.6950886Z 15:02:57.694 | Full variant space: 1 +2026-03-27T14:02:57.6957836Z 15:02:57.695 | After settings filtering: 1 +2026-03-27T14:02:57.6963795Z 15:02:57.696 | After built-in stripping: 1 +2026-03-27T14:02:57.6972648Z 15:02:57.696 | After scriptable stripping: 1 +2026-03-27T14:02:57.6983903Z 15:02:57.697 | Processed in 0.00 seconds +2026-03-27T14:02:57.6990032Z 15:02:57.698 | Pass "" (vp) +2026-03-27T14:02:57.6994852Z 15:02:57.699 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7000003Z 15:02:57.699 | Full variant space: 1 +2026-03-27T14:02:57.7005594Z 15:02:57.700 | After settings filtering: 1 +2026-03-27T14:02:57.7011896Z 15:02:57.700 | After built-in stripping: 1 +2026-03-27T14:02:57.7017301Z 15:02:57.701 | After scriptable stripping: 1 +2026-03-27T14:02:57.7023400Z 15:02:57.701 | Processed in 0.00 seconds +2026-03-27T14:02:57.7029307Z 15:02:57.702 | Pass "" (fp) +2026-03-27T14:02:57.7035245Z 15:02:57.703 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7041315Z 15:02:57.703 | Full variant space: 1 +2026-03-27T14:02:57.7047442Z 15:02:57.704 | After settings filtering: 1 +2026-03-27T14:02:57.7054190Z 15:02:57.704 | After built-in stripping: 1 +2026-03-27T14:02:57.7066236Z 15:02:57.706 | After scriptable stripping: 1 +2026-03-27T14:02:57.7072930Z 15:02:57.706 | Processed in 0.00 seconds +2026-03-27T14:02:57.7078892Z 15:02:57.707 | Pass "" (vp) +2026-03-27T14:02:57.7086269Z 15:02:57.708 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7092380Z 15:02:57.708 | Full variant space: 1 +2026-03-27T14:02:57.7098056Z 15:02:57.709 | After settings filtering: 1 +2026-03-27T14:02:57.7104383Z 15:02:57.710 | After built-in stripping: 1 +2026-03-27T14:02:57.7116909Z 15:02:57.711 | After scriptable stripping: 1 +2026-03-27T14:02:57.7124058Z 15:02:57.712 | Processed in 0.00 seconds +2026-03-27T14:02:57.7131257Z 15:02:57.712 | Pass "" (fp) +2026-03-27T14:02:57.7137451Z 15:02:57.713 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7143892Z 15:02:57.713 | Full variant space: 1 +2026-03-27T14:02:57.7149196Z 15:02:57.714 | After settings filtering: 1 +2026-03-27T14:02:57.7155010Z 15:02:57.715 | After built-in stripping: 1 +2026-03-27T14:02:57.7160649Z 15:02:57.715 | After scriptable stripping: 1 +2026-03-27T14:02:57.7165907Z 15:02:57.716 | Processed in 0.00 seconds +2026-03-27T14:02:57.7172169Z 15:02:57.716 | Pass "" (vp) +2026-03-27T14:02:57.7178086Z 15:02:57.717 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7183710Z 15:02:57.717 | Full variant space: 1 +2026-03-27T14:02:57.7189254Z 15:02:57.718 | After settings filtering: 1 +2026-03-27T14:02:57.7194687Z 15:02:57.719 | After built-in stripping: 1 +2026-03-27T14:02:57.7200090Z 15:02:57.719 | After scriptable stripping: 1 +2026-03-27T14:02:57.7205377Z 15:02:57.720 | Processed in 0.00 seconds +2026-03-27T14:02:57.7211565Z 15:02:57.720 | Pass "" (fp) +2026-03-27T14:02:57.7221951Z 15:02:57.721 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7227622Z 15:02:57.722 | Full variant space: 1 +2026-03-27T14:02:57.7233204Z 15:02:57.722 | After settings filtering: 1 +2026-03-27T14:02:57.7238157Z 15:02:57.723 | After built-in stripping: 1 +2026-03-27T14:02:57.7245194Z 15:02:57.724 | After scriptable stripping: 1 +2026-03-27T14:02:57.7252060Z 15:02:57.724 | Processed in 0.00 seconds +2026-03-27T14:02:57.7257664Z 15:02:57.725 | Pass "" (vp) +2026-03-27T14:02:57.7263715Z 15:02:57.725 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7274980Z 15:02:57.726 | Full variant space: 1 +2026-03-27T14:02:57.7280908Z 15:02:57.727 | After settings filtering: 1 +2026-03-27T14:02:57.7287488Z 15:02:57.728 | After built-in stripping: 1 +2026-03-27T14:02:57.7293545Z 15:02:57.728 | After scriptable stripping: 1 +2026-03-27T14:02:57.7299453Z 15:02:57.729 | Processed in 0.00 seconds +2026-03-27T14:02:57.7305298Z 15:02:57.730 | Pass "" (fp) +2026-03-27T14:02:57.7311136Z 15:02:57.730 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7316668Z 15:02:57.731 | Full variant space: 1 +2026-03-27T14:02:57.7322502Z 15:02:57.731 | After settings filtering: 1 +2026-03-27T14:02:57.7329248Z 15:02:57.732 | After built-in stripping: 1 +2026-03-27T14:02:57.7334090Z 15:02:57.733 | After scriptable stripping: 1 +2026-03-27T14:02:57.7339750Z 15:02:57.733 | Processed in 0.00 seconds +2026-03-27T14:02:57.7345215Z 15:02:57.734 | Pass "" (vp) +2026-03-27T14:02:57.7350465Z 15:02:57.734 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7356150Z 15:02:57.735 | Full variant space: 1 +2026-03-27T14:02:57.7360826Z 15:02:57.735 | After settings filtering: 1 +2026-03-27T14:02:57.7377296Z 15:02:57.736 | After built-in stripping: 1 +2026-03-27T14:02:57.7385130Z 15:02:57.738 | After scriptable stripping: 1 +2026-03-27T14:02:57.7395301Z 15:02:57.738 | Processed in 0.00 seconds +2026-03-27T14:02:57.7400347Z 15:02:57.739 | Pass "" (fp) +2026-03-27T14:02:57.7405687Z 15:02:57.740 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7411051Z 15:02:57.740 | Full variant space: 1 +2026-03-27T14:02:57.7416927Z 15:02:57.741 | After settings filtering: 1 +2026-03-27T14:02:57.7422274Z 15:02:57.741 | After built-in stripping: 1 +2026-03-27T14:02:57.7427276Z 15:02:57.742 | After scriptable stripping: 1 +2026-03-27T14:02:57.7432310Z 15:02:57.742 | Processed in 0.00 seconds +2026-03-27T14:02:57.7437527Z 15:02:57.743 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7442570Z 15:02:57.743 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7449192Z 15:02:57.744 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7453843Z 15:02:57.745 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7460586Z 15:02:57.745 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7465149Z 15:02:57.746 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7471905Z 15:02:57.746 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7477046Z 15:02:57.747 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7483381Z 15:02:57.747 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.15s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7489649Z 15:02:57.748 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7496499Z 15:02:57.749 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7501405Z 15:02:57.749 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7507236Z 15:02:57.750 | Pass (vp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.19s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7511549Z 15:02:57.750 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7519292Z 15:02:57.751 | Pass (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7524150Z 15:02:57.752 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7538528Z 15:02:57.753 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7543631Z 15:02:57.753 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7549390Z 15:02:57.754 | Pass (fp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7554249Z 15:02:57.755 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7559077Z 15:02:57.755 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7566708Z 15:02:57.756 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7573504Z 15:02:57.756 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7581350Z 15:02:57.757 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7588508Z 15:02:57.758 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7593769Z 15:02:57.758 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7599961Z 15:02:57.759 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7605416Z 15:02:57.760 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7612421Z 15:02:57.760 | Pass (vp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.13s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7617013Z 15:02:57.761 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7623335Z 15:02:57.761 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7628411Z 15:02:57.762 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7634717Z 15:02:57.763 | Pass (vp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.16s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7639588Z 15:02:57.763 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7645505Z 15:02:57.764 | Pass (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7651462Z 15:02:57.764 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7657230Z 15:02:57.765 | Pass (vp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.14s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7662264Z 15:02:57.765 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7673841Z 15:02:57.766 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7678734Z 15:02:57.767 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7685599Z 15:02:57.768 | Serialized binary data for shader Hidden/Internal-ODSWorldTexture in 0.00s +2026-03-27T14:02:57.7695389Z 15:02:57.769 | gamecore_scarlett (total internal programs: 20, unique: 15) +2026-03-27T14:02:57.7700858Z 15:02:57.769 | Compiling shader "Hidden/Internal-CubemapToEquirect" +2026-03-27T14:02:57.7706986Z 15:02:57.770 | Pass "" (vp) +2026-03-27T14:02:57.7713496Z 15:02:57.770 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7720356Z 15:02:57.771 | Full variant space: 1 +2026-03-27T14:02:57.7727364Z 15:02:57.772 | After settings filtering: 1 +2026-03-27T14:02:57.7734564Z 15:02:57.772 | After built-in stripping: 1 +2026-03-27T14:02:57.7741752Z 15:02:57.773 | After scriptable stripping: 1 +2026-03-27T14:02:57.7747427Z 15:02:57.774 | Processed in 0.00 seconds +2026-03-27T14:02:57.7753227Z 15:02:57.774 | Pass "" (fp) +2026-03-27T14:02:57.7758746Z 15:02:57.775 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7765066Z 15:02:57.776 | Full variant space: 1 +2026-03-27T14:02:57.7771419Z 15:02:57.776 | After settings filtering: 1 +2026-03-27T14:02:57.7777195Z 15:02:57.777 | After built-in stripping: 1 +2026-03-27T14:02:57.7782952Z 15:02:57.777 | After scriptable stripping: 1 +2026-03-27T14:02:57.7788790Z 15:02:57.778 | Processed in 0.00 seconds +2026-03-27T14:02:57.7794758Z 15:02:57.779 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7800232Z 15:02:57.779 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7806775Z 15:02:57.780 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7812802Z 15:02:57.780 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7818415Z 15:02:57.781 | Compiling shader "Hidden/Internal-CubemapToEquirect" +2026-03-27T14:02:57.7823919Z 15:02:57.782 | Pass "" (vp) +2026-03-27T14:02:57.7829452Z 15:02:57.782 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7835299Z 15:02:57.783 | Full variant space: 1 +2026-03-27T14:02:57.7844192Z 15:02:57.783 | After settings filtering: 1 +2026-03-27T14:02:57.7852245Z 15:02:57.784 | After built-in stripping: 1 +2026-03-27T14:02:57.7857834Z 15:02:57.785 | After scriptable stripping: 1 +2026-03-27T14:02:57.7863778Z 15:02:57.785 | Processed in 0.00 seconds +2026-03-27T14:02:57.7869944Z 15:02:57.786 | Pass "" (fp) +2026-03-27T14:02:57.7875777Z 15:02:57.787 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7882872Z 15:02:57.787 | Full variant space: 1 +2026-03-27T14:02:57.7889728Z 15:02:57.788 | After settings filtering: 1 +2026-03-27T14:02:57.7895980Z 15:02:57.789 | After built-in stripping: 1 +2026-03-27T14:02:57.7901561Z 15:02:57.789 | After scriptable stripping: 1 +2026-03-27T14:02:57.7906497Z 15:02:57.790 | Processed in 0.00 seconds +2026-03-27T14:02:57.7912513Z 15:02:57.790 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7919028Z 15:02:57.791 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7925630Z 15:02:57.792 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.7932923Z 15:02:57.792 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.7938246Z 15:02:57.793 | Serialized binary data for shader Hidden/Internal-CubemapToEquirect in 0.00s +2026-03-27T14:02:57.7944212Z 15:02:57.794 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:57.7949557Z 15:02:57.794 | Compiling shader "Hidden/VR/BlitFromTex2DToTexArraySlice" +2026-03-27T14:02:57.7954630Z 15:02:57.795 | Pass "" (vp) +2026-03-27T14:02:57.7959961Z 15:02:57.795 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.7964925Z 15:02:57.796 | Full variant space: 1 +2026-03-27T14:02:57.7971623Z 15:02:57.796 | After settings filtering: 1 +2026-03-27T14:02:57.7976750Z 15:02:57.797 | After built-in stripping: 1 +2026-03-27T14:02:57.7982695Z 15:02:57.797 | After scriptable stripping: 1 +2026-03-27T14:02:57.7988093Z 15:02:57.798 | Processed in 0.00 seconds +2026-03-27T14:02:57.7993826Z 15:02:57.798 | Pass "" (fp) +2026-03-27T14:02:57.8003063Z 15:02:57.799 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.8008981Z 15:02:57.800 | Full variant space: 1 +2026-03-27T14:02:57.8014222Z 15:02:57.801 | After settings filtering: 1 +2026-03-27T14:02:57.8019681Z 15:02:57.801 | After built-in stripping: 1 +2026-03-27T14:02:57.8025055Z 15:02:57.802 | After scriptable stripping: 1 +2026-03-27T14:02:57.8030261Z 15:02:57.802 | Processed in 0.00 seconds +2026-03-27T14:02:57.8035323Z 15:02:57.803 | Pass "" (vp) +2026-03-27T14:02:57.8040544Z 15:02:57.803 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.8045537Z 15:02:57.804 | Full variant space: 1 +2026-03-27T14:02:57.8051860Z 15:02:57.804 | After settings filtering: 1 +2026-03-27T14:02:57.8057143Z 15:02:57.805 | After built-in stripping: 1 +2026-03-27T14:02:57.8067452Z 15:02:57.805 | After scriptable stripping: 1 +2026-03-27T14:02:57.8072773Z 15:02:57.806 | Processed in 0.00 seconds +2026-03-27T14:02:57.8078175Z 15:02:57.807 | Pass "" (fp) +2026-03-27T14:02:57.8083389Z 15:02:57.807 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.8089406Z 15:02:57.808 | Full variant space: 1 +2026-03-27T14:02:57.8094549Z 15:02:57.809 | After settings filtering: 1 +2026-03-27T14:02:57.8099672Z 15:02:57.809 | After built-in stripping: 1 +2026-03-27T14:02:57.8104714Z 15:02:57.810 | After scriptable stripping: 1 +2026-03-27T14:02:57.8110171Z 15:02:57.810 | Processed in 0.00 seconds +2026-03-27T14:02:57.8115260Z 15:02:57.811 | Pass "" (gp) +2026-03-27T14:02:57.8120568Z 15:02:57.811 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.8125786Z 15:02:57.812 | Full variant space: 1 +2026-03-27T14:02:57.8131852Z 15:02:57.812 | After settings filtering: 1 +2026-03-27T14:02:57.8137606Z 15:02:57.813 | After built-in stripping: 1 +2026-03-27T14:02:57.8143122Z 15:02:57.813 | After scriptable stripping: 1 +2026-03-27T14:02:57.8148742Z 15:02:57.814 | Processed in 0.00 seconds +2026-03-27T14:02:57.8153490Z 15:02:57.814 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:57.8161803Z 15:02:57.815 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.8169157Z 15:02:57.816 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.8174511Z 15:02:57.817 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.8181175Z 15:02:57.817 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.8186501Z 15:02:57.818 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.8192500Z 15:02:57.818 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.8198417Z 15:02:57.819 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.8205457Z 15:02:57.820 | Pass (gp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:57.8211217Z 15:02:57.820 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:57.8217458Z 15:02:57.821 | Compiling shader "Hidden/VR/BlitFromTex2DToTexArraySlice" +2026-03-27T14:02:57.8222094Z 15:02:57.821 | Pass "" (vp) +2026-03-27T14:02:57.8227666Z 15:02:57.822 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.8233041Z 15:02:57.822 | Full variant space: 1 +2026-03-27T14:02:57.8238724Z 15:02:57.823 | After settings filtering: 1 +2026-03-27T14:02:57.8244165Z 15:02:57.824 | After built-in stripping: 1 +2026-03-27T14:02:57.8250185Z 15:02:57.824 | After scriptable stripping: 1 +2026-03-27T14:02:57.8255652Z 15:02:57.825 | Processed in 0.00 seconds +2026-03-27T14:02:57.8261312Z 15:02:57.825 | Pass "" (fp) +2026-03-27T14:02:57.8266775Z 15:02:57.826 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.8272615Z 15:02:57.826 | Full variant space: 1 +2026-03-27T14:02:57.8278901Z 15:02:57.827 | After settings filtering: 1 +2026-03-27T14:02:57.8284072Z 15:02:57.828 | After built-in stripping: 1 +2026-03-27T14:02:57.8289707Z 15:02:57.828 | After scriptable stripping: 1 +2026-03-27T14:02:57.8295066Z 15:02:57.829 | Processed in 0.00 seconds +2026-03-27T14:02:57.8300521Z 15:02:57.829 | Pass "" (vp) +2026-03-27T14:02:57.8305668Z 15:02:57.830 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.8310818Z 15:02:57.830 | Full variant space: 1 +2026-03-27T14:02:57.8319903Z 15:02:57.831 | After settings filtering: 1 +2026-03-27T14:02:57.8647312Z 15:02:57.832 | After built-in stripping: 1 +2026-03-27T14:02:57.8654283Z 15:02:57.865 | After scriptable stripping: 1 +2026-03-27T14:02:57.8667287Z 15:02:57.866 | Processed in 0.00 seconds +2026-03-27T14:02:57.8692312Z 15:02:57.867 | Pass "" (fp) +2026-03-27T14:02:57.8901233Z 15:02:57.872 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.9111414Z 15:02:57.900 | Full variant space: 1 +2026-03-27T14:02:57.9123306Z 15:02:57.911 | After settings filtering: 1 +2026-03-27T14:02:57.9136233Z 15:02:57.913 | After built-in stripping: 1 +2026-03-27T14:02:57.9144308Z 15:02:57.913 | After scriptable stripping: 1 +2026-03-27T14:02:57.9160932Z 15:02:57.914 | Processed in 0.00 seconds +2026-03-27T14:02:57.9386430Z 15:02:57.920 | Pass "" (gp) +2026-03-27T14:02:57.9583138Z 15:02:57.945 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:57.9857423Z 15:02:57.965 | Full variant space: 1 +2026-03-27T14:02:58.0063781Z 15:02:57.994 | After settings filtering: 1 +2026-03-27T14:02:58.0109016Z 15:02:58.007 | After built-in stripping: 1 +2026-03-27T14:02:58.0288819Z 15:02:58.015 | After scriptable stripping: 1 +2026-03-27T14:02:58.0469127Z 15:02:58.034 | Processed in 0.00 seconds +2026-03-27T14:02:58.0485554Z 15:02:58.047 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.0495391Z 15:02:58.049 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.0537278Z 15:02:58.050 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:58.0649847Z 15:02:58.055 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.0864061Z 15:02:58.073 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:58.0905737Z 15:02:58.089 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.0931239Z 15:02:58.091 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:58.0943517Z 15:02:58.093 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.0953188Z 15:02:58.094 | Pass (gp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. +2026-03-27T14:02:58.0964681Z 15:02:58.096 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.0970422Z 15:02:58.096 | Serialized binary data for shader Hidden/VR/BlitFromTex2DToTexArraySlice in 0.00s +2026-03-27T14:02:58.0976264Z 15:02:58.097 | gamecore_scarlett (total internal programs: 5, unique: 4) +2026-03-27T14:02:58.0982085Z 15:02:58.097 | Compiling shader "Hidden/VideoComposite" +2026-03-27T14:02:58.0987490Z 15:02:58.098 | Pass "Default" (vp) +2026-03-27T14:02:58.0995205Z 15:02:58.099 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.1000451Z 15:02:58.099 | Full variant space: 1 +2026-03-27T14:02:58.1006506Z 15:02:58.100 | After settings filtering: 1 +2026-03-27T14:02:58.1011781Z 15:02:58.100 | After built-in stripping: 1 +2026-03-27T14:02:58.1017461Z 15:02:58.101 | After scriptable stripping: 1 +2026-03-27T14:02:58.1044158Z 15:02:58.101 | Processed in 0.00 seconds +2026-03-27T14:02:58.1356919Z 15:02:58.112 | Pass "Default" (fp) +2026-03-27T14:02:58.1585775Z 15:02:58.142 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.1986902Z 15:02:58.174 | Full variant space: 1 +2026-03-27T14:02:58.2126389Z 15:02:58.206 | After settings filtering: 1 +2026-03-27T14:02:58.2145477Z 15:02:58.213 | After built-in stripping: 1 +2026-03-27T14:02:58.2168693Z 15:02:58.215 | After scriptable stripping: 1 +2026-03-27T14:02:58.2408953Z 15:02:58.223 | Processed in 0.00 seconds +2026-03-27T14:02:58.2661431Z 15:02:58.246 | Pass Default (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:58.2705046Z 15:02:58.267 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.2882497Z 15:02:58.272 | Pass Default (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:58.3091726Z 15:02:58.298 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.3365058Z 15:02:58.316 | Compiling shader "Hidden/VideoComposite" +2026-03-27T14:02:58.3686816Z 15:02:58.343 | Pass "Default" (vp) +2026-03-27T14:02:58.4071494Z 15:02:58.378 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.4405373Z 15:02:58.415 | Full variant space: 1 +2026-03-27T14:02:58.4686899Z 15:02:58.448 | After settings filtering: 1 +2026-03-27T14:02:58.4969139Z 15:02:58.478 | After built-in stripping: 1 +2026-03-27T14:02:58.5207979Z 15:02:58.504 | After scriptable stripping: 1 +2026-03-27T14:02:58.5466880Z 15:02:58.528 | Processed in 0.00 seconds +2026-03-27T14:02:58.5560285Z 15:02:58.551 | Pass "Default" (fp) +2026-03-27T14:02:58.5607410Z 15:02:58.557 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.5644731Z 15:02:58.561 | Full variant space: 1 +2026-03-27T14:02:58.5664779Z 15:02:58.565 | After settings filtering: 1 +2026-03-27T14:02:58.5698052Z 15:02:58.567 | After built-in stripping: 1 +2026-03-27T14:02:58.5715030Z 15:02:58.570 | After scriptable stripping: 1 +2026-03-27T14:02:58.5753928Z 15:02:58.572 | Processed in 0.00 seconds +2026-03-27T14:02:58.5761216Z 15:02:58.575 | Pass Default (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:58.5781918Z 15:02:58.576 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.5793968Z 15:02:58.578 | Pass Default (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:58.5803867Z 15:02:58.579 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.5818906Z 15:02:58.581 | Serialized binary data for shader Hidden/VideoComposite in 0.00s +2026-03-27T14:02:58.5825991Z 15:02:58.582 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:58.5833681Z 15:02:58.582 | Compiling shader "Hidden/VideoDecode" +2026-03-27T14:02:58.5839833Z 15:02:58.583 | Pass "YCbCr_To_RGB1" (vp) +2026-03-27T14:02:58.5848152Z 15:02:58.584 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.5857780Z 15:02:58.585 | Full variant space: 2 +2026-03-27T14:02:58.5865037Z 15:02:58.586 | After settings filtering: 2 +2026-03-27T14:02:58.5870737Z 15:02:58.586 | After built-in stripping: 2 +2026-03-27T14:02:58.5880022Z 15:02:58.587 | After scriptable stripping: 2 +2026-03-27T14:02:58.5886157Z 15:02:58.588 | Processed in 0.00 seconds +2026-03-27T14:02:58.5900079Z 15:02:58.589 | Pass "YCbCr_To_RGB1" (fp) +2026-03-27T14:02:58.5906691Z 15:02:58.590 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.5912501Z 15:02:58.590 | Full variant space: 2 +2026-03-27T14:02:58.5917993Z 15:02:58.591 | After settings filtering: 2 +2026-03-27T14:02:58.5924280Z 15:02:58.591 | After built-in stripping: 2 +2026-03-27T14:02:58.5931622Z 15:02:58.592 | After scriptable stripping: 2 +2026-03-27T14:02:58.5937318Z 15:02:58.593 | Processed in 0.00 seconds +2026-03-27T14:02:58.5949394Z 15:02:58.594 | Pass "YCbCrA_To_RGBAFull" (vp) +2026-03-27T14:02:58.5957588Z 15:02:58.595 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.5965645Z 15:02:58.596 | Full variant space: 2 +2026-03-27T14:02:58.5975523Z 15:02:58.597 | After settings filtering: 2 +2026-03-27T14:02:58.5990737Z 15:02:58.598 | After built-in stripping: 2 +2026-03-27T14:02:58.5997887Z 15:02:58.599 | After scriptable stripping: 2 +2026-03-27T14:02:58.6007364Z 15:02:58.600 | Processed in 0.00 seconds +2026-03-27T14:02:58.6016410Z 15:02:58.601 | Pass "YCbCrA_To_RGBAFull" (fp) +2026-03-27T14:02:58.6028554Z 15:02:58.602 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6035181Z 15:02:58.603 | Full variant space: 2 +2026-03-27T14:02:58.6044914Z 15:02:58.603 | After settings filtering: 2 +2026-03-27T14:02:58.6058796Z 15:02:58.605 | After built-in stripping: 2 +2026-03-27T14:02:58.6065471Z 15:02:58.606 | After scriptable stripping: 2 +2026-03-27T14:02:58.6070950Z 15:02:58.606 | Processed in 0.00 seconds +2026-03-27T14:02:58.6078432Z 15:02:58.607 | Pass "YCbCrA_To_RGBA" (vp) +2026-03-27T14:02:58.6087440Z 15:02:58.608 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6094150Z 15:02:58.608 | Full variant space: 2 +2026-03-27T14:02:58.6101985Z 15:02:58.609 | After settings filtering: 2 +2026-03-27T14:02:58.6109777Z 15:02:58.610 | After built-in stripping: 2 +2026-03-27T14:02:58.6115999Z 15:02:58.611 | After scriptable stripping: 2 +2026-03-27T14:02:58.6124018Z 15:02:58.611 | Processed in 0.00 seconds +2026-03-27T14:02:58.6131326Z 15:02:58.612 | Pass "YCbCrA_To_RGBA" (fp) +2026-03-27T14:02:58.6138791Z 15:02:58.613 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6147035Z 15:02:58.614 | Full variant space: 2 +2026-03-27T14:02:58.6153673Z 15:02:58.614 | After settings filtering: 2 +2026-03-27T14:02:58.6161447Z 15:02:58.615 | After built-in stripping: 2 +2026-03-27T14:02:58.6169764Z 15:02:58.616 | After scriptable stripping: 2 +2026-03-27T14:02:58.6176290Z 15:02:58.617 | Processed in 0.00 seconds +2026-03-27T14:02:58.6183437Z 15:02:58.617 | Pass "Flip_RGBA_To_RGBA" (vp) +2026-03-27T14:02:58.6189429Z 15:02:58.618 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6196484Z 15:02:58.619 | Full variant space: 2 +2026-03-27T14:02:58.6211742Z 15:02:58.620 | After settings filtering: 2 +2026-03-27T14:02:58.6219621Z 15:02:58.621 | After built-in stripping: 2 +2026-03-27T14:02:58.6224985Z 15:02:58.622 | After scriptable stripping: 2 +2026-03-27T14:02:58.6232355Z 15:02:58.622 | Processed in 0.00 seconds +2026-03-27T14:02:58.6242174Z 15:02:58.623 | Pass "Flip_RGBA_To_RGBA" (fp) +2026-03-27T14:02:58.6254770Z 15:02:58.625 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6261379Z 15:02:58.625 | Full variant space: 2 +2026-03-27T14:02:58.6269104Z 15:02:58.626 | After settings filtering: 2 +2026-03-27T14:02:58.6280476Z 15:02:58.627 | After built-in stripping: 2 +2026-03-27T14:02:58.6288445Z 15:02:58.628 | After scriptable stripping: 2 +2026-03-27T14:02:58.6293762Z 15:02:58.629 | Processed in 0.00 seconds +2026-03-27T14:02:58.6300369Z 15:02:58.629 | Pass "Flip_RGBASplit_To_RGBA" (vp) +2026-03-27T14:02:58.6307560Z 15:02:58.630 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6313889Z 15:02:58.631 | Full variant space: 2 +2026-03-27T14:02:58.6319580Z 15:02:58.631 | After settings filtering: 2 +2026-03-27T14:02:58.6329121Z 15:02:58.632 | After built-in stripping: 2 +2026-03-27T14:02:58.6336484Z 15:02:58.633 | After scriptable stripping: 2 +2026-03-27T14:02:58.6343904Z 15:02:58.633 | Processed in 0.00 seconds +2026-03-27T14:02:58.6350663Z 15:02:58.634 | Pass "Flip_RGBASplit_To_RGBA" (fp) +2026-03-27T14:02:58.6379931Z 15:02:58.635 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6399480Z 15:02:58.639 | Full variant space: 2 +2026-03-27T14:02:58.6405836Z 15:02:58.640 | After settings filtering: 2 +2026-03-27T14:02:58.6413241Z 15:02:58.640 | After built-in stripping: 2 +2026-03-27T14:02:58.6422160Z 15:02:58.641 | After scriptable stripping: 2 +2026-03-27T14:02:58.6427812Z 15:02:58.642 | Processed in 0.00 seconds +2026-03-27T14:02:58.6433309Z 15:02:58.642 | Pass "Flip_NV12_To_RGB1" (vp) +2026-03-27T14:02:58.6438836Z 15:02:58.643 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6444850Z 15:02:58.644 | Full variant space: 2 +2026-03-27T14:02:58.6451874Z 15:02:58.644 | After settings filtering: 2 +2026-03-27T14:02:58.6457254Z 15:02:58.645 | After built-in stripping: 2 +2026-03-27T14:02:58.6463257Z 15:02:58.645 | After scriptable stripping: 2 +2026-03-27T14:02:58.6470094Z 15:02:58.646 | Processed in 0.00 seconds +2026-03-27T14:02:58.6476351Z 15:02:58.647 | Pass "Flip_NV12_To_RGB1" (fp) +2026-03-27T14:02:58.6488266Z 15:02:58.647 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6494788Z 15:02:58.649 | Full variant space: 2 +2026-03-27T14:02:58.6500595Z 15:02:58.649 | After settings filtering: 2 +2026-03-27T14:02:58.6506221Z 15:02:58.650 | After built-in stripping: 2 +2026-03-27T14:02:58.6518966Z 15:02:58.651 | After scriptable stripping: 2 +2026-03-27T14:02:58.6528131Z 15:02:58.652 | Processed in 0.00 seconds +2026-03-27T14:02:58.6534320Z 15:02:58.653 | Pass "Flip_NV12_To_RGBA" (vp) +2026-03-27T14:02:58.6541556Z 15:02:58.653 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6547463Z 15:02:58.654 | Full variant space: 2 +2026-03-27T14:02:58.6553268Z 15:02:58.654 | After settings filtering: 2 +2026-03-27T14:02:58.6558830Z 15:02:58.655 | After built-in stripping: 2 +2026-03-27T14:02:58.6564709Z 15:02:58.656 | After scriptable stripping: 2 +2026-03-27T14:02:58.6571582Z 15:02:58.656 | Processed in 0.00 seconds +2026-03-27T14:02:58.6576888Z 15:02:58.657 | Pass "Flip_NV12_To_RGBA" (fp) +2026-03-27T14:02:58.6582535Z 15:02:58.657 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6588311Z 15:02:58.658 | Full variant space: 2 +2026-03-27T14:02:58.6593733Z 15:02:58.659 | After settings filtering: 2 +2026-03-27T14:02:58.6599183Z 15:02:58.659 | After built-in stripping: 2 +2026-03-27T14:02:58.6605063Z 15:02:58.660 | After scriptable stripping: 2 +2026-03-27T14:02:58.6611201Z 15:02:58.660 | Processed in 0.00 seconds +2026-03-27T14:02:58.6617509Z 15:02:58.661 | Pass "Flip_P010_To_RGB1" (vp) +2026-03-27T14:02:58.6622259Z 15:02:58.661 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6628124Z 15:02:58.662 | Full variant space: 1 +2026-03-27T14:02:58.6633411Z 15:02:58.662 | After settings filtering: 1 +2026-03-27T14:02:58.6639361Z 15:02:58.663 | After built-in stripping: 1 +2026-03-27T14:02:58.6645408Z 15:02:58.664 | After scriptable stripping: 1 +2026-03-27T14:02:58.6652179Z 15:02:58.664 | Processed in 0.00 seconds +2026-03-27T14:02:58.6657505Z 15:02:58.665 | Pass "Flip_P010_To_RGB1" (fp) +2026-03-27T14:02:58.6663612Z 15:02:58.665 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6674505Z 15:02:58.666 | Full variant space: 1 +2026-03-27T14:02:58.6684199Z 15:02:58.668 | After settings filtering: 1 +2026-03-27T14:02:58.6691843Z 15:02:58.668 | After built-in stripping: 1 +2026-03-27T14:02:58.6698138Z 15:02:58.669 | After scriptable stripping: 1 +2026-03-27T14:02:58.6703614Z 15:02:58.669 | Processed in 0.00 seconds +2026-03-27T14:02:58.6709790Z 15:02:58.670 | Pass YCbCr_To_RGB1 (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6714793Z 15:02:58.671 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6721519Z 15:02:58.671 | Pass YCbCr_To_RGB1 (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6726749Z 15:02:58.672 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6733208Z 15:02:58.672 | Pass YCbCrA_To_RGBAFull (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6738557Z 15:02:58.673 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6745292Z 15:02:58.674 | Pass YCbCrA_To_RGBAFull (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6750635Z 15:02:58.674 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6756889Z 15:02:58.675 | Pass YCbCrA_To_RGBA (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6762042Z 15:02:58.675 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6768701Z 15:02:58.676 | Pass YCbCrA_To_RGBA (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6773756Z 15:02:58.676 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6780450Z 15:02:58.677 | Pass Flip_RGBA_To_RGBA (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6784502Z 15:02:58.678 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6791258Z 15:02:58.678 | Pass Flip_RGBA_To_RGBA (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6796993Z 15:02:58.679 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6804337Z 15:02:58.679 | Pass Flip_RGBASplit_To_RGBA (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6810860Z 15:02:58.680 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6816374Z 15:02:58.681 | Pass Flip_RGBASplit_To_RGBA (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6826494Z 15:02:58.681 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6836665Z 15:02:58.683 | Pass Flip_NV12_To_RGB1 (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6844916Z 15:02:58.684 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6853663Z 15:02:58.684 | Pass Flip_NV12_To_RGB1 (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6859539Z 15:02:58.685 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6867510Z 15:02:58.686 | Pass Flip_NV12_To_RGBA (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6874708Z 15:02:58.687 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6880756Z 15:02:58.687 | Pass Flip_NV12_To_RGBA (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.08s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6886206Z 15:02:58.688 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6892457Z 15:02:58.688 | Pass Flip_P010_To_RGB1 (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6903690Z 15:02:58.689 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6910087Z 15:02:58.690 | Pass Flip_P010_To_RGB1 (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:58.6915503Z 15:02:58.691 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.6921568Z 15:02:58.691 | Compiling shader "Hidden/VideoDecode" +2026-03-27T14:02:58.6927580Z 15:02:58.692 | Pass "YCbCr_To_RGB1" (vp) +2026-03-27T14:02:58.6932543Z 15:02:58.692 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6938376Z 15:02:58.693 | Full variant space: 2 +2026-03-27T14:02:58.6944885Z 15:02:58.694 | After settings filtering: 2 +2026-03-27T14:02:58.6950965Z 15:02:58.694 | After built-in stripping: 2 +2026-03-27T14:02:58.6956448Z 15:02:58.695 | After scriptable stripping: 2 +2026-03-27T14:02:58.6961842Z 15:02:58.695 | Processed in 0.00 seconds +2026-03-27T14:02:58.6967922Z 15:02:58.696 | Pass "YCbCr_To_RGB1" (fp) +2026-03-27T14:02:58.6973783Z 15:02:58.696 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.6983274Z 15:02:58.697 | Full variant space: 2 +2026-03-27T14:02:58.6989008Z 15:02:58.698 | After settings filtering: 2 +2026-03-27T14:02:58.6994028Z 15:02:58.699 | After built-in stripping: 2 +2026-03-27T14:02:58.6999098Z 15:02:58.699 | After scriptable stripping: 2 +2026-03-27T14:02:58.7003992Z 15:02:58.700 | Processed in 0.00 seconds +2026-03-27T14:02:58.7008934Z 15:02:58.700 | Pass "YCbCrA_To_RGBAFull" (vp) +2026-03-27T14:02:58.7013943Z 15:02:58.701 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7019144Z 15:02:58.701 | Full variant space: 2 +2026-03-27T14:02:58.7024587Z 15:02:58.702 | After settings filtering: 2 +2026-03-27T14:02:58.7030225Z 15:02:58.702 | After built-in stripping: 2 +2026-03-27T14:02:58.7036336Z 15:02:58.703 | After scriptable stripping: 2 +2026-03-27T14:02:58.7040518Z 15:02:58.703 | Processed in 0.00 seconds +2026-03-27T14:02:58.7045445Z 15:02:58.704 | Pass "YCbCrA_To_RGBAFull" (fp) +2026-03-27T14:02:58.7051507Z 15:02:58.704 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7056670Z 15:02:58.705 | Full variant space: 2 +2026-03-27T14:02:58.7061298Z 15:02:58.705 | After settings filtering: 2 +2026-03-27T14:02:58.7067631Z 15:02:58.706 | After built-in stripping: 2 +2026-03-27T14:02:58.7073299Z 15:02:58.706 | After scriptable stripping: 2 +2026-03-27T14:02:58.7078980Z 15:02:58.707 | Processed in 0.00 seconds +2026-03-27T14:02:58.7084503Z 15:02:58.708 | Pass "YCbCrA_To_RGBA" (vp) +2026-03-27T14:02:58.7091161Z 15:02:58.708 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7096601Z 15:02:58.709 | Full variant space: 2 +2026-03-27T14:02:58.7101813Z 15:02:58.709 | After settings filtering: 2 +2026-03-27T14:02:58.7107155Z 15:02:58.710 | After built-in stripping: 2 +2026-03-27T14:02:58.7112091Z 15:02:58.710 | After scriptable stripping: 2 +2026-03-27T14:02:58.7117227Z 15:02:58.711 | Processed in 0.00 seconds +2026-03-27T14:02:58.7122630Z 15:02:58.711 | Pass "YCbCrA_To_RGBA" (fp) +2026-03-27T14:02:58.7131590Z 15:02:58.712 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7137023Z 15:02:58.713 | Full variant space: 2 +2026-03-27T14:02:58.7142904Z 15:02:58.713 | After settings filtering: 2 +2026-03-27T14:02:58.7148451Z 15:02:58.714 | After built-in stripping: 2 +2026-03-27T14:02:58.7154371Z 15:02:58.715 | After scriptable stripping: 2 +2026-03-27T14:02:58.7159430Z 15:02:58.715 | Processed in 0.00 seconds +2026-03-27T14:02:58.7165124Z 15:02:58.716 | Pass "Flip_RGBA_To_RGBA" (vp) +2026-03-27T14:02:58.7171880Z 15:02:58.716 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7177696Z 15:02:58.717 | Full variant space: 2 +2026-03-27T14:02:58.7183187Z 15:02:58.718 | After settings filtering: 2 +2026-03-27T14:02:58.7189857Z 15:02:58.718 | After built-in stripping: 2 +2026-03-27T14:02:58.7195402Z 15:02:58.719 | After scriptable stripping: 2 +2026-03-27T14:02:58.7200874Z 15:02:58.719 | Processed in 0.00 seconds +2026-03-27T14:02:58.7206715Z 15:02:58.720 | Pass "Flip_RGBA_To_RGBA" (fp) +2026-03-27T14:02:58.7212879Z 15:02:58.720 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7218769Z 15:02:58.721 | Full variant space: 2 +2026-03-27T14:02:58.7224210Z 15:02:58.722 | After settings filtering: 2 +2026-03-27T14:02:58.7229602Z 15:02:58.722 | After built-in stripping: 2 +2026-03-27T14:02:58.7234819Z 15:02:58.723 | After scriptable stripping: 2 +2026-03-27T14:02:58.7240217Z 15:02:58.723 | Processed in 0.00 seconds +2026-03-27T14:02:58.7245315Z 15:02:58.724 | Pass "Flip_RGBASplit_To_RGBA" (vp) +2026-03-27T14:02:58.7251074Z 15:02:58.724 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7256082Z 15:02:58.725 | Full variant space: 2 +2026-03-27T14:02:58.7261255Z 15:02:58.725 | After settings filtering: 2 +2026-03-27T14:02:58.7266451Z 15:02:58.726 | After built-in stripping: 2 +2026-03-27T14:02:58.7271433Z 15:02:58.726 | After scriptable stripping: 2 +2026-03-27T14:02:58.7276797Z 15:02:58.727 | Processed in 0.00 seconds +2026-03-27T14:02:58.7285127Z 15:02:58.727 | Pass "Flip_RGBASplit_To_RGBA" (fp) +2026-03-27T14:02:58.7291383Z 15:02:58.728 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7296770Z 15:02:58.729 | Full variant space: 2 +2026-03-27T14:02:58.7302113Z 15:02:58.729 | After settings filtering: 2 +2026-03-27T14:02:58.7307151Z 15:02:58.730 | After built-in stripping: 2 +2026-03-27T14:02:58.7312738Z 15:02:58.730 | After scriptable stripping: 2 +2026-03-27T14:02:58.7318789Z 15:02:58.731 | Processed in 0.00 seconds +2026-03-27T14:02:58.7325499Z 15:02:58.732 | Pass "Flip_NV12_To_RGB1" (vp) +2026-03-27T14:02:58.7330691Z 15:02:58.732 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7336397Z 15:02:58.733 | Full variant space: 2 +2026-03-27T14:02:58.7341998Z 15:02:58.733 | After settings filtering: 2 +2026-03-27T14:02:58.7348250Z 15:02:58.734 | After built-in stripping: 2 +2026-03-27T14:02:58.7353832Z 15:02:58.734 | After scriptable stripping: 2 +2026-03-27T14:02:58.7359264Z 15:02:58.735 | Processed in 0.00 seconds +2026-03-27T14:02:58.7364924Z 15:02:58.736 | Pass "Flip_NV12_To_RGB1" (fp) +2026-03-27T14:02:58.7370522Z 15:02:58.736 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7376228Z 15:02:58.737 | Full variant space: 2 +2026-03-27T14:02:58.7385632Z 15:02:58.737 | After settings filtering: 2 +2026-03-27T14:02:58.7390750Z 15:02:58.738 | After built-in stripping: 2 +2026-03-27T14:02:58.7396294Z 15:02:58.739 | After scriptable stripping: 2 +2026-03-27T14:02:58.7401535Z 15:02:58.739 | Processed in 0.00 seconds +2026-03-27T14:02:58.7407357Z 15:02:58.740 | Pass "Flip_NV12_To_RGBA" (vp) +2026-03-27T14:02:58.7412495Z 15:02:58.740 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7417636Z 15:02:58.741 | Full variant space: 2 +2026-03-27T14:02:58.7422643Z 15:02:58.741 | After settings filtering: 2 +2026-03-27T14:02:58.7428361Z 15:02:58.742 | After built-in stripping: 2 +2026-03-27T14:02:58.7434620Z 15:02:58.742 | After scriptable stripping: 2 +2026-03-27T14:02:58.7452231Z 15:02:58.744 | Processed in 0.00 seconds +2026-03-27T14:02:58.7458053Z 15:02:58.745 | Pass "Flip_NV12_To_RGBA" (fp) +2026-03-27T14:02:58.7464114Z 15:02:58.745 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7469970Z 15:02:58.746 | Full variant space: 2 +2026-03-27T14:02:58.7474959Z 15:02:58.747 | After settings filtering: 2 +2026-03-27T14:02:58.7481748Z 15:02:58.747 | After built-in stripping: 2 +2026-03-27T14:02:58.7488096Z 15:02:58.748 | After scriptable stripping: 2 +2026-03-27T14:02:58.7493703Z 15:02:58.748 | Processed in 0.00 seconds +2026-03-27T14:02:58.7499020Z 15:02:58.749 | Pass "Flip_P010_To_RGB1" (vp) +2026-03-27T14:02:58.7505117Z 15:02:58.750 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7510469Z 15:02:58.750 | Full variant space: 1 +2026-03-27T14:02:58.7515639Z 15:02:58.751 | After settings filtering: 1 +2026-03-27T14:02:58.7520983Z 15:02:58.751 | After built-in stripping: 1 +2026-03-27T14:02:58.7527677Z 15:02:58.752 | After scriptable stripping: 1 +2026-03-27T14:02:58.7534017Z 15:02:58.752 | Processed in 0.00 seconds +2026-03-27T14:02:58.7539705Z 15:02:58.753 | Pass "Flip_P010_To_RGB1" (fp) +2026-03-27T14:02:58.7544980Z 15:02:58.754 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7550377Z 15:02:58.754 | Full variant space: 1 +2026-03-27T14:02:58.7555683Z 15:02:58.755 | After settings filtering: 1 +2026-03-27T14:02:58.7561365Z 15:02:58.755 | After built-in stripping: 1 +2026-03-27T14:02:58.7567002Z 15:02:58.756 | After scriptable stripping: 1 +2026-03-27T14:02:58.7572206Z 15:02:58.756 | Processed in 0.00 seconds +2026-03-27T14:02:58.7580421Z 15:02:58.757 | Pass YCbCr_To_RGB1 (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.21s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7587199Z 15:02:58.758 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7599334Z 15:02:58.759 | Pass YCbCr_To_RGB1 (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7604720Z 15:02:58.760 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7611857Z 15:02:58.760 | Pass YCbCrA_To_RGBAFull (vp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.21s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7616066Z 15:02:58.761 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7622220Z 15:02:58.761 | Pass YCbCrA_To_RGBAFull (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7627217Z 15:02:58.762 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7632908Z 15:02:58.762 | Pass YCbCrA_To_RGBA (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.19s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7638064Z 15:02:58.763 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7644313Z 15:02:58.763 | Pass YCbCrA_To_RGBA (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7650751Z 15:02:58.764 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7656735Z 15:02:58.765 | Pass Flip_RGBA_To_RGBA (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.19s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7662085Z 15:02:58.765 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7668240Z 15:02:58.766 | Pass Flip_RGBA_To_RGBA (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7673389Z 15:02:58.766 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7678914Z 15:02:58.767 | Pass Flip_RGBASplit_To_RGBA (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.21s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7683762Z 15:02:58.768 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7690928Z 15:02:58.768 | Pass Flip_RGBASplit_To_RGBA (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.14s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7696041Z 15:02:58.769 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7701938Z 15:02:58.769 | Pass Flip_NV12_To_RGB1 (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.22s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7707379Z 15:02:58.770 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7713511Z 15:02:58.770 | Pass Flip_NV12_To_RGB1 (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.12s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7718061Z 15:02:58.771 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7724567Z 15:02:58.771 | Pass Flip_NV12_To_RGBA (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.19s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7730041Z 15:02:58.772 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7736048Z 15:02:58.773 | Pass Flip_NV12_To_RGBA (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7750830Z 15:02:58.773 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7760044Z 15:02:58.775 | Pass Flip_P010_To_RGB1 (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7766834Z 15:02:58.776 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7774314Z 15:02:58.777 | Pass Flip_P010_To_RGB1 (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7781947Z 15:02:58.777 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7797289Z 15:02:58.779 | Serialized binary data for shader Hidden/VideoDecode in 0.00s +2026-03-27T14:02:58.7803059Z 15:02:58.779 | gamecore_scarlett (total internal programs: 30, unique: 19) +2026-03-27T14:02:58.7809290Z 15:02:58.780 | Compiling shader "Hidden/TextCore/Distance Field SSD" +2026-03-27T14:02:58.7814656Z 15:02:58.781 | Pass "" (vp) +2026-03-27T14:02:58.7820020Z 15:02:58.781 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7825477Z 15:02:58.782 | Full variant space: 1 +2026-03-27T14:02:58.7830957Z 15:02:58.782 | After settings filtering: 1 +2026-03-27T14:02:58.7836316Z 15:02:58.783 | After built-in stripping: 1 +2026-03-27T14:02:58.7842137Z 15:02:58.783 | After scriptable stripping: 1 +2026-03-27T14:02:58.7848168Z 15:02:58.784 | Processed in 0.00 seconds +2026-03-27T14:02:58.7854096Z 15:02:58.785 | Pass "" (fp) +2026-03-27T14:02:58.7860148Z 15:02:58.785 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7866621Z 15:02:58.786 | Full variant space: 1 +2026-03-27T14:02:58.7872643Z 15:02:58.786 | After settings filtering: 1 +2026-03-27T14:02:58.7878744Z 15:02:58.787 | After built-in stripping: 1 +2026-03-27T14:02:58.7884710Z 15:02:58.788 | After scriptable stripping: 1 +2026-03-27T14:02:58.7889674Z 15:02:58.788 | Processed in 0.00 seconds +2026-03-27T14:02:58.7899243Z 15:02:58.789 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7906588Z 15:02:58.790 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7912364Z 15:02:58.790 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:58.7917240Z 15:02:58.791 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.7922902Z 15:02:58.791 | Compiling shader "Hidden/TextCore/Distance Field SSD" +2026-03-27T14:02:58.7928453Z 15:02:58.792 | Pass "" (vp) +2026-03-27T14:02:58.7933976Z 15:02:58.793 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7939149Z 15:02:58.793 | Full variant space: 1 +2026-03-27T14:02:58.7944242Z 15:02:58.794 | After settings filtering: 1 +2026-03-27T14:02:58.7949473Z 15:02:58.794 | After built-in stripping: 1 +2026-03-27T14:02:58.7954611Z 15:02:58.795 | After scriptable stripping: 1 +2026-03-27T14:02:58.7959903Z 15:02:58.795 | Processed in 0.00 seconds +2026-03-27T14:02:58.7965068Z 15:02:58.796 | Pass "" (fp) +2026-03-27T14:02:58.7971166Z 15:02:58.796 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.7977068Z 15:02:58.797 | Full variant space: 1 +2026-03-27T14:02:58.7982841Z 15:02:58.797 | After settings filtering: 1 +2026-03-27T14:02:58.7988065Z 15:02:58.798 | After built-in stripping: 1 +2026-03-27T14:02:58.7993449Z 15:02:58.798 | After scriptable stripping: 1 +2026-03-27T14:02:58.7999169Z 15:02:58.799 | Processed in 0.00 seconds +2026-03-27T14:02:58.8006683Z 15:02:58.800 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:58.8011937Z 15:02:58.800 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.8019264Z 15:02:58.801 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:58.8025283Z 15:02:58.802 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.8031457Z 15:02:58.802 | Serialized binary data for shader Hidden/TextCore/Distance Field SSD in 0.00s +2026-03-27T14:02:58.8037112Z 15:02:58.803 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:58.8042582Z 15:02:58.803 | Compiling shader "Hidden/Physics2D/SDF_CircleGeometry" +2026-03-27T14:02:58.8048804Z 15:02:58.804 | Pass "" (vp) +2026-03-27T14:02:58.8056226Z 15:02:58.805 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.8062017Z 15:02:58.805 | Full variant space: 2 +2026-03-27T14:02:58.8069168Z 15:02:58.806 | After settings filtering: 2 +2026-03-27T14:02:58.8075188Z 15:02:58.807 | After built-in stripping: 1 +2026-03-27T14:02:58.8083477Z 15:02:58.808 | After scriptable stripping: 1 +2026-03-27T14:02:58.8091587Z 15:02:58.808 | Processed in 0.00 seconds +2026-03-27T14:02:58.8097091Z 15:02:58.809 | Pass "" (fp) +2026-03-27T14:02:58.8102366Z 15:02:58.809 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.8108178Z 15:02:58.810 | Full variant space: 2 +2026-03-27T14:02:58.8113878Z 15:02:58.810 | After settings filtering: 2 +2026-03-27T14:02:58.8120067Z 15:02:58.811 | After built-in stripping: 1 +2026-03-27T14:02:58.8126502Z 15:02:58.812 | After scriptable stripping: 1 +2026-03-27T14:02:58.8133877Z 15:02:58.812 | Processed in 0.00 seconds +2026-03-27T14:02:58.8140278Z 15:02:58.813 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:58.8145060Z 15:02:58.814 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.8151543Z 15:02:58.814 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:58.8156717Z 15:02:58.815 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:58.8162328Z 15:02:58.815 | Compiling shader "Hidden/Physics2D/SDF_CircleGeometry" +2026-03-27T14:02:58.8168130Z 15:02:58.816 | Pass "" (vp) +2026-03-27T14:02:58.8174046Z 15:02:58.816 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.8184319Z 15:02:58.817 | Full variant space: 2 +2026-03-27T14:02:58.8190152Z 15:02:58.818 | After settings filtering: 2 +2026-03-27T14:02:58.8195802Z 15:02:58.819 | After built-in stripping: 1 +2026-03-27T14:02:58.8201072Z 15:02:58.819 | After scriptable stripping: 1 +2026-03-27T14:02:58.8212109Z 15:02:58.820 | Processed in 0.00 seconds +2026-03-27T14:02:58.8218225Z 15:02:58.821 | Pass "" (fp) +2026-03-27T14:02:58.8224068Z 15:02:58.822 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:58.8229550Z 15:02:58.822 | Full variant space: 2 +2026-03-27T14:02:58.8235395Z 15:02:58.823 | After settings filtering: 2 +2026-03-27T14:02:58.8240659Z 15:02:58.823 | After built-in stripping: 1 +2026-03-27T14:02:58.8247499Z 15:02:58.824 | After scriptable stripping: 1 +2026-03-27T14:02:58.8253344Z 15:02:58.824 | Processed in 0.00 seconds +2026-03-27T14:02:59.2281742Z 15:02:59.227 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. +2026-03-27T14:02:59.2287804Z 15:02:59.228 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.2295019Z 15:02:59.228 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:59.2301497Z 15:02:59.229 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.2307444Z 15:02:59.230 | Serialized binary data for shader Hidden/Physics2D/SDF_CircleGeometry in 0.00s +2026-03-27T14:02:59.2314001Z 15:02:59.230 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:59.2320500Z 15:02:59.231 | Compiling shader "Hidden/Physics2D/SDF_CapsuleGeometry" +2026-03-27T14:02:59.2325564Z 15:02:59.232 | Pass "" (vp) +2026-03-27T14:02:59.2331084Z 15:02:59.232 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.2336438Z 15:02:59.233 | Full variant space: 2 +2026-03-27T14:02:59.2341583Z 15:02:59.233 | After settings filtering: 2 +2026-03-27T14:02:59.2346709Z 15:02:59.234 | After built-in stripping: 1 +2026-03-27T14:02:59.2352343Z 15:02:59.234 | After scriptable stripping: 1 +2026-03-27T14:02:59.2358270Z 15:02:59.235 | Processed in 0.00 seconds +2026-03-27T14:02:59.2364253Z 15:02:59.235 | Pass "" (fp) +2026-03-27T14:02:59.2371856Z 15:02:59.236 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.2379847Z 15:02:59.237 | Full variant space: 2 +2026-03-27T14:02:59.2387718Z 15:02:59.238 | After settings filtering: 2 +2026-03-27T14:02:59.2393318Z 15:02:59.238 | After built-in stripping: 1 +2026-03-27T14:02:59.2398662Z 15:02:59.239 | After scriptable stripping: 1 +2026-03-27T14:02:59.2403786Z 15:02:59.240 | Processed in 0.00 seconds +2026-03-27T14:02:59.2409928Z 15:02:59.240 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:59.2415052Z 15:02:59.241 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.2421159Z 15:02:59.241 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:59.2425737Z 15:02:59.242 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.2434982Z 15:02:59.243 | Compiling shader "Hidden/Physics2D/SDF_CapsuleGeometry" +2026-03-27T14:02:59.2440547Z 15:02:59.243 | Pass "" (vp) +2026-03-27T14:02:59.2446754Z 15:02:59.244 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.2452620Z 15:02:59.244 | Full variant space: 2 +2026-03-27T14:02:59.2458761Z 15:02:59.245 | After settings filtering: 2 +2026-03-27T14:02:59.2465965Z 15:02:59.246 | After built-in stripping: 1 +2026-03-27T14:02:59.2471794Z 15:02:59.246 | After scriptable stripping: 1 +2026-03-27T14:02:59.2477904Z 15:02:59.247 | Processed in 0.00 seconds +2026-03-27T14:02:59.2484094Z 15:02:59.247 | Pass "" (fp) +2026-03-27T14:02:59.2490569Z 15:02:59.248 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.2497212Z 15:02:59.249 | Full variant space: 2 +2026-03-27T14:02:59.2502965Z 15:02:59.249 | After settings filtering: 2 +2026-03-27T14:02:59.2508975Z 15:02:59.250 | After built-in stripping: 1 +2026-03-27T14:02:59.2515067Z 15:02:59.251 | After scriptable stripping: 1 +2026-03-27T14:02:59.2521195Z 15:02:59.251 | Processed in 0.00 seconds +2026-03-27T14:02:59.2528220Z 15:02:59.252 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. +2026-03-27T14:02:59.2533064Z 15:02:59.252 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.2538970Z 15:02:59.253 | Pass (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:59.2543665Z 15:02:59.253 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.2549848Z 15:02:59.254 | Serialized binary data for shader Hidden/Physics2D/SDF_CapsuleGeometry in 0.00s +2026-03-27T14:02:59.2554308Z 15:02:59.255 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:59.2559413Z 15:02:59.255 | Compiling shader "Hidden/Physics2D/SDF_PolygonGeometry" +2026-03-27T14:02:59.2564542Z 15:02:59.256 | Pass "" (vp) +2026-03-27T14:02:59.2570779Z 15:02:59.256 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.2579677Z 15:02:59.257 | Full variant space: 2 +2026-03-27T14:02:59.2588122Z 15:02:59.258 | After settings filtering: 2 +2026-03-27T14:02:59.2593474Z 15:02:59.258 | After built-in stripping: 1 +2026-03-27T14:02:59.2602858Z 15:02:59.259 | After scriptable stripping: 1 +2026-03-27T14:02:59.2608642Z 15:02:59.260 | Processed in 0.00 seconds +2026-03-27T14:02:59.2613897Z 15:02:59.261 | Pass "" (fp) +2026-03-27T14:02:59.2619195Z 15:02:59.261 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.2624450Z 15:02:59.262 | Full variant space: 2 +2026-03-27T14:02:59.2629647Z 15:02:59.262 | After settings filtering: 2 +2026-03-27T14:02:59.2635043Z 15:02:59.263 | After built-in stripping: 1 +2026-03-27T14:02:59.2640320Z 15:02:59.263 | After scriptable stripping: 1 +2026-03-27T14:02:59.2645457Z 15:02:59.264 | Processed in 0.00 seconds +2026-03-27T14:02:59.2651946Z 15:02:59.264 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. +2026-03-27T14:02:59.2656903Z 15:02:59.265 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.2662300Z 15:02:59.265 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:59.2667182Z 15:02:59.266 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.2672360Z 15:02:59.266 | Compiling shader "Hidden/Physics2D/SDF_PolygonGeometry" +2026-03-27T14:02:59.2677202Z 15:02:59.267 | Pass "" (vp) +2026-03-27T14:02:59.2682840Z 15:02:59.267 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.2688311Z 15:02:59.268 | Full variant space: 2 +2026-03-27T14:02:59.2693470Z 15:02:59.268 | After settings filtering: 2 +2026-03-27T14:02:59.2698323Z 15:02:59.269 | After built-in stripping: 1 +2026-03-27T14:02:59.2703338Z 15:02:59.269 | After scriptable stripping: 1 +2026-03-27T14:02:59.2708681Z 15:02:59.270 | Processed in 0.00 seconds +2026-03-27T14:02:59.2713944Z 15:02:59.271 | Pass "" (fp) +2026-03-27T14:02:59.2718938Z 15:02:59.271 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.2728128Z 15:02:59.272 | Full variant space: 2 +2026-03-27T14:02:59.2733851Z 15:02:59.272 | After settings filtering: 2 +2026-03-27T14:02:59.2738950Z 15:02:59.273 | After built-in stripping: 1 +2026-03-27T14:02:59.2744094Z 15:02:59.274 | After scriptable stripping: 1 +2026-03-27T14:02:59.2749577Z 15:02:59.274 | Processed in 0.00 seconds +2026-03-27T14:02:59.6954826Z 15:02:59.694 | Pass (vp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.16s CPU time), skipped 0 variants. +2026-03-27T14:02:59.6962821Z 15:02:59.695 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.6972716Z 15:02:59.696 | Pass (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. +2026-03-27T14:02:59.6979416Z 15:02:59.697 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.6988428Z 15:02:59.698 | Serialized binary data for shader Hidden/Physics2D/SDF_PolygonGeometry in 0.00s +2026-03-27T14:02:59.6995879Z 15:02:59.699 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:59.7003362Z 15:02:59.699 | Compiling shader "Hidden/Physics2D/SDF_Line" +2026-03-27T14:02:59.7008118Z 15:02:59.700 | Pass "" (vp) +2026-03-27T14:02:59.7015919Z 15:02:59.700 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.7022853Z 15:02:59.701 | Full variant space: 2 +2026-03-27T14:02:59.7028494Z 15:02:59.702 | After settings filtering: 2 +2026-03-27T14:02:59.7034206Z 15:02:59.703 | After built-in stripping: 1 +2026-03-27T14:02:59.7039859Z 15:02:59.703 | After scriptable stripping: 1 +2026-03-27T14:02:59.7048645Z 15:02:59.704 | Processed in 0.00 seconds +2026-03-27T14:02:59.7056239Z 15:02:59.705 | Pass "" (fp) +2026-03-27T14:02:59.7063517Z 15:02:59.705 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.7070128Z 15:02:59.706 | Full variant space: 2 +2026-03-27T14:02:59.7076099Z 15:02:59.707 | After settings filtering: 2 +2026-03-27T14:02:59.7082730Z 15:02:59.707 | After built-in stripping: 1 +2026-03-27T14:02:59.7091316Z 15:02:59.708 | After scriptable stripping: 1 +2026-03-27T14:02:59.7100741Z 15:02:59.709 | Processed in 0.00 seconds +2026-03-27T14:02:59.7109298Z 15:02:59.710 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:59.7117405Z 15:02:59.711 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.7126790Z 15:02:59.712 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:59.7135008Z 15:02:59.712 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.7140063Z 15:02:59.713 | Compiling shader "Hidden/Physics2D/SDF_Line" +2026-03-27T14:02:59.7145588Z 15:02:59.714 | Pass "" (vp) +2026-03-27T14:02:59.7151163Z 15:02:59.714 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.7156388Z 15:02:59.715 | Full variant space: 2 +2026-03-27T14:02:59.7161616Z 15:02:59.715 | After settings filtering: 2 +2026-03-27T14:02:59.7167498Z 15:02:59.716 | After built-in stripping: 1 +2026-03-27T14:02:59.7172777Z 15:02:59.716 | After scriptable stripping: 1 +2026-03-27T14:02:59.7177846Z 15:02:59.717 | Processed in 0.00 seconds +2026-03-27T14:02:59.7182828Z 15:02:59.717 | Pass "" (fp) +2026-03-27T14:02:59.7188089Z 15:02:59.718 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.7193279Z 15:02:59.718 | Full variant space: 2 +2026-03-27T14:02:59.7210492Z 15:02:59.719 | After settings filtering: 2 +2026-03-27T14:02:59.7216262Z 15:02:59.721 | After built-in stripping: 1 +2026-03-27T14:02:59.7221544Z 15:02:59.721 | After scriptable stripping: 1 +2026-03-27T14:02:59.7232415Z 15:02:59.722 | Processed in 0.00 seconds +2026-03-27T14:02:59.7233458Z 15:02:59.722 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:59.7237669Z 15:02:59.723 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.7243346Z 15:02:59.723 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:59.7250386Z 15:02:59.724 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.7267707Z 15:02:59.725 | Serialized binary data for shader Hidden/Physics2D/SDF_Line in 0.00s +2026-03-27T14:02:59.7277140Z 15:02:59.726 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:02:59.7287057Z 15:02:59.727 | Compiling shader "Hidden/Physics2D/SDF_Point" +2026-03-27T14:02:59.7296241Z 15:02:59.728 | Pass "" (vp) +2026-03-27T14:02:59.7346158Z 15:02:59.731 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.7359460Z 15:02:59.735 | Full variant space: 2 +2026-03-27T14:02:59.7367418Z 15:02:59.736 | After settings filtering: 2 +2026-03-27T14:02:59.7374871Z 15:02:59.736 | After built-in stripping: 1 +2026-03-27T14:02:59.7380370Z 15:02:59.737 | After scriptable stripping: 1 +2026-03-27T14:02:59.7389299Z 15:02:59.738 | Processed in 0.00 seconds +2026-03-27T14:02:59.7398982Z 15:02:59.739 | Pass "" (fp) +2026-03-27T14:02:59.7411081Z 15:02:59.740 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.7418960Z 15:02:59.741 | Full variant space: 2 +2026-03-27T14:02:59.7426456Z 15:02:59.742 | After settings filtering: 2 +2026-03-27T14:02:59.7432846Z 15:02:59.742 | After built-in stripping: 1 +2026-03-27T14:02:59.7479877Z 15:02:59.747 | After scriptable stripping: 1 +2026-03-27T14:02:59.7486567Z 15:02:59.748 | Processed in 0.00 seconds +2026-03-27T14:02:59.7497184Z 15:02:59.748 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:59.7506323Z 15:02:59.749 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.7513755Z 15:02:59.750 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. +2026-03-27T14:02:59.7519852Z 15:02:59.751 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.7529012Z 15:02:59.752 | Compiling shader "Hidden/Physics2D/SDF_Point" +2026-03-27T14:02:59.7539381Z 15:02:59.753 | Pass "" (vp) +2026-03-27T14:02:59.7552535Z 15:02:59.754 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.7560870Z 15:02:59.755 | Full variant space: 2 +2026-03-27T14:02:59.7567811Z 15:02:59.756 | After settings filtering: 2 +2026-03-27T14:02:59.7573543Z 15:02:59.756 | After built-in stripping: 1 +2026-03-27T14:02:59.7580921Z 15:02:59.757 | After scriptable stripping: 1 +2026-03-27T14:02:59.7585970Z 15:02:59.758 | Processed in 0.00 seconds +2026-03-27T14:02:59.7593500Z 15:02:59.758 | Pass "" (fp) +2026-03-27T14:02:59.7598676Z 15:02:59.759 | Target graphics API: gamecore_scarlett +2026-03-27T14:02:59.7603813Z 15:02:59.760 | Full variant space: 2 +2026-03-27T14:02:59.7611276Z 15:02:59.760 | After settings filtering: 2 +2026-03-27T14:02:59.7622916Z 15:02:59.761 | After built-in stripping: 1 +2026-03-27T14:02:59.7635228Z 15:02:59.762 | After scriptable stripping: 1 +2026-03-27T14:02:59.7652115Z 15:02:59.764 | Processed in 0.00 seconds +2026-03-27T14:02:59.7662698Z 15:02:59.765 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. +2026-03-27T14:02:59.7669038Z 15:02:59.766 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.7677637Z 15:02:59.767 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. +2026-03-27T14:02:59.7687806Z 15:02:59.767 | Prepared data for serialisation in 0.00s +2026-03-27T14:02:59.7694246Z 15:02:59.768 | Serialized binary data for shader Hidden/Physics2D/SDF_Point in 0.00s +2026-03-27T14:02:59.7701385Z 15:02:59.769 | gamecore_scarlett (total internal programs: 2, unique: 2) +2026-03-27T14:03:00.1776608Z 15:03:00.175 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --dagfile="Library/Bee/Playerd5b65d77.dag" --profile="Library/Bee/backend1.traceevents" Player +2026-03-27T14:03:00.1794275Z 15:03:00.178 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:03:00.1804930Z 15:03:00.179 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\PlaybackEngines\GameCoreScarlettSupport\GameCoreScarlettPlayerBuildProgram.exe" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/Bee;C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline" "Library/Bee/Playerd5b65d77.dag.json" "Library/Bee/Playerd5b65d77-inputdata.json" "Library\Bee\buildprogram0.traceevents" +2026-03-27T14:03:00.1809768Z 15:03:00.180 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:03:00.1815639Z 15:03:00.181 | ExitCode: 4 Duration: 0s85ms +2026-03-27T14:03:00.1822110Z 15:03:00.181 | DisplayProgressbar: Incremental Player Build +2026-03-27T14:03:01.8166101Z 15:03:01.812 | ExitCode: 0 Duration: 1s526ms +2026-03-27T14:03:01.8181512Z 15:03:01.817 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --dagfile="Library/Bee/Playerd5b65d77.dag" --dagfilejson="Library\Bee\Playerd5b65d77.dag.json" --profile="Library/Bee/backend2.traceevents" Player +2026-03-27T14:03:01.8203490Z 15:03:01.819 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:03:34.2850848Z 15:03:34.284 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\PlaybackEngines\GameCoreScarlettSupport\GameCoreScarlettPlayerBuildProgram.exe" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/Bee;C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline" "Library/Bee/Playerd5b65d77.dag.json" "Library/Bee/Playerd5b65d77-inputdata.json" "Library\Bee\buildprogram1.traceevents" +2026-03-27T14:03:34.2854530Z 15:03:34.285 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:03:34.2863117Z 15:03:34.285 | ExitCode: 4 Duration: 32s +2026-03-27T14:03:35.5543874Z 15:03:35.522 | ExitCode: 0 Duration: 1s412ms +2026-03-27T14:03:35.5818141Z 15:03:35.567 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --dagfile="Library/Bee/Playerd5b65d77.dag" --dagfilejson="Library\Bee\Playerd5b65d77.dag.json" --profile="Library/Bee/backend3.traceevents" Player +2026-03-27T14:03:35.5837676Z 15:03:35.582 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:03:50.4404923Z 15:03:50.433 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\PlaybackEngines\GameCoreScarlettSupport\GameCoreScarlettPlayerBuildProgram.exe" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/Bee;C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline" "Library/Bee/Playerd5b65d77.dag.json" "Library/Bee/Playerd5b65d77-inputdata.json" "Library\Bee\buildprogram2.traceevents" +2026-03-27T14:03:50.4418350Z 15:03:50.441 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:03:50.4424637Z 15:03:50.442 | ExitCode: 4 Duration: 15s +2026-03-27T14:03:52.5762818Z 15:03:52.495 | ExitCode: 0 Duration: 1s768ms +2026-03-27T14:03:52.7520578Z 15:03:52.597 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --dagfile="Library/Bee/Playerd5b65d77.dag" --dagfilejson="Library\Bee\Playerd5b65d77.dag.json" --profile="Library/Bee/backend4.traceevents" Player +2026-03-27T14:03:53.0821586Z 15:03:52.861 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 +2026-03-27T14:05:25.5582936Z 15:05:25.557 | ExitCode: 0 Duration: 1m:33s +2026-03-27T14:05:25.5590082Z 15:05:25.558 | Sentry: CliConfiguration::Configure() called +2026-03-27T14:05:25.5596844Z 15:05:25.559 | Sentry: CliConfiguration::Configure() finished +2026-03-27T14:05:25.5603902Z 15:05:25.559 | Sentry: IntegrationOptionsConfig::Configure() called +2026-03-27T14:05:25.5612457Z 15:05:25.560 | Sentry: IntegrationOptionsConfig::Configure() finished +2026-03-27T14:05:25.5617412Z 15:05:25.561 | Sentry: (Debug) Logging enabled with 'UnityLogger' min level: Debug +2026-03-27T14:05:25.5629703Z 15:05:25.562 | Sentry: (Warning) No Sentry DSN configured. Sentry will be disabled. +2026-03-27T14:05:25.5636401Z 15:05:25.563 | Sentry: (Debug) Skipping native post build process. +2026-03-27T14:05:25.9662324Z 15:05:25.964 | Refreshing native plugins compatible for Editor in 11.85 ms, found 1 plugins. +2026-03-27T14:05:25.9670516Z 15:05:25.966 | Preloading 0 native plugins for Editor in 0.00 ms. +2026-03-27T14:05:25.9677048Z 15:05:25.967 | +2026-03-27T14:05:25.9683728Z 15:05:25.967 | ------------------------------------------------------------------------------- +2026-03-27T14:05:25.9689839Z 15:05:25.968 | Build Report +2026-03-27T14:05:25.9695922Z 15:05:25.969 | Uncompressed usage by category (Percentages based on user generated assets only): +2026-03-27T14:05:25.9701458Z 15:05:25.969 | Textures 2.7 mb 97.9% +2026-03-27T14:05:25.9706725Z 15:05:25.970 | Meshes 0.0 kb 0.0% +2026-03-27T14:05:25.9712455Z 15:05:25.970 | Animations 0.0 kb 0.0% +2026-03-27T14:05:25.9718198Z 15:05:25.971 | Sounds 0.0 kb 0.0% +2026-03-27T14:05:25.9724313Z 15:05:25.972 | Shaders 31.7 kb 1.1% +2026-03-27T14:05:25.9730191Z 15:05:25.972 | Other Assets 1.9 kb 0.1% +2026-03-27T14:05:25.9736709Z 15:05:25.973 | Levels 3.7 kb 0.1% +2026-03-27T14:05:25.9742610Z 15:05:25.973 | File headers 5.8 kb 0.2% +2026-03-27T14:05:25.9747647Z 15:05:25.974 | Total User Assets 2.7 mb 100.0% +2026-03-27T14:05:25.9755811Z 15:05:25.975 | Complete build size 1.4 gb +2026-03-27T14:05:25.9761071Z 15:05:25.975 | Used Assets and files from the Resources folder, sorted by uncompressed size: +2026-03-27T14:05:25.9768100Z 15:05:25.976 | 2.7 mb 0.2% Built-in Texture2D: Splash Screen Unity Logo +2026-03-27T14:05:25.9775658Z 15:05:25.977 | 32.2 kb 0.0% Resources/unity_builtin_extra +2026-03-27T14:05:25.9783045Z 15:05:25.977 | 0.6 kb 0.0% Packages/io.sentry.unity/Runtime/Sentry.Unity.dll +2026-03-27T14:05:25.9790807Z 15:05:25.978 | 0.4 kb 0.0% Built-in Sprite: +2026-03-27T14:05:25.9797850Z 15:05:25.979 | 0.3 kb 0.0% Assets/Resources/Sentry/SentryOptions.asset +2026-03-27T14:05:25.9812425Z 15:05:25.980 | 0.2 kb 0.0% Packages/com.unity.multiplayer.center/Common/IOnboardingSectionAnalyticsProvider.cs +2026-03-27T14:05:25.9818034Z 15:05:25.981 | 0.1 kb 0.0% Packages/com.unity.multiplayer.center/Common/SelectedSolutionsData.cs +2026-03-27T14:05:25.9824671Z 15:05:25.982 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs +2026-03-27T14:05:25.9830069Z 15:05:25.982 | 0.1 kb 0.0% Packages/com.unity.multiplayer.center/Common/IOnboardingSection.cs +2026-03-27T14:05:25.9838231Z 15:05:25.983 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteAssetImportFormats.cs +2026-03-27T14:05:25.9845268Z 15:05:25.984 | 0.1 kb 0.0% Packages/com.unity.multiplayer.center/Common/StyleConstants.cs +2026-03-27T14:05:25.9852229Z 15:05:25.984 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs +2026-03-27T14:05:25.9858725Z 15:05:25.985 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_DynamicFontAssetUtilities.cs +2026-03-27T14:05:25.9865003Z 15:05:25.986 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs +2026-03-27T14:05:25.9871586Z 15:05:25.986 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs +2026-03-27T14:05:25.9876796Z 15:05:25.987 | 0.1 kb 0.0% Packages/com.unity.multiplayer.center/Common/AnswerData.cs +2026-03-27T14:05:25.9882845Z 15:05:25.987 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_ScrollbarEventHandler.cs +2026-03-27T14:05:25.9889215Z 15:05:25.988 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_PackageResourceImporter.cs +2026-03-27T14:05:25.9894740Z 15:05:25.989 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/InternalBridge/ObjectUtilsBridge.cs +2026-03-27T14:05:25.9900162Z 15:05:25.989 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Utility/ReflectionMethodsCache.cs +2026-03-27T14:05:25.9905823Z 15:05:25.990 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MultipleDisplayUtilities.cs +2026-03-27T14:05:25.9911236Z 15:05:25.990 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/HorizontalLayoutGroup.cs +2026-03-27T14:05:25.9916868Z 15:05:25.991 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/IGraphicEnabledDisabled.cs +2026-03-27T14:05:25.9922583Z 15:05:25.991 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/GraphicRebuildTracker.cs +2026-03-27T14:05:25.9928584Z 15:05:25.992 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling/RectangularVertexClipper.cs +2026-03-27T14:05:25.9933794Z 15:05:25.992 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs +2026-03-27T14:05:25.9939744Z 15:05:25.993 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs +2026-03-27T14:05:25.9945649Z 15:05:25.994 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs +2026-03-27T14:05:25.9950961Z 15:05:25.994 | 0.1 kb 0.0% Assets/Scripts/IntegrationOptionsConfiguration.cs +2026-03-27T14:05:25.9956615Z 15:05:25.995 | 0.1 kb 0.0% Packages/io.sentry.unity/Runtime/SentryUserFeedback.cs +2026-03-27T14:05:25.9968974Z 15:05:25.995 | 0.1 kb 0.0% Packages/io.sentry.unity/Runtime/SentryInitialization.cs +2026-03-27T14:05:25.9974638Z 15:05:25.997 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Animation/CoroutineTween.cs +2026-03-27T14:05:25.9982456Z 15:05:25.997 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventInterfaces.cs +2026-03-27T14:05:25.9988437Z 15:05:25.998 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMPro_ExtensionMethods.cs +2026-03-27T14:05:25.9994925Z 15:05:25.999 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextParsingUtilities.cs +2026-03-27T14:05:26.0000408Z 15:05:25.999 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextElement_Legacy.cs +2026-03-27T14:05:26.0006539Z 15:05:26.000 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontAssetUtilities.cs +2026-03-27T14:05:26.0017290Z 15:05:26.000 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/MaterialReferenceManager.cs +2026-03-27T14:05:26.0022919Z 15:05:26.001 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/FontFeatureCommonGSUB.cs +2026-03-27T14:05:26.0028603Z 15:05:26.002 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/SetPropertyUtility.cs +2026-03-27T14:05:26.0034425Z 15:05:26.003 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MaterialModifiers/IMaterialModifier.cs +2026-03-27T14:05:26.0040257Z 15:05:26.003 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/VerticalLayoutGroup.cs +2026-03-27T14:05:26.0045976Z 15:05:26.004 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/ContentSizeFitter.cs +2026-03-27T14:05:26.0051755Z 15:05:26.004 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/AspectRatioFitter.cs +2026-03-27T14:05:26.0057527Z 15:05:26.005 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/FontUpdateTracker.cs +2026-03-27T14:05:26.0063147Z 15:05:26.005 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/CanvasUpdateRegistry.cs +2026-03-27T14:05:26.0071213Z 15:05:26.006 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/AnimationTriggers.cs +2026-03-27T14:05:26.0073901Z 15:05:26.007 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs +2026-03-27T14:05:26.0079534Z 15:05:26.007 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs +2026-03-27T14:05:26.0085350Z 15:05:26.008 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs +2026-03-27T14:05:26.0092962Z 15:05:26.008 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/RaycasterManager.cs +2026-03-27T14:05:26.0098679Z 15:05:26.009 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/RaycastResult.cs +2026-03-27T14:05:26.0104431Z 15:05:26.010 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs +2026-03-27T14:05:26.0110206Z 15:05:26.010 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs +2026-03-27T14:05:26.0115350Z 15:05:26.011 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/ExecuteEvents.cs +2026-03-27T14:05:26.0125668Z 15:05:26.011 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs +2026-03-27T14:05:26.0134317Z 15:05:26.012 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs +2026-03-27T14:05:26.0142522Z 15:05:26.013 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs +2026-03-27T14:05:26.0150165Z 15:05:26.014 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextProcessingStack.cs +2026-03-27T14:05:26.0155883Z 15:05:26.015 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontFeaturesCommon.cs +2026-03-27T14:05:26.0161096Z 15:05:26.015 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMPro_EventManager.cs +2026-03-27T14:05:26.0167068Z 15:05:26.016 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_UpdateRegistery.cs +2026-03-27T14:05:26.0172450Z 15:05:26.016 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_UpdateManager.cs +2026-03-27T14:05:26.0177612Z 15:05:26.017 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextUtilities.cs +2026-03-27T14:05:26.0183235Z 15:05:26.017 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextProcessingCommon.cs +2026-03-27T14:05:26.0188485Z 15:05:26.018 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteCharacter.cs +2026-03-27T14:05:26.0194147Z 15:05:26.019 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteAnimator.cs +2026-03-27T14:05:26.0198761Z 15:05:26.019 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SelectionCaret.cs +2026-03-27T14:05:26.0204415Z 15:05:26.020 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_ResourcesManager.cs +2026-03-27T14:05:26.0211179Z 15:05:26.020 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_MaterialManager.cs +2026-03-27T14:05:26.0216989Z 15:05:26.021 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_InputValidator.cs +2026-03-27T14:05:26.0222312Z 15:05:26.021 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontFeatureTable.cs +2026-03-27T14:05:26.0228297Z 15:05:26.022 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_DefaultControls.cs +2026-03-27T14:05:26.0233665Z 15:05:26.022 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Compatibility.cs +2026-03-27T14:05:26.0239265Z 15:05:26.023 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_ColorGradient.cs +2026-03-27T14:05:26.0244929Z 15:05:26.024 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_CharacterInfo.cs +2026-03-27T14:05:26.0251254Z 15:05:26.024 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/ITextPreProcessor.cs +2026-03-27T14:05:26.0257145Z 15:05:26.025 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/FontFeatureCommonGPOS.cs +2026-03-27T14:05:26.0265040Z 15:05:26.026 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/PositionAsUV1.cs +2026-03-27T14:05:26.0271327Z 15:05:26.026 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/IMeshModifier.cs +2026-03-27T14:05:26.0276609Z 15:05:26.027 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/BaseMeshEffect.cs +2026-03-27T14:05:26.0286387Z 15:05:26.027 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/StencilMaterial.cs +2026-03-27T14:05:26.0293465Z 15:05:26.028 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MaskableGraphic.cs +2026-03-27T14:05:26.0299768Z 15:05:26.029 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MaskUtilities.cs +2026-03-27T14:05:26.0305735Z 15:05:26.030 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/LayoutUtility.cs +2026-03-27T14:05:26.0311373Z 15:05:26.030 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/LayoutRebuilder.cs +2026-03-27T14:05:26.0316701Z 15:05:26.031 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/LayoutElement.cs +2026-03-27T14:05:26.0323241Z 15:05:26.031 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/ILayoutElement.cs +2026-03-27T14:05:26.0329862Z 15:05:26.032 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/GridLayoutGroup.cs +2026-03-27T14:05:26.0335516Z 15:05:26.033 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/GraphicRegistry.cs +2026-03-27T14:05:26.0341609Z 15:05:26.033 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/GraphicRaycaster.cs +2026-03-27T14:05:26.0347845Z 15:05:26.034 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/DefaultControls.cs +2026-03-27T14:05:26.0353584Z 15:05:26.034 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling/ClipperRegistry.cs +2026-03-27T14:05:26.0359355Z 15:05:26.035 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIBehaviour.cs +2026-03-27T14:05:26.0365099Z 15:05:26.036 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs +2026-03-27T14:05:26.0371855Z 15:05:26.036 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventTrigger.cs +2026-03-27T14:05:26.0377267Z 15:05:26.037 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventSystem.cs +2026-03-27T14:05:26.0383146Z 15:05:26.037 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMPro_MeshUtilities.cs +2026-03-27T14:05:26.0388991Z 15:05:26.038 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_ShaderUtilities.cs +2026-03-27T14:05:26.0394668Z 15:05:26.039 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_RichTextTagsCommon.cs +2026-03-27T14:05:26.0400597Z 15:05:26.039 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontAssetCommon.cs +2026-03-27T14:05:26.0411210Z 15:05:26.040 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TextMeshProUGUI.cs +2026-03-27T14:05:26.0417626Z 15:05:26.041 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TextContainer.cs +2026-03-27T14:05:26.0422989Z 15:05:26.041 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextElement.cs +2026-03-27T14:05:26.0429844Z 15:05:26.042 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SubMeshUI.cs +2026-03-27T14:05:26.0440124Z 15:05:26.043 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_StyleSheet.cs +2026-03-27T14:05:26.0447757Z 15:05:26.044 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteGlyph.cs +2026-03-27T14:05:26.0453680Z 15:05:26.045 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteAsset.cs +2026-03-27T14:05:26.0459413Z 15:05:26.045 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_InputField.cs +2026-03-27T14:05:26.0468656Z 15:05:26.046 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontAsset.cs +2026-03-27T14:05:26.0474910Z 15:05:26.047 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_CoroutineTween.cs +2026-03-27T14:05:26.0483621Z 15:05:26.047 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Character.cs +2026-03-27T14:05:26.0492413Z 15:05:26.048 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Utility/VertexHelper.cs +2026-03-27T14:05:26.0500602Z 15:05:26.049 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/ToggleGroup.cs +2026-03-27T14:05:26.0507065Z 15:05:26.050 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/SpriteState.cs +2026-03-27T14:05:26.0514466Z 15:05:26.051 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Selectable.cs +2026-03-27T14:05:26.0520435Z 15:05:26.051 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Scrollbar.cs +2026-03-27T14:05:26.0526522Z 15:05:26.052 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/ScrollRect.cs +2026-03-27T14:05:26.0533106Z 15:05:26.052 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/RectMask2D.cs +2026-03-27T14:05:26.0539099Z 15:05:26.053 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Navigation.cs +2026-03-27T14:05:26.0545025Z 15:05:26.054 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/LayoutGroup.cs +2026-03-27T14:05:26.0550954Z 15:05:26.054 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/CanvasScaler.cs +2026-03-27T14:05:26.0557082Z 15:05:26.055 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/InputField.cs +2026-03-27T14:05:26.0562600Z 15:05:26.055 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/IMaskable.cs +2026-03-27T14:05:26.0569916Z 15:05:26.056 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/ColorBlock.cs +2026-03-27T14:05:26.0575098Z 15:05:26.057 | 0.1 kb 0.0% Assets/Scripts/IntegrationTester.cs +2026-03-27T14:05:26.0580856Z 15:05:26.057 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling/IClipRegion.cs +2026-03-27T14:05:26.0596583Z 15:05:26.058 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TextMeshPro.cs +2026-03-27T14:05:26.0603812Z 15:05:26.059 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextInfo.cs +2026-03-27T14:05:26.0611166Z 15:05:26.060 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SubMesh.cs +2026-03-27T14:05:26.0618547Z 15:05:26.061 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Style.cs +2026-03-27T14:05:26.0624682Z 15:05:26.062 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Sprite.cs +2026-03-27T14:05:26.0633047Z 15:05:26.062 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Settings.cs +2026-03-27T14:05:26.0639909Z 15:05:26.063 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_MeshInfo.cs +2026-03-27T14:05:26.0645731Z 15:05:26.064 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_LineInfo.cs +2026-03-27T14:05:26.0652304Z 15:05:26.064 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Dropdown.cs +2026-03-27T14:05:26.0658098Z 15:05:26.065 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Asset.cs +2026-03-27T14:05:26.0664067Z 15:05:26.065 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/FastAction.cs +2026-03-27T14:05:26.0670049Z 15:05:26.066 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs +2026-03-27T14:05:26.0675741Z 15:05:26.067 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/Outline.cs +2026-03-27T14:05:26.0681934Z 15:05:26.067 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Toggle.cs +2026-03-27T14:05:26.0688095Z 15:05:26.068 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Slider.cs +2026-03-27T14:05:26.0693824Z 15:05:26.068 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/RawImage.cs +2026-03-27T14:05:26.0699410Z 15:05:26.069 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Image.cs +2026-03-27T14:05:26.0705429Z 15:05:26.070 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/IMask.cs +2026-03-27T14:05:26.0711104Z 15:05:26.070 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Graphic.cs +2026-03-27T14:05:26.0716826Z 15:05:26.071 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/FontData.cs +2026-03-27T14:05:26.0722811Z 15:05:26.071 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Dropdown.cs +2026-03-27T14:05:26.0729861Z 15:05:26.072 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling/Clipping.cs +2026-03-27T14:05:26.0735453Z 15:05:26.073 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Button.cs +2026-03-27T14:05:26.0741122Z 15:05:26.073 | 0.1 kb 0.0% Assets/Scripts/CliConfiguration.cs +2026-03-27T14:05:26.0752593Z 15:05:26.074 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Text.cs +2026-03-27T14:05:26.0758536Z 15:05:26.075 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Text.cs +2026-03-27T14:05:26.0767030Z 15:05:26.076 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Misc.cs +2026-03-27T14:05:26.0772670Z 15:05:26.076 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Mask.cs +2026-03-27T14:05:26.0778884Z 15:05:26.077 | 0.1 kb 0.0% Assets/Scripts/Logger.cs +2026-03-27T14:05:26.0785349Z 15:05:26.078 | 0.1 kb 0.0% Assets/Resources/Sentry/IntegrationOptionsConfiguration.asset +2026-03-27T14:05:26.0791607Z 15:05:26.078 | ------------------------------------------------------------------------------- +2026-03-27T14:05:26.0797506Z 15:05:26.079 | Unloading 8 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:05:26.0803067Z 15:05:26.079 | Unloading 66 unused Assets / (0.8 MB). Loaded Objects now: 1137. +2026-03-27T14:05:26.0809104Z 15:05:26.080 | Memory consumption went from 106.8 MB to 106.0 MB. +2026-03-27T14:05:26.0815354Z 15:05:26.081 | Total: 7.802500 ms (FindLiveObjects: 0.101500 ms CreateObjectMapping: 0.019000 ms MarkObjects: 7.139500 ms DeleteObjects: 0.541100 ms) +2026-03-27T14:05:26.0820830Z 15:05:26.081 | +2026-03-27T14:05:26.0826402Z 15:05:26.082 | DisplayProgressNotification: Build Successful +2026-03-27T14:05:26.0831718Z 15:05:26.082 | Build Finished, Result: Success. +2026-03-27T14:05:26.4944514Z 15:05:26.493 | ##utp:{"type":"PlayerBuildInfo","version":2,"phase":"Immediate","time":1774620326146,"processId":7096,"steps":[{"description":"Preprocess Player","duration":312},{"description":"Prepare For Build","duration":1},{"description":"ProducePlayerScriptAssemblies","duration":15675},{"description":"Verify Build setup","duration":37},{"description":"Prepare assets for target platform","duration":1178},{"description":"Prepare splash screen","duration":56},{"description":"Building scenes","duration":579},{"description":"Build scripts DLLs","duration":2055},{"description":"Build GlobalGameManagers file","duration":392},{"description":"Writing asset files","duration":2254},{"description":"Building Resources/unity_builtin_extra","duration":16351},{"description":"Write data build dirty tracking information","duration":50},{"description":"Postprocess built player","duration":145933}],"duration":184873} +2026-03-27T14:05:26.4948762Z 15:05:26.494 | Unloading 0 Unused Serialized files (Serialized files now loaded: 0) +2026-03-27T14:05:26.4954676Z 15:05:26.495 | Loaded scene 'Temp/__Backupscenes/0.backup' +2026-03-27T14:05:26.4961134Z 15:05:26.495 | Deserialize: 1.109 ms +2026-03-27T14:05:26.4966567Z 15:05:26.496 | Integration: 5.991 ms +2026-03-27T14:05:26.4972485Z 15:05:26.496 | Integration of assets: 0.002 ms +2026-03-27T14:05:26.4978612Z 15:05:26.497 | Thread Wait Time: 0.014 ms +2026-03-27T14:05:26.4984501Z 15:05:26.498 | Total Operation Time: 7.116 ms +2026-03-27T14:05:26.4990535Z 15:05:26.498 | Unloading 0 unused Assets / (153 B). Loaded Objects now: 1130. +2026-03-27T14:05:26.4996108Z 15:05:26.499 | Memory consumption went from 105.3 MB to 105.3 MB. +2026-03-27T14:05:26.5002035Z 15:05:26.499 | Total: 6.429300 ms (FindLiveObjects: 0.066000 ms CreateObjectMapping: 0.013700 ms MarkObjects: 6.343500 ms DeleteObjects: 0.004800 ms) +2026-03-27T14:05:26.5008346Z 15:05:26.500 | +2026-03-27T14:05:26.5014755Z 15:05:26.501 | Builder: Build result at outputPath: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test +2026-03-27T14:05:26.5021843Z 15:05:26.501 | Builder: Build succeeded: 1452215066 bytes +2026-03-27T14:05:26.5027463Z 15:05:26.502 | Builder: Build succeeded with 2 warnings. +2026-03-27T14:05:26.5034335Z 15:05:26.502 | Batchmode quit successfully invoked - shutting down! +2026-03-27T14:05:26.5042705Z 15:05:26.503 | Killing ADB server in 0.158995 seconds. +2026-03-27T14:05:26.9131435Z 15:05:26.912 | [Physics::Module] Cleanup current backend. +2026-03-27T14:05:26.9138037Z 15:05:26.913 | [Physics::Module] Id: 0xf2b8ea05 +2026-03-27T14:05:26.9143994Z 15:05:26.913 | Input System module state changed to: ShutdownInProgress. +2026-03-27T14:05:26.9149554Z 15:05:26.914 | Input System polling thread exited. +2026-03-27T14:05:26.9155537Z 15:05:26.915 | Input System module state changed to: Shutdown. +2026-03-27T14:05:26.9162934Z 15:05:26.915 | [Licensing::IpcConnector] LicenseClient-github-runner-notifications channel disconnected successfully. +2026-03-27T14:05:26.9168664Z 15:05:26.916 | [Licensing::IpcConnector] LicenseClient-github-runner channel disconnected successfully. +2026-03-27T14:05:26.9174109Z 15:05:26.916 | AcceleratorClientConnectionCallback - disconnected - :0 +2026-03-27T14:05:26.9179840Z 15:05:26.917 | Cleanup mono +2026-03-27T14:05:27.7429337Z 15:05:27.742 | Exiting batchmode successfully now! +2026-03-27T14:05:28.1530585Z 15:05:28.150 | Exiting without the bug reporter. Application will terminate with return code 0 +2026-03-27T14:05:28.5626701Z ##[endgroup] +2026-03-27T14:05:28.5651619Z Unity finished successfully. Time taken: 00:03:23.812 +2026-03-27T14:05:28.5661226Z 15:05:28.565 | Build output: +2026-03-27T14:05:28.5763439Z 15:05:28.575 | test +2026-03-27T14:05:28.5775359Z 15:05:28.577 | [OK] Project built +2026-03-27T14:05:28.5784221Z 15:05:28.577 | Skipping tests (-SkipTests flag set) +2026-03-27T14:05:28.7611478Z ##[group]Run $buildDir = "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build" +2026-03-27T14:05:28.7612817Z $buildDir = "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build" +2026-03-27T14:05:28.7613524Z Write-Host "Build output structure:" +2026-03-27T14:05:28.7613975Z Get-ChildItem -Path $buildDir -Recurse -Depth 2 | ForEach-Object { +2026-03-27T14:05:28.7615215Z  Write-Host " $($_.FullName.Replace($buildDir, '.'))" +2026-03-27T14:05:28.7615524Z } +2026-03-27T14:05:28.7615941Z $config = Get-ChildItem -Path $buildDir -Filter "MicrosoftGame.config" -Recurse | Select-Object -First 1 +2026-03-27T14:05:28.7616431Z if ($config) { +2026-03-27T14:05:28.7616799Z  Write-Host "`nUnity-generated MicrosoftGame.config:" +2026-03-27T14:05:28.7617207Z  Get-Content $config.FullName +2026-03-27T14:05:28.7617453Z } +2026-03-27T14:05:28.7713914Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" +2026-03-27T14:05:28.7714242Z env: +2026-03-27T14:05:28.7714678Z GH_TOKEN: *** +2026-03-27T14:05:28.7714858Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T14:05:28.7715128Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T14:05:28.7715431Z GDK_VERSION: 250400 +2026-03-27T14:05:28.7715828Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T14:05:28.7716491Z SENTRY_AUTH_TOKEN: *** +2026-03-27T14:05:28.7716677Z ##[endgroup] +2026-03-27T14:05:29.2460471Z Build output structure: +2026-03-27T14:05:29.2893666Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test +2026-03-27T14:05:29.2908318Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp +2026-03-27T14:05:29.2913189Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose +2026-03-27T14:05:29.2918059Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols +2026-03-27T14:05:29.2931616Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Symbols +2026-03-27T14:05:29.2952796Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\__Generated_CodeGen.c +2026-03-27T14:05:29.2958093Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\__Generated.cpp +2026-03-27T14:05:29.2963190Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\analytics.json +2026-03-27T14:05:29.2969377Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Assembly-CSharp_CodeGen.c +2026-03-27T14:05:29.2974256Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Assembly-CSharp.cpp +2026-03-27T14:05:29.2979378Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\CppPlugin.cpp +2026-03-27T14:05:29.2984750Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__1.cpp +2026-03-27T14:05:29.2989866Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__10.cpp +2026-03-27T14:05:29.2997727Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__11.cpp +2026-03-27T14:05:29.3000349Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__12.cpp +2026-03-27T14:05:29.3005129Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__13.cpp +2026-03-27T14:05:29.3010118Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__14.cpp +2026-03-27T14:05:29.3015433Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__15.cpp +2026-03-27T14:05:29.3020985Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__16.cpp +2026-03-27T14:05:29.3026764Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__17.cpp +2026-03-27T14:05:29.3032081Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__18.cpp +2026-03-27T14:05:29.3036890Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__19.cpp +2026-03-27T14:05:29.3041808Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__2.cpp +2026-03-27T14:05:29.3047083Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__20.cpp +2026-03-27T14:05:29.3051820Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__21.cpp +2026-03-27T14:05:29.3056564Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__22.cpp +2026-03-27T14:05:29.3061390Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__23.cpp +2026-03-27T14:05:29.3066367Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__24.cpp +2026-03-27T14:05:29.3071440Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__25.cpp +2026-03-27T14:05:29.3076190Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__26.cpp +2026-03-27T14:05:29.3081308Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__27.cpp +2026-03-27T14:05:29.3085882Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__28.cpp +2026-03-27T14:05:29.3092558Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__29.cpp +2026-03-27T14:05:29.3097396Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__3.cpp +2026-03-27T14:05:29.3102174Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__30.cpp +2026-03-27T14:05:29.3108955Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__4.cpp +2026-03-27T14:05:29.3112693Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__5.cpp +2026-03-27T14:05:29.3117510Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__6.cpp +2026-03-27T14:05:29.3122684Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__7.cpp +2026-03-27T14:05:29.3129245Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__8.cpp +2026-03-27T14:05:29.3138117Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__9.cpp +2026-03-27T14:05:29.3144803Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods.cpp +2026-03-27T14:05:29.3151140Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__1.cpp +2026-03-27T14:05:29.3155945Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__10.cpp +2026-03-27T14:05:29.3160639Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__11.cpp +2026-03-27T14:05:29.3167041Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__12.cpp +2026-03-27T14:05:29.3178552Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__13.cpp +2026-03-27T14:05:29.3179680Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__14.cpp +2026-03-27T14:05:29.3180881Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__15.cpp +2026-03-27T14:05:29.3185995Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__16.cpp +2026-03-27T14:05:29.3190883Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__17.cpp +2026-03-27T14:05:29.3195583Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__18.cpp +2026-03-27T14:05:29.3200674Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__19.cpp +2026-03-27T14:05:29.3205215Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__2.cpp +2026-03-27T14:05:29.3210888Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__20.cpp +2026-03-27T14:05:29.3215657Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__21.cpp +2026-03-27T14:05:29.3220267Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__22.cpp +2026-03-27T14:05:29.3225820Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__23.cpp +2026-03-27T14:05:29.3229474Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__24.cpp +2026-03-27T14:05:29.3234144Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__25.cpp +2026-03-27T14:05:29.3238696Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__26.cpp +2026-03-27T14:05:29.3243380Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__27.cpp +2026-03-27T14:05:29.3248524Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__28.cpp +2026-03-27T14:05:29.3253217Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__29.cpp +2026-03-27T14:05:29.3257776Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__3.cpp +2026-03-27T14:05:29.3262414Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__30.cpp +2026-03-27T14:05:29.3267074Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__31.cpp +2026-03-27T14:05:29.3271919Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__32.cpp +2026-03-27T14:05:29.3276421Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__33.cpp +2026-03-27T14:05:29.3284299Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__34.cpp +2026-03-27T14:05:29.3289488Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__35.cpp +2026-03-27T14:05:29.3294165Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__36.cpp +2026-03-27T14:05:29.3299101Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__37.cpp +2026-03-27T14:05:29.3303737Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__38.cpp +2026-03-27T14:05:29.3308057Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__39.cpp +2026-03-27T14:05:29.3312376Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__4.cpp +2026-03-27T14:05:29.3317128Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__40.cpp +2026-03-27T14:05:29.3321591Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__41.cpp +2026-03-27T14:05:29.3326169Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__42.cpp +2026-03-27T14:05:29.3330667Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__43.cpp +2026-03-27T14:05:29.3336009Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__44.cpp +2026-03-27T14:05:29.3340003Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__45.cpp +2026-03-27T14:05:29.3345112Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__46.cpp +2026-03-27T14:05:29.3349466Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__47.cpp +2026-03-27T14:05:29.3357104Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__48.cpp +2026-03-27T14:05:29.3362123Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__49.cpp +2026-03-27T14:05:29.3369463Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__5.cpp +2026-03-27T14:05:29.3375565Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__50.cpp +2026-03-27T14:05:29.3381469Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__51.cpp +2026-03-27T14:05:29.3386550Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__52.cpp +2026-03-27T14:05:29.3391483Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__53.cpp +2026-03-27T14:05:29.3396544Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__54.cpp +2026-03-27T14:05:29.3401176Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__55.cpp +2026-03-27T14:05:29.3406606Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__56.cpp +2026-03-27T14:05:29.3411898Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__57.cpp +2026-03-27T14:05:29.3416971Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__58.cpp +2026-03-27T14:05:29.3421988Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__59.cpp +2026-03-27T14:05:29.3426799Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__6.cpp +2026-03-27T14:05:29.3431796Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__60.cpp +2026-03-27T14:05:29.3436451Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__61.cpp +2026-03-27T14:05:29.3443621Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__62.cpp +2026-03-27T14:05:29.3449334Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__63.cpp +2026-03-27T14:05:29.3454740Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__64.cpp +2026-03-27T14:05:29.3461058Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__65.cpp +2026-03-27T14:05:29.3464313Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__66.cpp +2026-03-27T14:05:29.3469112Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__67.cpp +2026-03-27T14:05:29.3474277Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__68.cpp +2026-03-27T14:05:29.3479203Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__69.cpp +2026-03-27T14:05:29.3484187Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__7.cpp +2026-03-27T14:05:29.3489229Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__70.cpp +2026-03-27T14:05:29.3494151Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__71.cpp +2026-03-27T14:05:29.3499113Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__72.cpp +2026-03-27T14:05:29.3504224Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__73.cpp +2026-03-27T14:05:29.3508943Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__74.cpp +2026-03-27T14:05:29.3513993Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__75.cpp +2026-03-27T14:05:29.3519015Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__76.cpp +2026-03-27T14:05:29.3523823Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__77.cpp +2026-03-27T14:05:29.3528939Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__78.cpp +2026-03-27T14:05:29.3533819Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__79.cpp +2026-03-27T14:05:29.3539371Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__8.cpp +2026-03-27T14:05:29.3544726Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__80.cpp +2026-03-27T14:05:29.3549893Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__81.cpp +2026-03-27T14:05:29.3554646Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__82.cpp +2026-03-27T14:05:29.3559500Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__83.cpp +2026-03-27T14:05:29.3564174Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__84.cpp +2026-03-27T14:05:29.3570162Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__85.cpp +2026-03-27T14:05:29.3573578Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__86.cpp +2026-03-27T14:05:29.3578686Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__87.cpp +2026-03-27T14:05:29.3583445Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__88.cpp +2026-03-27T14:05:29.3587924Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__89.cpp +2026-03-27T14:05:29.3593584Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__9.cpp +2026-03-27T14:05:29.3601273Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__90.cpp +2026-03-27T14:05:29.3606745Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__91.cpp +2026-03-27T14:05:29.3611387Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__92.cpp +2026-03-27T14:05:29.3616350Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__93.cpp +2026-03-27T14:05:29.3621433Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__94.cpp +2026-03-27T14:05:29.3626317Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__95.cpp +2026-03-27T14:05:29.3631131Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__96.cpp +2026-03-27T14:05:29.3635949Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__97.cpp +2026-03-27T14:05:29.3640948Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__98.cpp +2026-03-27T14:05:29.3645626Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics.cpp +2026-03-27T14:05:29.3651426Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateFieldValues.cpp +2026-03-27T14:05:29.3655926Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateFieldValues1.cpp +2026-03-27T14:05:29.3660513Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateFieldValues2.cpp +2026-03-27T14:05:29.3665492Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateTypeValues.cpp +2026-03-27T14:05:29.3670202Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateTypeValues1.cpp +2026-03-27T14:05:29.3674965Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCFieldValuesTable.c +2026-03-27T14:05:29.3680593Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCTypeValuesTable.c +2026-03-27T14:05:29.3684506Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCodeRegistration.cpp +2026-03-27T14:05:29.3689417Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericAdjustorThunkTable.c +2026-03-27T14:05:29.3694140Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericClassTable.c +2026-03-27T14:05:29.3698959Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericInstDefinitions.c +2026-03-27T14:05:29.3703871Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericMethodDefinitions.c +2026-03-27T14:05:29.3708615Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericMethodPointerTable.c +2026-03-27T14:05:29.3713186Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericMethodTable.c +2026-03-27T14:05:29.3717973Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppInteropDataTable.cpp +2026-03-27T14:05:29.3722694Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppInvokerTable.cpp +2026-03-27T14:05:29.3728058Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppMetadataRegistration.c +2026-03-27T14:05:29.3732775Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppMetadataUsage.c +2026-03-27T14:05:29.3737330Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppReversePInvokeWrapperTable.cpp +2026-03-27T14:05:29.3741920Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppRgctxTable.c +2026-03-27T14:05:29.3746917Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppTypeDefinitions.c +2026-03-27T14:05:29.3754283Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppUnresolvedIndirectCallStubs.cpp +2026-03-27T14:05:29.3760445Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\io.sentry.unity.runtime_CodeGen.c +2026-03-27T14:05:29.3765604Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\io.sentry.unity.runtime.cpp +2026-03-27T14:05:29.3771171Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Mono.Security__1.cpp +2026-03-27T14:05:29.3776490Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Mono.Security_CodeGen.c +2026-03-27T14:05:29.3781336Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Mono.Security.cpp +2026-03-27T14:05:29.3786022Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__1.cpp +2026-03-27T14:05:29.3792058Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__10.cpp +2026-03-27T14:05:29.3796472Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__11.cpp +2026-03-27T14:05:29.3801128Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__12.cpp +2026-03-27T14:05:29.3805784Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__13.cpp +2026-03-27T14:05:29.3810514Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__14.cpp +2026-03-27T14:05:29.3815025Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__15.cpp +2026-03-27T14:05:29.3819947Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__16.cpp +2026-03-27T14:05:29.3824828Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__17.cpp +2026-03-27T14:05:29.3829606Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__18.cpp +2026-03-27T14:05:29.3834461Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__19.cpp +2026-03-27T14:05:29.3839308Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__2.cpp +2026-03-27T14:05:29.3844481Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__20.cpp +2026-03-27T14:05:29.3849005Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__21.cpp +2026-03-27T14:05:29.3853635Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__3.cpp +2026-03-27T14:05:29.3944314Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__4.cpp +2026-03-27T14:05:29.3949037Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__5.cpp +2026-03-27T14:05:29.3953958Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__6.cpp +2026-03-27T14:05:29.3958922Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__7.cpp +2026-03-27T14:05:29.3963553Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__8.cpp +2026-03-27T14:05:29.3968198Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__9.cpp +2026-03-27T14:05:29.3972592Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib_CodeGen.c +2026-03-27T14:05:29.3977211Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib.cpp +2026-03-27T14:05:29.3983200Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry__1.cpp +2026-03-27T14:05:29.3986998Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry__2.cpp +2026-03-27T14:05:29.3991789Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry__3.cpp +2026-03-27T14:05:29.3996076Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry__4.cpp +2026-03-27T14:05:29.4000808Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry_CodeGen.c +2026-03-27T14:05:29.4005282Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\sentry_utils.c +2026-03-27T14:05:29.4010379Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.cpp +2026-03-27T14:05:29.4015209Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Microsoft.Bcl.AsyncInterfaces_CodeGen.c +2026-03-27T14:05:29.4020222Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Microsoft.Bcl.AsyncInterfaces.cpp +2026-03-27T14:05:29.4024786Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Buffers_CodeGen.c +2026-03-27T14:05:29.4029567Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Buffers.cpp +2026-03-27T14:05:29.4034625Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Collections.Immutable_CodeGen.c +2026-03-27T14:05:29.4039070Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Collections.Immutable.cpp +2026-03-27T14:05:29.4043468Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Memory_CodeGen.c +2026-03-27T14:05:29.4048698Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Memory.cpp +2026-03-27T14:05:29.4053420Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Numerics.Vectors_CodeGen.c +2026-03-27T14:05:29.4058381Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Numerics.Vectors.cpp +2026-03-27T14:05:29.4062906Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Reflection.Metadata_CodeGen.c +2026-03-27T14:05:29.4067736Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Reflection.Metadata.cpp +2026-03-27T14:05:29.4075451Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Runtime.CompilerServices.Unsafe_CodeGen.c +2026-03-27T14:05:29.4080797Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Runtime.CompilerServices.Unsafe.cpp +2026-03-27T14:05:29.4086680Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Encodings.Web_CodeGen.c +2026-03-27T14:05:29.4090752Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Encodings.Web.cpp +2026-03-27T14:05:29.4095335Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Json__1.cpp +2026-03-27T14:05:29.4099773Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Json__2.cpp +2026-03-27T14:05:29.4104516Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Json_CodeGen.c +2026-03-27T14:05:29.4108955Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Json.cpp +2026-03-27T14:05:29.4114443Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Threading.Tasks.Extensions_CodeGen.c +2026-03-27T14:05:29.4118589Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Threading.Tasks.Extensions.cpp +2026-03-27T14:05:29.4123311Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity__1.cpp +2026-03-27T14:05:29.4128611Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity_CodeGen.c +2026-03-27T14:05:29.4133425Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity.cpp +2026-03-27T14:05:29.4138355Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity.Native_CodeGen.c +2026-03-27T14:05:29.4142971Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity.Native.cpp +2026-03-27T14:05:29.4147677Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__1.cpp +2026-03-27T14:05:29.4152356Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__10.cpp +2026-03-27T14:05:29.4157250Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__2.cpp +2026-03-27T14:05:29.4162284Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__3.cpp +2026-03-27T14:05:29.4167515Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__4.cpp +2026-03-27T14:05:29.4172389Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__5.cpp +2026-03-27T14:05:29.4176780Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__6.cpp +2026-03-27T14:05:29.4181646Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__7.cpp +2026-03-27T14:05:29.4186386Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__8.cpp +2026-03-27T14:05:29.4191897Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__9.cpp +2026-03-27T14:05:29.4195897Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System_CodeGen.c +2026-03-27T14:05:29.4207746Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Core_CodeGen.c +2026-03-27T14:05:29.4209141Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Core.cpp +2026-03-27T14:05:29.4211179Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.cpp +2026-03-27T14:05:29.4216186Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Net.Http_CodeGen.c +2026-03-27T14:05:29.4220843Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Net.Http.cpp +2026-03-27T14:05:29.4226055Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Numerics_CodeGen.c +2026-03-27T14:05:29.4232203Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Numerics.cpp +2026-03-27T14:05:29.4236991Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine_CodeGen.c +2026-03-27T14:05:29.4241928Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AccessibilityModule_CodeGen.c +2026-03-27T14:05:29.4246888Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AccessibilityModule.cpp +2026-03-27T14:05:29.4251682Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AdaptivePerformanceModule__1.cpp +2026-03-27T14:05:29.4256029Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AdaptivePerformanceModule_CodeGen.c +2026-03-27T14:05:29.4260878Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AdaptivePerformanceModule.cpp +2026-03-27T14:05:29.4265185Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AIModule_CodeGen.c +2026-03-27T14:05:29.4269591Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AIModule.cpp +2026-03-27T14:05:29.4274374Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AndroidJNIModule_CodeGen.c +2026-03-27T14:05:29.4278941Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AndroidJNIModule.cpp +2026-03-27T14:05:29.4283625Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AnimationModule_CodeGen.c +2026-03-27T14:05:29.4288795Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AnimationModule.cpp +2026-03-27T14:05:29.4294357Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AssetBundleModule_CodeGen.c +2026-03-27T14:05:29.4298291Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AssetBundleModule.cpp +2026-03-27T14:05:29.4303338Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AudioModule_CodeGen.c +2026-03-27T14:05:29.4308400Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AudioModule.cpp +2026-03-27T14:05:29.4313156Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule__1.cpp +2026-03-27T14:05:29.4318056Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule__2.cpp +2026-03-27T14:05:29.4323228Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule__3.cpp +2026-03-27T14:05:29.4328136Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule_CodeGen.c +2026-03-27T14:05:29.4333101Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule.cpp +2026-03-27T14:05:29.4337561Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.cpp +2026-03-27T14:05:29.4342687Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.DirectorModule_CodeGen.c +2026-03-27T14:05:29.4347272Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.DirectorModule.cpp +2026-03-27T14:05:29.4351777Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.GameCoreModule_CodeGen.c +2026-03-27T14:05:29.4356425Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.GameCoreModule.cpp +2026-03-27T14:05:29.4361096Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.GridModule_CodeGen.c +2026-03-27T14:05:29.4366517Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.GridModule.cpp +2026-03-27T14:05:29.4370566Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.HierarchyCoreModule_CodeGen.c +2026-03-27T14:05:29.4376035Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.HierarchyCoreModule.cpp +2026-03-27T14:05:29.4381905Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ImageConversionModule_CodeGen.c +2026-03-27T14:05:29.4387947Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ImageConversionModule.cpp +2026-03-27T14:05:29.4393223Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.IMGUIModule__1.cpp +2026-03-27T14:05:29.4399273Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.IMGUIModule_CodeGen.c +2026-03-27T14:05:29.4402824Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.IMGUIModule.cpp +2026-03-27T14:05:29.4407820Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputForUIModule_CodeGen.c +2026-03-27T14:05:29.4412586Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputForUIModule.cpp +2026-03-27T14:05:29.4417490Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputLegacyModule_CodeGen.c +2026-03-27T14:05:29.4422213Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputLegacyModule.cpp +2026-03-27T14:05:29.4427271Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputModule_CodeGen.c +2026-03-27T14:05:29.4432213Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputModule.cpp +2026-03-27T14:05:29.4436875Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.MultiplayerModule_CodeGen.c +2026-03-27T14:05:29.4441889Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.MultiplayerModule.cpp +2026-03-27T14:05:29.4447315Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ParticleSystemModule_CodeGen.c +2026-03-27T14:05:29.4452779Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ParticleSystemModule.cpp +2026-03-27T14:05:29.4457350Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.Physics2DModule_CodeGen.c +2026-03-27T14:05:29.4461676Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.Physics2DModule.cpp +2026-03-27T14:05:29.4466339Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.PhysicsModule_CodeGen.c +2026-03-27T14:05:29.4471035Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.PhysicsModule.cpp +2026-03-27T14:05:29.4475759Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.PropertiesModule_CodeGen.c +2026-03-27T14:05:29.4480539Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.PropertiesModule.cpp +2026-03-27T14:05:29.4485297Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ScreenCaptureModule_CodeGen.c +2026-03-27T14:05:29.4490239Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ScreenCaptureModule.cpp +2026-03-27T14:05:29.4494997Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SharedInternalsModule_CodeGen.c +2026-03-27T14:05:29.4500449Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SharedInternalsModule.cpp +2026-03-27T14:05:29.4504403Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SpriteShapeModule_CodeGen.c +2026-03-27T14:05:29.4509090Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SpriteShapeModule.cpp +2026-03-27T14:05:29.4513796Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SubsystemsModule_CodeGen.c +2026-03-27T14:05:29.4518620Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SubsystemsModule.cpp +2026-03-27T14:05:29.4523288Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TerrainModule_CodeGen.c +2026-03-27T14:05:29.4528127Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TerrainModule.cpp +2026-03-27T14:05:29.4532762Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreFontEngineModule_CodeGen.c +2026-03-27T14:05:29.4539130Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreFontEngineModule.cpp +2026-03-27T14:05:29.4543812Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule__1.cpp +2026-03-27T14:05:29.4548513Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule__2.cpp +2026-03-27T14:05:29.4553389Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule__3.cpp +2026-03-27T14:05:29.4558112Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule_CodeGen.c +2026-03-27T14:05:29.4562743Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule.cpp +2026-03-27T14:05:29.4567694Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextRenderingModule_CodeGen.c +2026-03-27T14:05:29.4572298Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextRenderingModule.cpp +2026-03-27T14:05:29.4576849Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TilemapModule_CodeGen.c +2026-03-27T14:05:29.4581484Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TilemapModule.cpp +2026-03-27T14:05:29.4586359Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI__1.cpp +2026-03-27T14:05:29.4591747Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI__2.cpp +2026-03-27T14:05:29.4596959Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI__3.cpp +2026-03-27T14:05:29.4600909Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI_CodeGen.c +2026-03-27T14:05:29.4605728Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI.cpp +2026-03-27T14:05:29.4612611Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__1.cpp +2026-03-27T14:05:29.4617379Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__10.cpp +2026-03-27T14:05:29.4622190Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__11.cpp +2026-03-27T14:05:29.4626820Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__12.cpp +2026-03-27T14:05:29.4631485Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__13.cpp +2026-03-27T14:05:29.4636465Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__14.cpp +2026-03-27T14:05:29.4640789Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__15.cpp +2026-03-27T14:05:29.4645200Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__16.cpp +2026-03-27T14:05:29.4650498Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__17.cpp +2026-03-27T14:05:29.4655110Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__18.cpp +2026-03-27T14:05:29.4659575Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__19.cpp +2026-03-27T14:05:29.4663962Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__2.cpp +2026-03-27T14:05:29.4668438Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__20.cpp +2026-03-27T14:05:29.4672909Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__21.cpp +2026-03-27T14:05:29.4677601Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__22.cpp +2026-03-27T14:05:29.4682073Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__3.cpp +2026-03-27T14:05:29.4687545Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__4.cpp +2026-03-27T14:05:29.4692865Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__5.cpp +2026-03-27T14:05:29.4700435Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__6.cpp +2026-03-27T14:05:29.4703187Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__7.cpp +2026-03-27T14:05:29.4708201Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__8.cpp +2026-03-27T14:05:29.4713120Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__9.cpp +2026-03-27T14:05:29.4718184Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule_CodeGen.c +2026-03-27T14:05:29.4722724Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule.cpp +2026-03-27T14:05:29.4728172Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIModule_CodeGen.c +2026-03-27T14:05:29.4733051Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIModule.cpp +2026-03-27T14:05:29.4738009Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityAnalyticsCommonModule_CodeGen.c +2026-03-27T14:05:29.4742254Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityAnalyticsCommonModule.cpp +2026-03-27T14:05:29.4747195Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityConsentModule_CodeGen.c +2026-03-27T14:05:29.4751329Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityConsentModule.cpp +2026-03-27T14:05:29.4756741Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityWebRequestModule_CodeGen.c +2026-03-27T14:05:29.4762069Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityWebRequestModule.cpp +2026-03-27T14:05:29.4767207Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.VFXModule_CodeGen.c +2026-03-27T14:05:29.4773654Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.VFXModule.cpp +2026-03-27T14:05:29.4779244Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.VideoModule_CodeGen.c +2026-03-27T14:05:29.4785505Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.VideoModule.cpp +2026-03-27T14:05:29.4790552Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.WindowsGamesModule_CodeGen.c +2026-03-27T14:05:29.4795877Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.WindowsGamesModule.cpp +2026-03-27T14:05:29.4803062Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.XRModule_CodeGen.c +2026-03-27T14:05:29.4808824Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.XRModule.cpp +2026-03-27T14:05:29.4819112Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\Data +2026-03-27T14:05:29.4827575Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\baselib.dll +2026-03-27T14:05:29.4832501Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\concrt140.dll +2026-03-27T14:05:29.4838210Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\GameChat2.dll +2026-03-27T14:05:29.4843664Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\GameOS.Xvd +2026-03-27T14:05:29.4849682Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\IntegrationTest6000.3.8f1.exe +2026-03-27T14:05:29.4857072Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\libHttpClient.GDK.dll +2026-03-27T14:05:29.4870567Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\Logo.png +2026-03-27T14:05:29.4880831Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\MicrosoftGame.Config +2026-03-27T14:05:29.4887531Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140_1.dll +2026-03-27T14:05:29.4894278Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140_2.dll +2026-03-27T14:05:29.4899825Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140_atomic_wait.dll +2026-03-27T14:05:29.4904210Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140_codecvt_ids.dll +2026-03-27T14:05:29.4910089Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140.dll +2026-03-27T14:05:29.4916141Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\SmallLogo.png +2026-03-27T14:05:29.4920954Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\SplashScreen.png +2026-03-27T14:05:29.4926687Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\StoreLogo.png +2026-03-27T14:05:29.4932771Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\vccorlib140.dll +2026-03-27T14:05:29.4938434Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\vcruntime140_1.dll +2026-03-27T14:05:29.4942976Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\vcruntime140_threads.dll +2026-03-27T14:05:29.4948183Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\vcruntime140.dll +2026-03-27T14:05:29.4953738Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\XCurl.dll +2026-03-27T14:05:29.4964570Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\Data +2026-03-27T14:05:29.4973269Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\baselib_GameCoreScarlett_master.pdb +2026-03-27T14:05:29.4978461Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\GameChat2.pdb +2026-03-27T14:05:29.4983821Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\GameCoreScarlettPlayerNoDevelopment_Master.pdb +2026-03-27T14:05:29.4989129Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\libHttpClient.GDK.pdb +2026-03-27T14:05:29.4994464Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\XCurl.pdb +2026-03-27T14:05:29.5168094Z +2026-03-27T14:05:29.5168452Z Unity-generated MicrosoftGame.config: +2026-03-27T14:05:29.5220869Z +2026-03-27T14:05:29.5222312Z +2026-03-27T14:05:29.5223478Z +2026-03-27T14:05:29.5225598Z +2026-03-27T14:05:29.5227093Z +2026-03-27T14:05:29.5227948Z +2026-03-27T14:05:29.5228696Z +2026-03-27T14:05:29.5229693Z +2026-03-27T14:05:29.5231303Z +2026-03-27T14:05:29.8714405Z ##[group]Run $buildDir = "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build" +2026-03-27T14:05:29.8715605Z $buildDir = "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build" +2026-03-27T14:05:29.8716455Z $exe = Get-ChildItem -Path $buildDir -Filter "*.exe" -Recurse | Select-Object -First 1 +2026-03-27T14:05:29.8716916Z if (-not $exe) { +2026-03-27T14:05:29.8717170Z  throw "No .exe found in build output" +2026-03-27T14:05:29.8717449Z } +2026-03-27T14:05:29.8717694Z Write-Host "Packaging executable: $($exe.FullName)" +2026-03-27T14:05:29.8718332Z & "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-xbox/test/packaging/build-package.ps1" ` +2026-03-27T14:05:29.8718924Z  -ExecutablePath $exe.FullName ` +2026-03-27T14:05:29.8719508Z  -PackageDirectory "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/unity-xbox-package" ` +2026-03-27T14:05:29.8720319Z  -ConfigDirectory "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-xbox/unity/packaging" +2026-03-27T14:05:29.8813561Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" +2026-03-27T14:05:29.8813883Z env: +2026-03-27T14:05:29.8814224Z GH_TOKEN: *** +2026-03-27T14:05:29.8814395Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T14:05:29.8814668Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T14:05:29.8814962Z GDK_VERSION: 250400 +2026-03-27T14:05:29.8815365Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T14:05:29.8816028Z SENTRY_AUTH_TOKEN: *** +2026-03-27T14:05:29.8816218Z ##[endgroup] +2026-03-27T14:05:30.4184701Z Packaging executable: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\IntegrationTest6000.3.8f1.exe +2026-03-27T14:05:30.4647086Z Building Xbox package... +2026-03-27T14:05:30.4695403Z Executable: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\IntegrationTest6000.3.8f1.exe +2026-03-27T14:05:30.4705911Z Source: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose +2026-03-27T14:05:30.4708096Z Output: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/unity-xbox-package +2026-03-27T14:05:30.4758829Z Using executable: IntegrationTest6000.3.8f1.exe +2026-03-27T14:05:30.4792581Z Keeping existing MicrosoftGame.config from build output +2026-03-27T14:05:30.4971232Z Copied layout.xml to source directory +2026-03-27T14:05:30.4978833Z Keeping existing StoreLogo.png from build output +2026-03-27T14:05:30.4985071Z Keeping existing Logo.png from build output +2026-03-27T14:05:30.4991486Z Keeping existing SmallLogo.png from build output +2026-03-27T14:05:30.4997855Z Keeping existing SplashScreen.png from build output +2026-03-27T14:05:30.5020411Z Running MakePkg... +2026-03-27T14:05:30.6071971Z Making package from 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\layout.xml' +2026-03-27T14:05:30.6075072Z [2026-03-27_14:05:30:593] PACKAGING START +2026-03-27T14:05:30.6284315Z No GameOS file specified with /gameos switch. Defaulting to C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\gameos.xvd +2026-03-27T14:05:30.6686808Z Warning: Skipping file '.\GameOS.Xvd' in chunk '1000' because it matches the Game OS for this title and should not be located in a chunk. +2026-03-27T14:05:30.6749380Z [2026-03-27_14:05:30:673] FILE LAYOUT GENERATION START +2026-03-27T14:05:30.6783867Z Marking '1000' as launch chunk +2026-03-27T14:05:30.6855827Z [2026-03-27_14:05:30:684] FILE LAYOUT GENERATION END : 00:00:00:016 +2026-03-27T14:05:30.6858304Z [2026-03-27_14:05:30:684] FILE COPY START +2026-03-27T14:05:30.6858624Z Generating container... +2026-03-27T14:05:35.0627417Z Preparing Container... +2026-03-27T14:05:35.0629781Z Copied 0 % +2026-03-27T14:05:35.0634483Z Copied 5 % +2026-03-27T14:05:35.0648952Z Copied 6 % +2026-03-27T14:05:35.0661220Z Copied 7 % +2026-03-27T14:05:35.0840820Z Copied 11 % +2026-03-27T14:05:35.0854473Z Copied 92 % +2026-03-27T14:05:35.0863554Z Copied 95 % +2026-03-27T14:05:35.0875296Z Copied 96 % +2026-03-27T14:05:35.0896083Z Copied 97 % +2026-03-27T14:05:35.0901686Z Copied 98 % +2026-03-27T14:05:35.2418660Z Copied 99 % +2026-03-27T14:05:35.2418972Z [2026-03-27_14:05:35:239] FILE COPY END : 00:00:04:547 +2026-03-27T14:05:35.3050613Z [2026-03-27_14:05:35:304] XVC ENCRYPTION START +2026-03-27T14:05:35.3056351Z Encrypting package 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\clear.IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xvc' +2026-03-27T14:05:36.6467578Z Encrypted 0 % +2026-03-27T14:05:36.6540377Z Encrypted 3 % +2026-03-27T14:05:36.6595765Z Encrypted 4 % +2026-03-27T14:05:36.6599435Z Encrypted 8 % +2026-03-27T14:05:36.6609302Z Encrypted 11 % +2026-03-27T14:05:36.6609959Z Encrypted 13 % +2026-03-27T14:05:36.6610160Z Encrypted 16 % +2026-03-27T14:05:36.6869213Z Encrypted 17 % +2026-03-27T14:05:36.6885238Z Encrypted 21 % +2026-03-27T14:05:36.6885840Z Encrypted 24 % +2026-03-27T14:05:36.6893612Z Encrypted 28 % +2026-03-27T14:05:36.7039632Z Encrypted 31 % +2026-03-27T14:05:36.7126944Z Encrypted 35 % +2026-03-27T14:05:36.7184991Z Encrypted 38 % +2026-03-27T14:05:36.7252444Z Encrypted 42 % +2026-03-27T14:05:36.7308332Z Encrypted 45 % +2026-03-27T14:05:36.7375617Z Encrypted 49 % +2026-03-27T14:05:36.7441687Z Encrypted 53 % +2026-03-27T14:05:36.7499894Z Encrypted 56 % +2026-03-27T14:05:36.8070166Z Encrypted 60 % +2026-03-27T14:05:36.8127197Z Encrypted 63 % +2026-03-27T14:05:36.8839914Z Encrypted 67 % +2026-03-27T14:05:36.8894506Z Encrypted 70 % +2026-03-27T14:05:36.8964228Z Encrypted 74 % +2026-03-27T14:05:36.9129427Z Encrypted 78 % +2026-03-27T14:05:36.9192813Z Encrypted 81 % +2026-03-27T14:05:36.9264759Z Encrypted 85 % +2026-03-27T14:05:36.9318804Z Encrypted 88 % +2026-03-27T14:05:36.9348178Z Encrypted 92 % +2026-03-27T14:05:36.9403874Z Encrypted 93 % +2026-03-27T14:05:36.9450728Z Encrypted 95 % +2026-03-27T14:05:36.9464983Z Encrypted 96 % +2026-03-27T14:05:36.9504342Z Encrypted 97 % +2026-03-27T14:05:36.9521674Z Encrypted 98 % +2026-03-27T14:05:36.9543161Z Encrypted 99 % +2026-03-27T14:05:37.1078637Z Encrypted 100 % +2026-03-27T14:05:37.1650107Z [2026-03-27_14:05:37:162] XVC ENCRYPTION END : 00:00:01:859 +2026-03-27T14:05:37.1654340Z [2026-03-27_14:05:37:163] TOC GENERATION START +2026-03-27T14:05:37.1758750Z [2026-03-27_14:05:37:174] TOC GENERATION END : 00:00:00:000 +2026-03-27T14:05:37.1772296Z Skipping packaging validation step. +2026-03-27T14:05:37.1773078Z Successfully created package 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xvc' +2026-03-27T14:05:37.1773857Z ContentId is '{734DD866-00FC-A8D8-6E42-A845B3306A25}' +2026-03-27T14:05:37.1774176Z ProductId is '{00000000-0000-0000-0000-000000000000}' +2026-03-27T14:05:37.1782972Z Total size of all 'launch set' chunks = 36360192 bytes +2026-03-27T14:05:37.1789227Z See the Submission Validator log file at 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\Validator_IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xml' for details about per device minimum and maximum sizes for the launch set. +2026-03-27T14:05:37.1790505Z [2026-03-27_14:05:37:177] PACKAGING END: 00:00:06:578 +2026-03-27T14:05:37.1926773Z ✅ Package built successfully! +2026-03-27T14:05:37.1939871Z Package: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xvc +2026-03-27T14:05:37.2025008Z Size: 367.51 MB +2026-03-27T14:05:37.2037755Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xvc +2026-03-27T14:05:37.5878129Z ##[group]Run "XBCONNECT_TARGET=$($env:DEVKIT_Scarlett_IP)" | Out-File -FilePath $env:GITHUB_ENV -Append +2026-03-27T14:05:37.5879002Z "XBCONNECT_TARGET=$($env:DEVKIT_Scarlett_IP)" | Out-File -FilePath $env:GITHUB_ENV -Append +2026-03-27T14:05:37.5979619Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" +2026-03-27T14:05:37.5979968Z env: +2026-03-27T14:05:37.5980302Z GH_TOKEN: *** +2026-03-27T14:05:37.5980478Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T14:05:37.5980783Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T14:05:37.5981111Z GDK_VERSION: 250400 +2026-03-27T14:05:37.5981547Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T14:05:37.5982314Z SENTRY_AUTH_TOKEN: *** +2026-03-27T14:05:37.5982521Z ##[endgroup] +2026-03-27T14:05:38.3928159Z ##[group]Run $result = Invoke-Pester -Path test/IntegrationTest/Integration.Tests.ps1 -PassThru +2026-03-27T14:05:38.3928957Z $result = Invoke-Pester -Path test/IntegrationTest/Integration.Tests.ps1 -PassThru +2026-03-27T14:05:38.3929435Z $result.TotalCount | Should -BeGreaterThan 0 +2026-03-27T14:05:38.3929765Z $result.FailedCount | Should -Be 0 +2026-03-27T14:05:38.4024106Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" +2026-03-27T14:05:38.4024529Z env: +2026-03-27T14:05:38.4024858Z GH_TOKEN: *** +2026-03-27T14:05:38.4025030Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T14:05:38.4025297Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T14:05:38.4025595Z GDK_VERSION: 250400 +2026-03-27T14:05:38.4026059Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T14:05:38.4026714Z SENTRY_AUTH_TOKEN: *** +2026-03-27T14:05:38.4026938Z XBCONNECT_TARGET: 10.2.1.54 +2026-03-27T14:05:38.4027153Z SENTRY_TEST_PLATFORM: Xbox +2026-03-27T14:05:38.4027621Z SENTRY_TEST_APP: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/unity-xbox-package +2026-03-27T14:05:38.4028046Z ##[endgroup] +2026-03-27T14:05:40.1679568Z  +2026-03-27T14:05:40.1679857Z Starting discovery in 1 files. +2026-03-27T14:05:41.6618090Z Discovery found 57 tests in 1.48s. +2026-03-27T14:05:41.6912805Z Running tests. +2026-03-27T14:06:41.9848900Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (60s elapsed, ~59 minute(s) remaining)... +2026-03-27T14:07:41.9955800Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (120s elapsed, ~58 minute(s) remaining)... +2026-03-27T14:08:42.0051757Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (180s elapsed, ~57 minute(s) remaining)... +2026-03-27T14:09:42.0190098Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (240s elapsed, ~56 minute(s) remaining)... +2026-03-27T14:10:42.0279058Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (300s elapsed, ~55 minute(s) remaining)... +2026-03-27T14:11:42.0413063Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (360s elapsed, ~54 minute(s) remaining)... +2026-03-27T14:12:42.0485191Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (420s elapsed, ~53 minute(s) remaining)... +2026-03-27T14:13:42.0635156Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (480s elapsed, ~52 minute(s) remaining)... +2026-03-27T14:14:42.0692364Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (540s elapsed, ~51 minute(s) remaining)... +2026-03-27T14:15:42.0827974Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (600s elapsed, ~50 minute(s) remaining)... +2026-03-27T14:16:42.0897745Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (660s elapsed, ~49 minute(s) remaining)... +2026-03-27T14:17:42.1039732Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (720s elapsed, ~48 minute(s) remaining)... +2026-03-27T14:18:38.1649480Z Uninstalling existing package: IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe +2026-03-27T14:18:40.0892807Z Installing package to Xbox... +2026-03-27T14:18:52.9918511Z Verifying package installation... +2026-03-27T14:18:54.0741318Z Package verified to be installed on device: IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe +2026-03-27T14:18:54.1359973Z Using AUMID: IntegrationTest6000.3.8f1_8wekyb3d8bbwe!Game +2026-03-27T14:18:54.1712922Z Running message-capture... +2026-03-27T14:18:54.8875330Z ##[group]Run log +2026-03-27T14:19:00.7587881Z ##[endgroup] +2026-03-27T14:19:00.7651269Z WARNING: Xbox app exited with code 1 — the log file may not have been created. +2026-03-27T14:19:31.8785546Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState +2026-03-27T14:19:33.8025298Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:19:33.8027631Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:33.8028068Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:33.8028448Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:33.8028938Z Started : Fri, Mar 27, 2026 15:19:33 +2026-03-27T14:19:33.8029317Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState +2026-03-27T14:19:33.8030329Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState +2026-03-27T14:19:33.8031159Z Files : * +2026-03-27T14:19:33.8031323Z Exc dirs : +2026-03-27T14:19:33.8031476Z Exc files : +2026-03-27T14:19:33.8040567Z Options : /mirror +2026-03-27T14:19:33.8040908Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:33.8041326Z Status % Done Size U Path +2026-03-27T14:19:33.8041708Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:33.8042223Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:33.8042665Z Total Copied Skipped Failed +2026-03-27T14:19:33.8043030Z Files : 0 0 0 0 +2026-03-27T14:19:33.8043380Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:33.8043703Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:33.8043982Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:33.8044265Z Ended : Fri, Mar 27, 2026 15:19:33 +2026-03-27T14:19:33.8045038Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:33.8045840Z WARNING: === End of original output. === +2026-03-27T14:19:33.8245398Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:19:33.8253277Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState +2026-03-27T14:19:35.7397907Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:19:35.7400785Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:35.7401361Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:35.7401749Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:35.7402132Z Started : Fri, Mar 27, 2026 15:19:35 +2026-03-27T14:19:35.7402535Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState +2026-03-27T14:19:35.7405304Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState +2026-03-27T14:19:35.7406428Z Files : * +2026-03-27T14:19:35.7406611Z Exc dirs : +2026-03-27T14:19:35.7407176Z Exc files : +2026-03-27T14:19:35.7407461Z Options : /mirror +2026-03-27T14:19:35.7407799Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:35.7408218Z Status % Done Size U Path +2026-03-27T14:19:35.7408599Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:35.7409163Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:35.7409599Z Total Copied Skipped Failed +2026-03-27T14:19:35.7409935Z Files : 0 0 0 0 +2026-03-27T14:19:35.7410271Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:35.7410588Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:35.7410855Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:35.7411155Z Ended : Fri, Mar 27, 2026 15:19:35 +2026-03-27T14:19:35.7411639Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:35.7413025Z WARNING: === End of original output. === +2026-03-27T14:19:35.7418371Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:19:35.7423957Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState +2026-03-27T14:19:37.8424144Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:19:37.8426139Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:37.8426638Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:37.8427095Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:37.8427545Z Started : Fri, Mar 27, 2026 15:19:37 +2026-03-27T14:19:37.8427959Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState +2026-03-27T14:19:37.8429082Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState +2026-03-27T14:19:37.8430086Z Files : * +2026-03-27T14:19:37.8430255Z Exc dirs : +2026-03-27T14:19:37.8430416Z Exc files : +2026-03-27T14:19:37.8430589Z Options : /mirror +2026-03-27T14:19:37.8430950Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:37.8431382Z Status % Done Size U Path +2026-03-27T14:19:37.8431769Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:37.8432342Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:37.8432790Z Total Copied Skipped Failed +2026-03-27T14:19:37.8433120Z Files : 0 0 0 0 +2026-03-27T14:19:37.8433547Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:37.8433844Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:37.8434115Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:37.8435174Z Ended : Fri, Mar 27, 2026 15:19:37 +2026-03-27T14:19:37.8435719Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:37.8436371Z WARNING: === End of original output. === +2026-03-27T14:19:37.8442275Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:19:37.8451877Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState +2026-03-27T14:19:39.1618472Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:19:39.1620337Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:39.1620791Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:39.1621167Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:39.1622459Z Started : Fri, Mar 27, 2026 15:19:39 +2026-03-27T14:19:39.1622904Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState +2026-03-27T14:19:39.1623925Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState +2026-03-27T14:19:39.1624777Z Files : * +2026-03-27T14:19:39.1624955Z Exc dirs : +2026-03-27T14:19:39.1625105Z Exc files : +2026-03-27T14:19:39.1625274Z Options : /mirror +2026-03-27T14:19:39.1625610Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:39.1626030Z Status % Done Size U Path +2026-03-27T14:19:39.1626413Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:39.1626947Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:39.1627396Z Total Copied Skipped Failed +2026-03-27T14:19:39.1627746Z Files : 0 0 0 0 +2026-03-27T14:19:39.1628105Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:39.1628426Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:39.1628722Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:39.1628995Z Ended : Fri, Mar 27, 2026 15:19:39 +2026-03-27T14:19:39.1629500Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:39.1630193Z WARNING: === End of original output. === +2026-03-27T14:19:39.1636198Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:19:39.1641391Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp +2026-03-27T14:19:40.4674654Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:19:40.4676622Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:40.4677933Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:40.4678414Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:40.4678897Z Started : Fri, Mar 27, 2026 15:19:40 +2026-03-27T14:19:40.4679304Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp +2026-03-27T14:19:40.4680287Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp +2026-03-27T14:19:40.4681097Z Files : * +2026-03-27T14:19:40.4681255Z Exc dirs : +2026-03-27T14:19:40.4681405Z Exc files : +2026-03-27T14:19:40.4681562Z Options : /mirror +2026-03-27T14:19:40.4681879Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:40.4682280Z Status % Done Size U Path +2026-03-27T14:19:40.4682655Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:40.4683249Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:40.4683667Z Total Copied Skipped Failed +2026-03-27T14:19:40.4684882Z Files : 0 0 0 0 +2026-03-27T14:19:40.4685247Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:40.4685580Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:40.4685944Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:40.4686205Z Ended : Fri, Mar 27, 2026 15:19:40 +2026-03-27T14:19:40.4686684Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:40.4687381Z WARNING: === End of original output. === +2026-03-27T14:19:40.4693042Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp (Command (xbcopy) failed with exit code 2) +2026-03-27T14:19:40.4700435Z Trying to retrieve log from: D:\Logs +2026-03-27T14:19:41.8029101Z Copied files: SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) SentryPlayground.log (79366 bytes) SentryTower.log (96101 bytes) +2026-03-27T14:19:41.8037117Z Trying to retrieve log from: T: +2026-03-27T14:19:43.6266488Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xT:\" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/T_" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:19:43.6267735Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.6268178Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:43.6268547Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.6268929Z Started : Fri, Mar 27, 2026 15:19:43 +2026-03-27T14:19:43.6269148Z Source : xT:\ +2026-03-27T14:19:43.6269672Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/T_ +2026-03-27T14:19:43.6270249Z Files : * +2026-03-27T14:19:43.6270402Z Exc dirs : +2026-03-27T14:19:43.6270543Z Exc files : +2026-03-27T14:19:43.6272317Z Options : /mirror +2026-03-27T14:19:43.6272703Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.6273087Z Status % Done Size U Path +2026-03-27T14:19:43.6273452Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.6273950Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.6274368Z Total Copied Skipped Failed +2026-03-27T14:19:43.6274698Z Files : 1 0 1 0 +2026-03-27T14:19:43.6275028Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B +2026-03-27T14:19:43.6275335Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:43.6275613Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:43.6275880Z Ended : Fri, Mar 27, 2026 15:19:43 +2026-03-27T14:19:43.6276529Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. +2026-03-27T14:19:43.6277341Z WARNING: === End of original output. === +2026-03-27T14:19:43.6279096Z Not found at T: (Command (xbcopy) failed with exit code 2) +2026-03-27T14:19:43.6280923Z WARNING: Log file not found at any candidate path. Listing directories for diagnostics: +2026-03-27T14:19:43.6287888Z ##[group]Xbox directory diagnostics +2026-03-27T14:19:43.6294677Z +2026-03-27T14:19:43.6294916Z --- D:\ root --- +2026-03-27T14:19:43.6308800Z Listing xD:\ +2026-03-27T14:19:43.7327865Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.7332681Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:43.7338294Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.7342678Z +2026-03-27T14:19:43.7346809Z Started : Fri, Mar 27, 2026 15:19:43 +2026-03-27T14:19:43.7351299Z Source : xD:\ +2026-03-27T14:19:43.7355420Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005 +2026-03-27T14:19:43.7359757Z +2026-03-27T14:19:43.7363852Z Files : * +2026-03-27T14:19:43.7368060Z +2026-03-27T14:19:43.7372157Z Exc dirs : +2026-03-27T14:19:43.7376069Z +2026-03-27T14:19:43.7380103Z Exc files : +2026-03-27T14:19:43.7384098Z +2026-03-27T14:19:43.7388106Z Options : /mirror +2026-03-27T14:19:43.7392030Z +2026-03-27T14:19:43.7396276Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.7400630Z Status % Done Size U Path +2026-03-27T14:19:43.7407107Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.7410600Z +2026-03-27T14:19:43.7415470Z [BEGIN] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullException.dmp +2026-03-27T14:19:43.7420056Z [COPYING] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullException.dmp +2026-03-27T14:19:43.7424624Z [COPYING] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullException.dmp +2026-03-27T14:19:43.7429192Z [DONE] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullException.dmp +2026-03-27T14:19:43.7433779Z [BEGIN] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullExceptionLogFile.txt +2026-03-27T14:19:43.7438319Z [COPYING] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullExceptionLogFile.txt +2026-03-27T14:19:43.7443642Z [COPYING] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullExceptionLogFile.txt +2026-03-27T14:19:43.7447665Z [DONE] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullExceptionLogFile.txt +2026-03-27T14:19:43.7451340Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stderr.txt +2026-03-27T14:19:43.7455838Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stderr.txt +2026-03-27T14:19:43.7460367Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stderr.txt +2026-03-27T14:19:43.7464904Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stderr.txt +2026-03-27T14:19:43.7469471Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stdout.txt +2026-03-27T14:19:43.7474085Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stdout.txt +2026-03-27T14:19:43.7478553Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stdout.txt +2026-03-27T14:19:43.7483193Z [BEGIN] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:19:43.7488049Z [COPYING] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:19:43.7492605Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stdout.txt +2026-03-27T14:19:43.7497192Z [COPYING] 67.43 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:19:43.7501477Z [COPYING] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:19:43.7505970Z [DONE] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:19:43.7510353Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.7514655Z +2026-03-27T14:19:43.7518890Z Total Copied Skipped Failed +2026-03-27T14:19:43.7523159Z Files : 5 5 0 0 +2026-03-27T14:19:43.7527540Z Size : 854.24 KB 854.24 KB 0.00 B 0.00 B +2026-03-27T14:19:43.7531478Z +2026-03-27T14:19:43.7535686Z Speed : 28217612.90 Bytes/sec. +2026-03-27T14:19:43.7539847Z Speed : 26.91 MegaBytes/sec. +2026-03-27T14:19:43.7544016Z Ended : Fri, Mar 27, 2026 15:19:43 +2026-03-27T14:19:43.7548191Z +2026-03-27T14:19:43.7552567Z Result : Operation completed successfully +2026-03-27T14:19:43.7678028Z Contents: +2026-03-27T14:19:43.7698470Z \FullException.dmp (97125 bytes) +2026-03-27T14:19:43.7705691Z \FullExceptionLogFile.txt (44 bytes) +2026-03-27T14:19:43.7711828Z \latest_stderr.txt (0 bytes) +2026-03-27T14:19:43.7716423Z \latest_stdout.txt (0 bytes) +2026-03-27T14:19:43.7721040Z \unreal-v0-2025.10.10-01.48.52.dmp (777577 bytes) +2026-03-27T14:19:43.7919515Z +2026-03-27T14:19:43.7919768Z --- D:\DevelopmentFiles\ --- +2026-03-27T14:19:43.7926085Z Listing xD:\DevelopmentFiles\ +2026-03-27T14:19:43.8769787Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.8773974Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:43.8778105Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.8782667Z +2026-03-27T14:19:43.8786009Z Started : Fri, Mar 27, 2026 15:19:43 +2026-03-27T14:19:43.8789934Z Source : xD:\DevelopmentFiles\ +2026-03-27T14:19:43.8797125Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-e0lu3ujt.icb +2026-03-27T14:19:43.8800817Z +2026-03-27T14:19:43.8805261Z Files : * +2026-03-27T14:19:43.8809537Z +2026-03-27T14:19:43.8813645Z Exc dirs : +2026-03-27T14:19:43.8817715Z +2026-03-27T14:19:43.8821993Z Exc files : +2026-03-27T14:19:43.8827301Z +2026-03-27T14:19:43.8831573Z Options : /mirror +2026-03-27T14:19:43.8835760Z +2026-03-27T14:19:43.8840216Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.8844259Z Status % Done Size U Path +2026-03-27T14:19:43.8848698Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.8852736Z +2026-03-27T14:19:43.8856930Z +2026-03-27T14:19:43.8861444Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:43.8865656Z +2026-03-27T14:19:43.8870119Z Total Copied Skipped Failed +2026-03-27T14:19:43.8874249Z Files : 0 0 0 0 +2026-03-27T14:19:43.8877895Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:43.8881404Z +2026-03-27T14:19:43.8885011Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:43.8889113Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:43.8892718Z Ended : Fri, Mar 27, 2026 15:19:43 +2026-03-27T14:19:43.8896259Z +2026-03-27T14:19:43.8899933Z Result : No files were found +2026-03-27T14:19:43.9148995Z +2026-03-27T14:19:43.9149387Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ --- +2026-03-27T14:19:43.9155873Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ +2026-03-27T14:19:44.0047455Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.0053958Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:44.0060522Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.0064660Z +2026-03-27T14:19:44.0068914Z Started : Fri, Mar 27, 2026 15:19:43 +2026-03-27T14:19:44.0073266Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ +2026-03-27T14:19:44.0077369Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qqsizpmt.utq +2026-03-27T14:19:44.0081543Z +2026-03-27T14:19:44.0085559Z Files : * +2026-03-27T14:19:44.0089499Z +2026-03-27T14:19:44.0093421Z Exc dirs : +2026-03-27T14:19:44.0097692Z +2026-03-27T14:19:44.0102089Z Exc files : +2026-03-27T14:19:44.0105971Z +2026-03-27T14:19:44.0110227Z Options : /mirror +2026-03-27T14:19:44.0114356Z +2026-03-27T14:19:44.0118136Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.0121607Z Status % Done Size U Path +2026-03-27T14:19:44.0125383Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.0128841Z +2026-03-27T14:19:44.0133859Z +2026-03-27T14:19:44.0137207Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.0140620Z +2026-03-27T14:19:44.0144547Z Total Copied Skipped Failed +2026-03-27T14:19:44.0148427Z Files : 0 0 0 0 +2026-03-27T14:19:44.0171207Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:44.0174305Z +2026-03-27T14:19:44.0178078Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:44.0182394Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:44.0186830Z Ended : Fri, Mar 27, 2026 15:19:43 +2026-03-27T14:19:44.0191068Z +2026-03-27T14:19:44.0195803Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:44.0201200Z +2026-03-27T14:19:44.0436448Z +2026-03-27T14:19:44.0436907Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ --- +2026-03-27T14:19:44.0443878Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ +2026-03-27T14:19:44.1320967Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.1328510Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:44.1333798Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.1338220Z +2026-03-27T14:19:44.1345431Z Started : Fri, Mar 27, 2026 15:19:44 +2026-03-27T14:19:44.1350098Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ +2026-03-27T14:19:44.1353706Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-z4jtdt3n.aec +2026-03-27T14:19:44.1357180Z +2026-03-27T14:19:44.1361144Z Files : * +2026-03-27T14:19:44.1364962Z +2026-03-27T14:19:44.1368611Z Exc dirs : +2026-03-27T14:19:44.1372857Z +2026-03-27T14:19:44.1377439Z Exc files : +2026-03-27T14:19:44.1380974Z +2026-03-27T14:19:44.1384619Z Options : /mirror +2026-03-27T14:19:44.1388123Z +2026-03-27T14:19:44.1391849Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.1395278Z Status % Done Size U Path +2026-03-27T14:19:44.1398947Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.1402593Z +2026-03-27T14:19:44.1406175Z +2026-03-27T14:19:44.1411985Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.1418184Z +2026-03-27T14:19:44.1422137Z Total Copied Skipped Failed +2026-03-27T14:19:44.1426181Z Files : 0 0 0 0 +2026-03-27T14:19:44.1429832Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:44.1433326Z +2026-03-27T14:19:44.1436972Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:44.1440562Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:44.1445483Z Ended : Fri, Mar 27, 2026 15:19:44 +2026-03-27T14:19:44.1449784Z +2026-03-27T14:19:44.1454084Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:44.1459165Z +2026-03-27T14:19:44.1699803Z +2026-03-27T14:19:44.1700125Z --- D:\Logs\ --- +2026-03-27T14:19:44.1708515Z Listing xD:\Logs\ +2026-03-27T14:19:44.3085091Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.3090651Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:44.3094779Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.3098627Z +2026-03-27T14:19:44.3102547Z Started : Fri, Mar 27, 2026 15:19:44 +2026-03-27T14:19:44.3106485Z Source : xD:\Logs\ +2026-03-27T14:19:44.3110535Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu +2026-03-27T14:19:44.3114262Z +2026-03-27T14:19:44.3118139Z Files : * +2026-03-27T14:19:44.3122080Z +2026-03-27T14:19:44.3127855Z Exc dirs : +2026-03-27T14:19:44.3131031Z +2026-03-27T14:19:44.3134897Z Exc files : +2026-03-27T14:19:44.3138751Z +2026-03-27T14:19:44.3143193Z Options : /mirror +2026-03-27T14:19:44.3146967Z +2026-03-27T14:19:44.3151067Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.3154864Z Status % Done Size U Path +2026-03-27T14:19:44.3159459Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.3163837Z +2026-03-27T14:19:44.3168927Z [BEGIN] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:19:44.3172747Z [COPYING] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:19:44.3177097Z [COPYING] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:19:44.3181348Z [DONE] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:19:44.3186055Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:19:44.3190410Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:19:44.3194778Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:19:44.3199521Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:19:44.3204201Z [BEGIN] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:19:44.3208378Z [COPYING] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:19:44.3212358Z [COPYING] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:19:44.3216737Z [DONE] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:19:44.3221052Z [BEGIN] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:19:44.3225394Z [COPYING] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:19:44.3229702Z [COPYING] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:19:44.3233763Z [DONE] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:19:44.3238112Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:19:44.3242487Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:19:44.3247100Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:19:44.3251771Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:19:44.3255332Z [BEGIN] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:19:44.3258875Z [COPYING] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:19:44.3263135Z [COPYING] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:19:44.3267416Z [DONE] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:19:44.3271940Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:19:44.3275535Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:19:44.3279116Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:19:44.3282714Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:19:44.3287626Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:19:44.3290990Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:19:44.3294592Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:19:44.3298919Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:19:44.3303156Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:19:44.3306742Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:19:44.3310350Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:19:44.3313905Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:19:44.3318144Z [BEGIN] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:19:44.3322637Z [COPYING] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:19:44.3326410Z [COPYING] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:19:44.3330532Z [DONE] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:19:44.3333987Z [BEGIN] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground.log +2026-03-27T14:19:44.3339103Z [COPYING] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground.log +2026-03-27T14:19:44.3342790Z [COPYING] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground.log +2026-03-27T14:19:44.3346349Z [DONE] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground.log +2026-03-27T14:19:44.3349846Z [BEGIN] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryTower.log +2026-03-27T14:19:44.3354565Z [COPYING] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryTower.log +2026-03-27T14:19:44.3358135Z [COPYING] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryTower.log +2026-03-27T14:19:44.3361673Z [DONE] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryTower.log +2026-03-27T14:19:44.3365150Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.3369369Z +2026-03-27T14:19:44.3373047Z Total Copied Skipped Failed +2026-03-27T14:19:44.3376599Z Files : 12 12 0 0 +2026-03-27T14:19:44.3380187Z Size : 917.57 KB 917.57 KB 0.00 B 0.00 B +2026-03-27T14:19:44.3384465Z +2026-03-27T14:19:44.3388361Z Speed : 15154645.16 Bytes/sec. +2026-03-27T14:19:44.3392718Z Speed : 14.45 MegaBytes/sec. +2026-03-27T14:19:44.3397149Z Ended : Fri, Mar 27, 2026 15:19:44 +2026-03-27T14:19:44.3401468Z +2026-03-27T14:19:44.3405435Z Result : Operation completed successfully +2026-03-27T14:19:44.3524345Z Contents: +2026-03-27T14:19:44.3532832Z \SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) +2026-03-27T14:19:44.3538575Z \SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) +2026-03-27T14:19:44.3542579Z \SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) +2026-03-27T14:19:44.3546847Z \SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) +2026-03-27T14:19:44.3550869Z \SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) +2026-03-27T14:19:44.3554906Z \SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) +2026-03-27T14:19:44.3558947Z \SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) +2026-03-27T14:19:44.3563012Z \SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) +2026-03-27T14:19:44.3567162Z \SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) +2026-03-27T14:19:44.3570881Z \SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) +2026-03-27T14:19:44.3574650Z \SentryPlayground.log (79366 bytes) +2026-03-27T14:19:44.3578485Z \SentryTower.log (96101 bytes) +2026-03-27T14:19:44.3782993Z +2026-03-27T14:19:44.3783420Z --- T:\ root --- +2026-03-27T14:19:44.3791099Z Listing xT:\ +2026-03-27T14:19:44.9757521Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.9763396Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:44.9767957Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.9771758Z +2026-03-27T14:19:44.9775779Z Started : Fri, Mar 27, 2026 15:19:44 +2026-03-27T14:19:44.9779737Z Source : xT:\ +2026-03-27T14:19:44.9783936Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-xcusc5gr.5ki +2026-03-27T14:19:44.9787786Z +2026-03-27T14:19:44.9791868Z Files : * +2026-03-27T14:19:44.9795979Z +2026-03-27T14:19:44.9800039Z Exc dirs : +2026-03-27T14:19:44.9804058Z +2026-03-27T14:19:44.9808736Z Exc files : +2026-03-27T14:19:44.9812652Z +2026-03-27T14:19:44.9816751Z Options : /mirror +2026-03-27T14:19:44.9821664Z +2026-03-27T14:19:44.9825066Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.9829034Z Status % Done Size U Path +2026-03-27T14:19:44.9833225Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.9837138Z +2026-03-27T14:19:44.9841201Z +2026-03-27T14:19:44.9845404Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:44.9849750Z +2026-03-27T14:19:44.9853978Z Total Copied Skipped Failed +2026-03-27T14:19:44.9858009Z Files : 1 0 1 0 +2026-03-27T14:19:44.9862077Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B +2026-03-27T14:19:44.9868035Z +2026-03-27T14:19:44.9872900Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:44.9879251Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:44.9883661Z Ended : Fri, Mar 27, 2026 15:19:44 +2026-03-27T14:19:44.9887539Z +2026-03-27T14:19:44.9891865Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. +2026-03-27T14:19:44.9896109Z +2026-03-27T14:19:45.0124871Z +2026-03-27T14:19:45.0125118Z --- S:\ root --- +2026-03-27T14:19:45.0134571Z Listing xS:\ +2026-03-27T14:19:45.1002727Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:45.1007458Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:45.1010895Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:45.1014948Z +2026-03-27T14:19:45.1018697Z Started : Fri, Mar 27, 2026 15:19:45 +2026-03-27T14:19:45.1022268Z Source : xS:\ +2026-03-27T14:19:45.1025865Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-f1ddfn0d.e4q +2026-03-27T14:19:45.1029188Z +2026-03-27T14:19:45.1032723Z Files : * +2026-03-27T14:19:45.1036708Z +2026-03-27T14:19:45.1040188Z Exc dirs : +2026-03-27T14:19:45.1043678Z +2026-03-27T14:19:45.1047254Z Exc files : +2026-03-27T14:19:45.1050487Z +2026-03-27T14:19:45.1054034Z Options : /mirror +2026-03-27T14:19:45.1058973Z +2026-03-27T14:19:45.1061163Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:45.1064528Z Status % Done Size U Path +2026-03-27T14:19:45.1068125Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:45.1071449Z +2026-03-27T14:19:45.1074945Z +2026-03-27T14:19:45.1078635Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:45.1081924Z +2026-03-27T14:19:45.1085494Z Total Copied Skipped Failed +2026-03-27T14:19:45.1089095Z Files : 0 0 0 0 +2026-03-27T14:19:45.1092554Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:45.1096224Z +2026-03-27T14:19:45.1099765Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:45.1104068Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:45.1108820Z Ended : Fri, Mar 27, 2026 15:19:45 +2026-03-27T14:19:45.1112250Z +2026-03-27T14:19:45.1115792Z Result : No files were found +2026-03-27T14:19:45.1349766Z ##[endgroup] +2026-03-27T14:19:45.2279781Z ##[error][-] Context Unity Xbox Integration Tests.Message Capture failed +2026-03-27T14:19:45.2285895Z ##[group]Message +2026-03-27T14:19:45.2287395Z RuntimeException: Failed to retrieve Xbox log file (unity-integration-test.log). See directory diagnostics above. +2026-03-27T14:19:45.2288564Z at Get-XboxLogOutput, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:203 +2026-03-27T14:19:45.2289758Z at Invoke-TestAction, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:290 +2026-03-27T14:19:45.2290997Z at , C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:436 +2026-03-27T14:19:45.2296611Z ##[endgroup] +2026-03-27T14:19:45.2349134Z Running exception-capture... +2026-03-27T14:19:45.8974643Z ##[group]Run log +2026-03-27T14:19:54.1472417Z ##[endgroup] +2026-03-27T14:19:55.6941272Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState +2026-03-27T14:19:57.0994295Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:19:57.0997171Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:57.0997616Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:57.0998025Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:57.0998516Z Started : Fri, Mar 27, 2026 15:19:57 +2026-03-27T14:19:57.0998936Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState +2026-03-27T14:19:57.1000085Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState +2026-03-27T14:19:57.1001005Z Files : * +2026-03-27T14:19:57.1001174Z Exc dirs : +2026-03-27T14:19:57.1001332Z Exc files : +2026-03-27T14:19:57.1001500Z Options : /mirror +2026-03-27T14:19:57.1001824Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:57.1002230Z Status % Done Size U Path +2026-03-27T14:19:57.1002602Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:57.1003199Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:57.1003626Z Total Copied Skipped Failed +2026-03-27T14:19:57.1003941Z Files : 0 0 0 0 +2026-03-27T14:19:57.1004272Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:57.1004562Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:57.1004817Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:57.1005066Z Ended : Fri, Mar 27, 2026 15:19:57 +2026-03-27T14:19:57.1005551Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:57.1006212Z WARNING: === End of original output. === +2026-03-27T14:19:57.1020482Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:19:57.1024659Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState +2026-03-27T14:19:58.4942866Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:19:58.4944648Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:58.4945058Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:58.4945414Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:58.4945778Z Started : Fri, Mar 27, 2026 15:19:58 +2026-03-27T14:19:58.4948232Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState +2026-03-27T14:19:58.4949858Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState +2026-03-27T14:19:58.4951690Z Files : * +2026-03-27T14:19:58.4951861Z Exc dirs : +2026-03-27T14:19:58.4952013Z Exc files : +2026-03-27T14:19:58.4952165Z Options : /mirror +2026-03-27T14:19:58.4952475Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:58.4952862Z Status % Done Size U Path +2026-03-27T14:19:58.4954498Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:58.4955509Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:58.4955921Z Total Copied Skipped Failed +2026-03-27T14:19:58.4956376Z Files : 0 0 0 0 +2026-03-27T14:19:58.4957135Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:58.4957770Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:58.4958162Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:58.4958409Z Ended : Fri, Mar 27, 2026 15:19:58 +2026-03-27T14:19:58.4958871Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:58.4959534Z WARNING: === End of original output. === +2026-03-27T14:19:58.4962586Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:19:58.4967916Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState +2026-03-27T14:19:59.7832236Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:19:59.7834251Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:59.7834661Z XBCOPY :: Xbox File Copy +2026-03-27T14:19:59.7835021Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:59.7835414Z Started : Fri, Mar 27, 2026 15:19:59 +2026-03-27T14:19:59.7835788Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState +2026-03-27T14:19:59.7836788Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState +2026-03-27T14:19:59.7837627Z Files : * +2026-03-27T14:19:59.7837828Z Exc dirs : +2026-03-27T14:19:59.7837973Z Exc files : +2026-03-27T14:19:59.7838126Z Options : /mirror +2026-03-27T14:19:59.7839288Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:59.7839722Z Status % Done Size U Path +2026-03-27T14:19:59.7840083Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:59.7840586Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:19:59.7841007Z Total Copied Skipped Failed +2026-03-27T14:19:59.7841328Z Files : 0 0 0 0 +2026-03-27T14:19:59.7841647Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:19:59.7841946Z Speed : 0.00 Bytes/sec. +2026-03-27T14:19:59.7842205Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:19:59.7842467Z Ended : Fri, Mar 27, 2026 15:19:59 +2026-03-27T14:19:59.7842961Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:19:59.7843617Z WARNING: === End of original output. === +2026-03-27T14:19:59.7844301Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:19:59.7845637Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState +2026-03-27T14:20:01.1622427Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:20:01.1624215Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:01.1624625Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:01.1624990Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:01.1625371Z Started : Fri, Mar 27, 2026 15:20:01 +2026-03-27T14:20:01.1625836Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState +2026-03-27T14:20:01.1626882Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState +2026-03-27T14:20:01.1627720Z Files : * +2026-03-27T14:20:01.1627872Z Exc dirs : +2026-03-27T14:20:01.1628014Z Exc files : +2026-03-27T14:20:01.1628168Z Options : /mirror +2026-03-27T14:20:01.1628485Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:01.1628889Z Status % Done Size U Path +2026-03-27T14:20:01.1629263Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:01.1629790Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:01.1630238Z Total Copied Skipped Failed +2026-03-27T14:20:01.1630570Z Files : 0 0 0 0 +2026-03-27T14:20:01.1630904Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:01.1631203Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:01.1631734Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:01.1632028Z Ended : Fri, Mar 27, 2026 15:20:01 +2026-03-27T14:20:01.1632570Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:01.1634060Z WARNING: === End of original output. === +2026-03-27T14:20:01.1638721Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:20:01.1644445Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp +2026-03-27T14:20:02.4496891Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:20:02.4498838Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:02.4499294Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:02.4499698Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:02.4500290Z Started : Fri, Mar 27, 2026 15:20:02 +2026-03-27T14:20:02.4500658Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp +2026-03-27T14:20:02.4501669Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp +2026-03-27T14:20:02.4503370Z Files : * +2026-03-27T14:20:02.4503530Z Exc dirs : +2026-03-27T14:20:02.4503677Z Exc files : +2026-03-27T14:20:02.4503823Z Options : /mirror +2026-03-27T14:20:02.4504133Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:02.4504525Z Status % Done Size U Path +2026-03-27T14:20:02.4504904Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:02.4505582Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:02.4506235Z Total Copied Skipped Failed +2026-03-27T14:20:02.4506595Z Files : 0 0 0 0 +2026-03-27T14:20:02.4506970Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:02.4507288Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:02.4507582Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:02.4507888Z Ended : Fri, Mar 27, 2026 15:20:02 +2026-03-27T14:20:02.4508395Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:02.4509086Z WARNING: === End of original output. === +2026-03-27T14:20:02.4509683Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp (Command (xbcopy) failed with exit code 2) +2026-03-27T14:20:02.4516250Z Trying to retrieve log from: D:\Logs +2026-03-27T14:20:03.8140068Z Copied files: SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) SentryPlayground.log (79366 bytes) SentryTower.log (96101 bytes) +2026-03-27T14:20:03.8149555Z Trying to retrieve log from: T: +2026-03-27T14:20:05.6368174Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xT:\" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/T_" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:20:05.6369552Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.6369970Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:05.6370328Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.6370700Z Started : Fri, Mar 27, 2026 15:20:05 +2026-03-27T14:20:05.6370923Z Source : xT:\ +2026-03-27T14:20:05.6371449Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/T_ +2026-03-27T14:20:05.6372022Z Files : * +2026-03-27T14:20:05.6372228Z Exc dirs : +2026-03-27T14:20:05.6372369Z Exc files : +2026-03-27T14:20:05.6372523Z Options : /mirror +2026-03-27T14:20:05.6372885Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.6373274Z Status % Done Size U Path +2026-03-27T14:20:05.6373630Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.6374137Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.6386553Z Total Copied Skipped Failed +2026-03-27T14:20:05.6386895Z Files : 1 0 1 0 +2026-03-27T14:20:05.6387223Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B +2026-03-27T14:20:05.6387518Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:05.6387767Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:05.6388020Z Ended : Fri, Mar 27, 2026 15:20:05 +2026-03-27T14:20:05.6388634Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. +2026-03-27T14:20:05.6389423Z WARNING: === End of original output. === +2026-03-27T14:20:05.6389776Z Not found at T: (Command (xbcopy) failed with exit code 2) +2026-03-27T14:20:05.6390327Z WARNING: Log file not found at any candidate path. Listing directories for diagnostics: +2026-03-27T14:20:05.6390972Z ##[group]Xbox directory diagnostics +2026-03-27T14:20:05.6391133Z +2026-03-27T14:20:05.6391204Z --- D:\ root --- +2026-03-27T14:20:05.6395635Z Listing xD:\ +2026-03-27T14:20:05.7401568Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.7406316Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:05.7410187Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.7413931Z +2026-03-27T14:20:05.7417803Z Started : Fri, Mar 27, 2026 15:20:05 +2026-03-27T14:20:05.7421618Z Source : xD:\ +2026-03-27T14:20:05.7425614Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03 +2026-03-27T14:20:05.7429331Z +2026-03-27T14:20:05.7433188Z Files : * +2026-03-27T14:20:05.7436987Z +2026-03-27T14:20:05.7440830Z Exc dirs : +2026-03-27T14:20:05.7444636Z +2026-03-27T14:20:05.7448958Z Exc files : +2026-03-27T14:20:05.7452791Z +2026-03-27T14:20:05.7457915Z Options : /mirror +2026-03-27T14:20:05.7461689Z +2026-03-27T14:20:05.7465684Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.7469416Z Status % Done Size U Path +2026-03-27T14:20:05.7473420Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.7477139Z +2026-03-27T14:20:05.7482025Z [BEGIN] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullException.dmp +2026-03-27T14:20:05.7485063Z [COPYING] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullException.dmp +2026-03-27T14:20:05.7489001Z [COPYING] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullException.dmp +2026-03-27T14:20:05.7492842Z [DONE] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullException.dmp +2026-03-27T14:20:05.7496635Z [BEGIN] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullExceptionLogFile.txt +2026-03-27T14:20:05.7500417Z [COPYING] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullExceptionLogFile.txt +2026-03-27T14:20:05.7504206Z [COPYING] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullExceptionLogFile.txt +2026-03-27T14:20:05.7507944Z [DONE] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullExceptionLogFile.txt +2026-03-27T14:20:05.7511664Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stderr.txt +2026-03-27T14:20:05.7515442Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stderr.txt +2026-03-27T14:20:05.7519230Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stderr.txt +2026-03-27T14:20:05.7522974Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stderr.txt +2026-03-27T14:20:05.7526741Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stdout.txt +2026-03-27T14:20:05.7530737Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stdout.txt +2026-03-27T14:20:05.7534774Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stdout.txt +2026-03-27T14:20:05.7538964Z [BEGIN] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:05.7543040Z [COPYING] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:05.7547058Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stdout.txt +2026-03-27T14:20:05.7551243Z [COPYING] 67.43 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:05.7555263Z [COPYING] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:05.7559389Z [DONE] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:05.7563329Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.7567364Z +2026-03-27T14:20:05.7570652Z Total Copied Skipped Failed +2026-03-27T14:20:05.7574402Z Files : 5 5 0 0 +2026-03-27T14:20:05.7578156Z Size : 854.24 KB 854.24 KB 0.00 B 0.00 B +2026-03-27T14:20:05.7581834Z +2026-03-27T14:20:05.7586944Z Speed : 27335812.50 Bytes/sec. +2026-03-27T14:20:05.7590813Z Speed : 26.07 MegaBytes/sec. +2026-03-27T14:20:05.7594560Z Ended : Fri, Mar 27, 2026 15:20:05 +2026-03-27T14:20:05.7598281Z +2026-03-27T14:20:05.7602671Z Result : Operation completed successfully +2026-03-27T14:20:05.7725121Z Contents: +2026-03-27T14:20:05.7734349Z \FullException.dmp (97125 bytes) +2026-03-27T14:20:05.7739128Z \FullExceptionLogFile.txt (44 bytes) +2026-03-27T14:20:05.7745994Z \latest_stderr.txt (0 bytes) +2026-03-27T14:20:05.7750956Z \latest_stdout.txt (0 bytes) +2026-03-27T14:20:05.7754859Z \unreal-v0-2025.10.10-01.48.52.dmp (777577 bytes) +2026-03-27T14:20:05.7919654Z +2026-03-27T14:20:05.7920526Z --- D:\DevelopmentFiles\ --- +2026-03-27T14:20:05.7926290Z Listing xD:\DevelopmentFiles\ +2026-03-27T14:20:05.8810910Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.8816970Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:05.8820911Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.8824593Z +2026-03-27T14:20:05.8828493Z Started : Fri, Mar 27, 2026 15:20:05 +2026-03-27T14:20:05.8832748Z Source : xD:\DevelopmentFiles\ +2026-03-27T14:20:05.8836696Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-3fy4gtv0.0y1 +2026-03-27T14:20:05.8840380Z +2026-03-27T14:20:05.8844129Z Files : * +2026-03-27T14:20:05.8847968Z +2026-03-27T14:20:05.8851607Z Exc dirs : +2026-03-27T14:20:05.8855496Z +2026-03-27T14:20:05.8860636Z Exc files : +2026-03-27T14:20:05.8864435Z +2026-03-27T14:20:05.8868285Z Options : /mirror +2026-03-27T14:20:05.8872077Z +2026-03-27T14:20:05.8876085Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.8879756Z Status % Done Size U Path +2026-03-27T14:20:05.8884210Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.8888690Z +2026-03-27T14:20:05.8892654Z +2026-03-27T14:20:05.8896607Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:05.8900186Z +2026-03-27T14:20:05.8904026Z Total Copied Skipped Failed +2026-03-27T14:20:05.8907804Z Files : 0 0 0 0 +2026-03-27T14:20:05.8926612Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:05.8930638Z +2026-03-27T14:20:05.8934476Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:05.8938246Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:05.8941990Z Ended : Fri, Mar 27, 2026 15:20:05 +2026-03-27T14:20:05.8945707Z +2026-03-27T14:20:05.8949452Z Result : No files were found +2026-03-27T14:20:05.9187493Z +2026-03-27T14:20:05.9188068Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ --- +2026-03-27T14:20:05.9195230Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ +2026-03-27T14:20:06.0056117Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.0062382Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:06.0066297Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.0069980Z +2026-03-27T14:20:06.0074503Z Started : Fri, Mar 27, 2026 15:20:05 +2026-03-27T14:20:06.0078559Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ +2026-03-27T14:20:06.0084043Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-rqkfx23x.5k0 +2026-03-27T14:20:06.0088067Z +2026-03-27T14:20:06.0092404Z Files : * +2026-03-27T14:20:06.0096286Z +2026-03-27T14:20:06.0100158Z Exc dirs : +2026-03-27T14:20:06.0104377Z +2026-03-27T14:20:06.0108230Z Exc files : +2026-03-27T14:20:06.0112126Z +2026-03-27T14:20:06.0116934Z Options : /mirror +2026-03-27T14:20:06.0120004Z +2026-03-27T14:20:06.0124120Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.0128349Z Status % Done Size U Path +2026-03-27T14:20:06.0132146Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.0135785Z +2026-03-27T14:20:06.0139428Z +2026-03-27T14:20:06.0143511Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.0147044Z +2026-03-27T14:20:06.0151025Z Total Copied Skipped Failed +2026-03-27T14:20:06.0154681Z Files : 0 0 0 0 +2026-03-27T14:20:06.0158473Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:06.0162069Z +2026-03-27T14:20:06.0165986Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:06.0169830Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:06.0173668Z Ended : Fri, Mar 27, 2026 15:20:05 +2026-03-27T14:20:06.0177416Z +2026-03-27T14:20:06.0181475Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:06.0185084Z +2026-03-27T14:20:06.0426974Z +2026-03-27T14:20:06.0427475Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ --- +2026-03-27T14:20:06.0434906Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ +2026-03-27T14:20:06.1396617Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.1402460Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:06.1406423Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.1410471Z +2026-03-27T14:20:06.1414497Z Started : Fri, Mar 27, 2026 15:20:06 +2026-03-27T14:20:06.1418263Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ +2026-03-27T14:20:06.1422011Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-4ypytjos.3hz +2026-03-27T14:20:06.1425660Z +2026-03-27T14:20:06.1429580Z Files : * +2026-03-27T14:20:06.1433166Z +2026-03-27T14:20:06.1436894Z Exc dirs : +2026-03-27T14:20:06.1440631Z +2026-03-27T14:20:06.1444412Z Exc files : +2026-03-27T14:20:06.1448629Z +2026-03-27T14:20:06.1452285Z Options : /mirror +2026-03-27T14:20:06.1456068Z +2026-03-27T14:20:06.1460348Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.1464094Z Status % Done Size U Path +2026-03-27T14:20:06.1468207Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.1472096Z +2026-03-27T14:20:06.1475744Z +2026-03-27T14:20:06.1479632Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.1483174Z +2026-03-27T14:20:06.1490185Z Total Copied Skipped Failed +2026-03-27T14:20:06.1494125Z Files : 0 0 0 0 +2026-03-27T14:20:06.1497800Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:06.1501382Z +2026-03-27T14:20:06.1505151Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:06.1508857Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:06.1512470Z Ended : Fri, Mar 27, 2026 15:20:06 +2026-03-27T14:20:06.1516176Z +2026-03-27T14:20:06.1520987Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:06.1523527Z +2026-03-27T14:20:06.1760413Z +2026-03-27T14:20:06.1761869Z --- D:\Logs\ --- +2026-03-27T14:20:06.1769505Z Listing xD:\Logs\ +2026-03-27T14:20:06.3070179Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.3076686Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:06.3080896Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.3084403Z +2026-03-27T14:20:06.3088996Z Started : Fri, Mar 27, 2026 15:20:06 +2026-03-27T14:20:06.3093020Z Source : xD:\Logs\ +2026-03-27T14:20:06.3096779Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b +2026-03-27T14:20:06.3100690Z +2026-03-27T14:20:06.3105110Z Files : * +2026-03-27T14:20:06.3108883Z +2026-03-27T14:20:06.3112944Z Exc dirs : +2026-03-27T14:20:06.3117003Z +2026-03-27T14:20:06.3121103Z Exc files : +2026-03-27T14:20:06.3125142Z +2026-03-27T14:20:06.3129244Z Options : /mirror +2026-03-27T14:20:06.3133299Z +2026-03-27T14:20:06.3137622Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.3141549Z Status % Done Size U Path +2026-03-27T14:20:06.3146114Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.3150026Z +2026-03-27T14:20:06.3159911Z [BEGIN] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:20:06.3160955Z [COPYING] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:20:06.3165274Z [COPYING] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:20:06.3170239Z [DONE] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:20:06.3174997Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:20:06.3179549Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:20:06.3184005Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:20:06.3190418Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:20:06.3194300Z [BEGIN] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:20:06.3200360Z [COPYING] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:20:06.3204174Z [COPYING] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:20:06.3208903Z [DONE] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:20:06.3212773Z [BEGIN] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:20:06.3217432Z [COPYING] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:20:06.3220637Z [COPYING] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:20:06.3224213Z [DONE] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:20:06.3230283Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:20:06.3234156Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:20:06.3237848Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:20:06.3241603Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:20:06.3245351Z [BEGIN] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:20:06.3249164Z [COPYING] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:20:06.3252945Z [COPYING] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:20:06.3256725Z [DONE] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:20:06.3260577Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:20:06.3264476Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:20:06.3268332Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:20:06.3272194Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:20:06.3275956Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:20:06.3279787Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:20:06.3283308Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:20:06.3287235Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:20:06.3291574Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:20:06.3295400Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:20:06.3299084Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:20:06.3302743Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:20:06.3307168Z [BEGIN] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:20:06.3310064Z [COPYING] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:20:06.3313768Z [COPYING] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:20:06.3317544Z [DONE] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:20:06.3321108Z [BEGIN] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground.log +2026-03-27T14:20:06.3324815Z [COPYING] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground.log +2026-03-27T14:20:06.3330842Z [COPYING] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground.log +2026-03-27T14:20:06.3337689Z [DONE] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground.log +2026-03-27T14:20:06.3343221Z [BEGIN] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryTower.log +2026-03-27T14:20:06.3347045Z [COPYING] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryTower.log +2026-03-27T14:20:06.3350745Z [COPYING] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryTower.log +2026-03-27T14:20:06.3359055Z [DONE] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryTower.log +2026-03-27T14:20:06.3364926Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.3369752Z +2026-03-27T14:20:06.3375979Z Total Copied Skipped Failed +2026-03-27T14:20:06.3379120Z Files : 12 12 0 0 +2026-03-27T14:20:06.3382687Z Size : 917.57 KB 917.57 KB 0.00 B 0.00 B +2026-03-27T14:20:06.3386162Z +2026-03-27T14:20:06.3389747Z Speed : 15154645.16 Bytes/sec. +2026-03-27T14:20:06.3393322Z Speed : 14.45 MegaBytes/sec. +2026-03-27T14:20:06.3396937Z Ended : Fri, Mar 27, 2026 15:20:06 +2026-03-27T14:20:06.3400424Z +2026-03-27T14:20:06.3404010Z Result : Operation completed successfully +2026-03-27T14:20:06.3522357Z Contents: +2026-03-27T14:20:06.3534263Z \SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) +2026-03-27T14:20:06.3541160Z \SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) +2026-03-27T14:20:06.3546547Z \SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) +2026-03-27T14:20:06.3551141Z \SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) +2026-03-27T14:20:06.3556597Z \SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) +2026-03-27T14:20:06.3561044Z \SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) +2026-03-27T14:20:06.3565075Z \SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) +2026-03-27T14:20:06.3569557Z \SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) +2026-03-27T14:20:06.3573463Z \SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) +2026-03-27T14:20:06.3577375Z \SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) +2026-03-27T14:20:06.3581638Z \SentryPlayground.log (79366 bytes) +2026-03-27T14:20:06.3585714Z \SentryTower.log (96101 bytes) +2026-03-27T14:20:06.3805037Z +2026-03-27T14:20:06.3806293Z --- T:\ root --- +2026-03-27T14:20:06.3812633Z Listing xT:\ +2026-03-27T14:20:06.9764544Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.9769728Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:06.9774224Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.9778062Z +2026-03-27T14:20:06.9782246Z Started : Fri, Mar 27, 2026 15:20:06 +2026-03-27T14:20:06.9786299Z Source : xT:\ +2026-03-27T14:20:06.9790600Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qwq43wvd.3id +2026-03-27T14:20:06.9794449Z +2026-03-27T14:20:06.9798572Z Files : * +2026-03-27T14:20:06.9802600Z +2026-03-27T14:20:06.9806653Z Exc dirs : +2026-03-27T14:20:06.9810806Z +2026-03-27T14:20:06.9815305Z Exc files : +2026-03-27T14:20:06.9819304Z +2026-03-27T14:20:06.9823413Z Options : /mirror +2026-03-27T14:20:06.9827408Z +2026-03-27T14:20:06.9831721Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.9835594Z Status % Done Size U Path +2026-03-27T14:20:06.9839678Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.9843627Z +2026-03-27T14:20:06.9847524Z +2026-03-27T14:20:06.9851449Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:06.9855728Z +2026-03-27T14:20:06.9859888Z Total Copied Skipped Failed +2026-03-27T14:20:06.9863970Z Files : 1 0 1 0 +2026-03-27T14:20:06.9867959Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B +2026-03-27T14:20:06.9871907Z +2026-03-27T14:20:06.9876029Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:06.9881372Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:06.9886000Z Ended : Fri, Mar 27, 2026 15:20:06 +2026-03-27T14:20:06.9890310Z +2026-03-27T14:20:06.9895002Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. +2026-03-27T14:20:06.9899911Z +2026-03-27T14:20:07.0137981Z +2026-03-27T14:20:07.0138750Z --- S:\ root --- +2026-03-27T14:20:07.0147687Z Listing xS:\ +2026-03-27T14:20:07.1092195Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:07.1098010Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:07.1101804Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:07.1106037Z +2026-03-27T14:20:07.1109922Z Started : Fri, Mar 27, 2026 15:20:07 +2026-03-27T14:20:07.1113856Z Source : xS:\ +2026-03-27T14:20:07.1118514Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-zppmo1oz.uwr +2026-03-27T14:20:07.1122637Z +2026-03-27T14:20:07.1126488Z Files : * +2026-03-27T14:20:07.1130565Z +2026-03-27T14:20:07.1134407Z Exc dirs : +2026-03-27T14:20:07.1138378Z +2026-03-27T14:20:07.1142237Z Exc files : +2026-03-27T14:20:07.1147926Z +2026-03-27T14:20:07.1151366Z Options : /mirror +2026-03-27T14:20:07.1155253Z +2026-03-27T14:20:07.1159192Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:07.1162897Z Status % Done Size U Path +2026-03-27T14:20:07.1167610Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:07.1171563Z +2026-03-27T14:20:07.1175916Z +2026-03-27T14:20:07.1180288Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:07.1184951Z +2026-03-27T14:20:07.1188044Z Total Copied Skipped Failed +2026-03-27T14:20:07.1191889Z Files : 0 0 0 0 +2026-03-27T14:20:07.1195847Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:07.1199472Z +2026-03-27T14:20:07.1203325Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:07.1207172Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:07.1210839Z Ended : Fri, Mar 27, 2026 15:20:07 +2026-03-27T14:20:07.1214541Z +2026-03-27T14:20:07.1218282Z Result : No files were found +2026-03-27T14:20:07.1457975Z ##[endgroup] +2026-03-27T14:20:07.1550039Z ##[error][-] Context Unity Xbox Integration Tests.Exception Capture failed +2026-03-27T14:20:07.1559773Z ##[group]Message +2026-03-27T14:20:07.1564519Z RuntimeException: Failed to retrieve Xbox log file (unity-integration-test.log). See directory diagnostics above. +2026-03-27T14:20:07.1570856Z at Get-XboxLogOutput, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:203 +2026-03-27T14:20:07.1576441Z at Invoke-TestAction, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:290 +2026-03-27T14:20:07.1582180Z at , C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:462 +2026-03-27T14:20:07.1587441Z ##[endgroup] +2026-03-27T14:20:07.1692211Z Running crash-capture... +2026-03-27T14:20:07.8304010Z ##[group]Run log +2026-03-27T14:20:15.9237287Z ##[endgroup] +2026-03-27T14:20:17.4730630Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState +2026-03-27T14:20:18.8575176Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:20:18.8577232Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:18.8577694Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:18.8578106Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:18.8578579Z Started : Fri, Mar 27, 2026 15:20:18 +2026-03-27T14:20:18.8578989Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState +2026-03-27T14:20:18.8580132Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState +2026-03-27T14:20:18.8581102Z Files : * +2026-03-27T14:20:18.8581272Z Exc dirs : +2026-03-27T14:20:18.8581421Z Exc files : +2026-03-27T14:20:18.8581582Z Options : /mirror +2026-03-27T14:20:18.8581938Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:18.8582394Z Status % Done Size U Path +2026-03-27T14:20:18.8582785Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:18.8583303Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:18.8583746Z Total Copied Skipped Failed +2026-03-27T14:20:18.8584077Z Files : 0 0 0 0 +2026-03-27T14:20:18.8584400Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:18.8585453Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:18.8585757Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:18.8586009Z Ended : Fri, Mar 27, 2026 15:20:18 +2026-03-27T14:20:18.8586482Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:18.8587112Z WARNING: === End of original output. === +2026-03-27T14:20:18.8588755Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:20:18.8594852Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState +2026-03-27T14:20:20.2514917Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:20:20.2516915Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:20.2517488Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:20.2519193Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:20.2520167Z Started : Fri, Mar 27, 2026 15:20:20 +2026-03-27T14:20:20.2521094Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState +2026-03-27T14:20:20.2522255Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState +2026-03-27T14:20:20.2523186Z Files : * +2026-03-27T14:20:20.2523346Z Exc dirs : +2026-03-27T14:20:20.2523511Z Exc files : +2026-03-27T14:20:20.2523675Z Options : /mirror +2026-03-27T14:20:20.2524196Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:20.2524637Z Status % Done Size U Path +2026-03-27T14:20:20.2525054Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:20.2525654Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:20.2527359Z Total Copied Skipped Failed +2026-03-27T14:20:20.2527726Z Files : 0 0 0 0 +2026-03-27T14:20:20.2528080Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:20.2528414Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:20.2528698Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:20.2528996Z Ended : Fri, Mar 27, 2026 15:20:20 +2026-03-27T14:20:20.2529547Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:20.2530333Z WARNING: === End of original output. === +2026-03-27T14:20:20.2530957Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:20:20.2531729Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState +2026-03-27T14:20:21.5404620Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:20:21.5407572Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:21.5408163Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:21.5408570Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:21.5409024Z Started : Fri, Mar 27, 2026 15:20:21 +2026-03-27T14:20:21.5409435Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState +2026-03-27T14:20:21.5410608Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState +2026-03-27T14:20:21.5411559Z Files : * +2026-03-27T14:20:21.5411736Z Exc dirs : +2026-03-27T14:20:21.5411886Z Exc files : +2026-03-27T14:20:21.5412044Z Options : /mirror +2026-03-27T14:20:21.5412403Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:21.5412876Z Status % Done Size U Path +2026-03-27T14:20:21.5413310Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:21.5413878Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:21.5414995Z Total Copied Skipped Failed +2026-03-27T14:20:21.5415312Z Files : 0 0 0 0 +2026-03-27T14:20:21.5415633Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:21.5415922Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:21.5416188Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:21.5416453Z Ended : Fri, Mar 27, 2026 15:20:21 +2026-03-27T14:20:21.5417033Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:21.5417707Z WARNING: === End of original output. === +2026-03-27T14:20:21.5418295Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:20:21.5425799Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState +2026-03-27T14:20:23.7305657Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:20:23.7310209Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:23.7310810Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:23.7311631Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:23.7312102Z Started : Fri, Mar 27, 2026 15:20:23 +2026-03-27T14:20:23.7312530Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState +2026-03-27T14:20:23.7313808Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState +2026-03-27T14:20:23.7314949Z Files : * +2026-03-27T14:20:23.7315356Z Exc dirs : +2026-03-27T14:20:23.7315572Z Exc files : +2026-03-27T14:20:23.7315735Z Options : /mirror +2026-03-27T14:20:23.7316348Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:23.7316796Z Status % Done Size U Path +2026-03-27T14:20:23.7318207Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:23.7318990Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:23.7319428Z Total Copied Skipped Failed +2026-03-27T14:20:23.7319759Z Files : 0 0 0 0 +2026-03-27T14:20:23.7320083Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:23.7320372Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:23.7320629Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:23.7320883Z Ended : Fri, Mar 27, 2026 15:20:23 +2026-03-27T14:20:23.7321474Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:23.7322164Z WARNING: === End of original output. === +2026-03-27T14:20:23.7322786Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState (Command (xbcopy) failed with exit code 2) +2026-03-27T14:20:23.7323539Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp +2026-03-27T14:20:25.0340744Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:20:25.0343368Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:25.0343780Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:25.0344142Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:25.0344528Z Started : Fri, Mar 27, 2026 15:20:24 +2026-03-27T14:20:25.0344894Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp +2026-03-27T14:20:25.0345858Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp +2026-03-27T14:20:25.0346730Z Files : * +2026-03-27T14:20:25.0346887Z Exc dirs : +2026-03-27T14:20:25.0347027Z Exc files : +2026-03-27T14:20:25.0347181Z Options : /mirror +2026-03-27T14:20:25.0347494Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:25.0347883Z Status % Done Size U Path +2026-03-27T14:20:25.0348249Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:25.0348771Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:25.0349208Z Total Copied Skipped Failed +2026-03-27T14:20:25.0349588Z Files : 0 0 0 0 +2026-03-27T14:20:25.0349919Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:25.0350231Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:25.0350496Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:25.0350756Z Ended : Fri, Mar 27, 2026 15:20:24 +2026-03-27T14:20:25.0351258Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:25.0351942Z WARNING: === End of original output. === +2026-03-27T14:20:25.0352536Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp (Command (xbcopy) failed with exit code 2) +2026-03-27T14:20:25.0353086Z Trying to retrieve log from: D:\Logs +2026-03-27T14:20:26.3684923Z Copied files: SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) SentryPlayground.log (79366 bytes) SentryTower.log (96101 bytes) +2026-03-27T14:20:26.3690986Z Trying to retrieve log from: T: +2026-03-27T14:20:28.1683533Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xT:\" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/T_" /mirror 2>&1) failed with exit code 2 and output: +2026-03-27T14:20:28.1684946Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.1685403Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:28.1685813Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.1687470Z Started : Fri, Mar 27, 2026 15:20:27 +2026-03-27T14:20:28.1687714Z Source : xT:\ +2026-03-27T14:20:28.1688359Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/T_ +2026-03-27T14:20:28.1688953Z Files : * +2026-03-27T14:20:28.1689110Z Exc dirs : +2026-03-27T14:20:28.1689252Z Exc files : +2026-03-27T14:20:28.1689408Z Options : /mirror +2026-03-27T14:20:28.1689727Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.1690183Z Status % Done Size U Path +2026-03-27T14:20:28.1690571Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.1691087Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.1691531Z Total Copied Skipped Failed +2026-03-27T14:20:28.1691886Z Files : 1 0 1 0 +2026-03-27T14:20:28.1692236Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B +2026-03-27T14:20:28.1692966Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:28.1693318Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:28.1693598Z Ended : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.1694296Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. +2026-03-27T14:20:28.1695893Z WARNING: === End of original output. === +2026-03-27T14:20:28.1696649Z Not found at T: (Command (xbcopy) failed with exit code 2) +2026-03-27T14:20:28.1698009Z WARNING: Log file not found at any candidate path. Listing directories for diagnostics: +2026-03-27T14:20:28.1699184Z ##[group]Xbox directory diagnostics +2026-03-27T14:20:28.1707209Z +2026-03-27T14:20:28.1707477Z --- D:\ root --- +2026-03-27T14:20:28.1713029Z Listing xD:\ +2026-03-27T14:20:28.2737579Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.2745881Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:28.2749882Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.2753587Z +2026-03-27T14:20:28.2757507Z Started : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.2761350Z Source : xD:\ +2026-03-27T14:20:28.2766202Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa +2026-03-27T14:20:28.2769504Z +2026-03-27T14:20:28.2773415Z Files : * +2026-03-27T14:20:28.2777289Z +2026-03-27T14:20:28.2781157Z Exc dirs : +2026-03-27T14:20:28.2785020Z +2026-03-27T14:20:28.2788889Z Exc files : +2026-03-27T14:20:28.2792729Z +2026-03-27T14:20:28.2796611Z Options : /mirror +2026-03-27T14:20:28.2800481Z +2026-03-27T14:20:28.2804506Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.2808398Z Status % Done Size U Path +2026-03-27T14:20:28.2812387Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.2816115Z +2026-03-27T14:20:28.2820263Z [BEGIN] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullException.dmp +2026-03-27T14:20:28.2826292Z [COPYING] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullException.dmp +2026-03-27T14:20:28.2830117Z [COPYING] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullException.dmp +2026-03-27T14:20:28.2833507Z [DONE] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullException.dmp +2026-03-27T14:20:28.2837271Z [BEGIN] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullExceptionLogFile.txt +2026-03-27T14:20:28.2841058Z [COPYING] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullExceptionLogFile.txt +2026-03-27T14:20:28.2844818Z [COPYING] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullExceptionLogFile.txt +2026-03-27T14:20:28.2848719Z [DONE] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullExceptionLogFile.txt +2026-03-27T14:20:28.2852487Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stderr.txt +2026-03-27T14:20:28.2856277Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stderr.txt +2026-03-27T14:20:28.2860049Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stderr.txt +2026-03-27T14:20:28.2864059Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stderr.txt +2026-03-27T14:20:28.2867815Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stdout.txt +2026-03-27T14:20:28.2871596Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stdout.txt +2026-03-27T14:20:28.2875418Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stdout.txt +2026-03-27T14:20:28.2879266Z [BEGIN] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:28.2883009Z [COPYING] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:28.2886697Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stdout.txt +2026-03-27T14:20:28.2890923Z [COPYING] 67.43 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:28.2894688Z [COPYING] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:28.2899042Z [DONE] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp +2026-03-27T14:20:28.2904223Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.2907372Z +2026-03-27T14:20:28.2910767Z Total Copied Skipped Failed +2026-03-27T14:20:28.2916895Z Files : 5 5 0 0 +2026-03-27T14:20:28.2921841Z Size : 854.24 KB 854.24 KB 0.00 B 0.00 B +2026-03-27T14:20:28.2926089Z +2026-03-27T14:20:28.2929639Z Speed : 28217612.90 Bytes/sec. +2026-03-27T14:20:28.2933114Z Speed : 26.91 MegaBytes/sec. +2026-03-27T14:20:28.2936563Z Ended : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.2940007Z +2026-03-27T14:20:28.2943551Z Result : Operation completed successfully +2026-03-27T14:20:28.3060134Z Contents: +2026-03-27T14:20:28.3069190Z \FullException.dmp (97125 bytes) +2026-03-27T14:20:28.3073849Z \FullExceptionLogFile.txt (44 bytes) +2026-03-27T14:20:28.3077899Z \latest_stderr.txt (0 bytes) +2026-03-27T14:20:28.3082335Z \latest_stdout.txt (0 bytes) +2026-03-27T14:20:28.3086299Z \unreal-v0-2025.10.10-01.48.52.dmp (777577 bytes) +2026-03-27T14:20:28.3243039Z +2026-03-27T14:20:28.3244412Z --- D:\DevelopmentFiles\ --- +2026-03-27T14:20:28.3251296Z Listing xD:\DevelopmentFiles\ +2026-03-27T14:20:28.4104032Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.4108345Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:28.4113975Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.4115707Z +2026-03-27T14:20:28.4119597Z Started : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.4123383Z Source : xD:\DevelopmentFiles\ +2026-03-27T14:20:28.4127541Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-tcqmsuhz.32j +2026-03-27T14:20:28.4131452Z +2026-03-27T14:20:28.4136093Z Files : * +2026-03-27T14:20:28.4141798Z +2026-03-27T14:20:28.4144436Z Exc dirs : +2026-03-27T14:20:28.4149072Z +2026-03-27T14:20:28.4153674Z Exc files : +2026-03-27T14:20:28.4157389Z +2026-03-27T14:20:28.4161163Z Options : /mirror +2026-03-27T14:20:28.4164910Z +2026-03-27T14:20:28.4169905Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.4173454Z Status % Done Size U Path +2026-03-27T14:20:28.4177059Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.4180392Z +2026-03-27T14:20:28.4183867Z +2026-03-27T14:20:28.4187517Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.4190860Z +2026-03-27T14:20:28.4194406Z Total Copied Skipped Failed +2026-03-27T14:20:28.4197934Z Files : 0 0 0 0 +2026-03-27T14:20:28.4201435Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:28.4204955Z +2026-03-27T14:20:28.4209252Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:28.4212986Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:28.4216475Z Ended : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.4219917Z +2026-03-27T14:20:28.4223438Z Result : No files were found +2026-03-27T14:20:28.4484891Z +2026-03-27T14:20:28.4486472Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ --- +2026-03-27T14:20:28.4494652Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ +2026-03-27T14:20:28.5368770Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.5375945Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:28.5383231Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.5386376Z +2026-03-27T14:20:28.5390238Z Started : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.5394232Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ +2026-03-27T14:20:28.5398049Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-fw1anxhd.nd3 +2026-03-27T14:20:28.5401737Z +2026-03-27T14:20:28.5405593Z Files : * +2026-03-27T14:20:28.5409798Z +2026-03-27T14:20:28.5413642Z Exc dirs : +2026-03-27T14:20:28.5417290Z +2026-03-27T14:20:28.5421146Z Exc files : +2026-03-27T14:20:28.5424858Z +2026-03-27T14:20:28.5428633Z Options : /mirror +2026-03-27T14:20:28.5432358Z +2026-03-27T14:20:28.5436237Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.5439852Z Status % Done Size U Path +2026-03-27T14:20:28.5443716Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.5447250Z +2026-03-27T14:20:28.5450892Z +2026-03-27T14:20:28.5454806Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.5458389Z +2026-03-27T14:20:28.5462236Z Total Copied Skipped Failed +2026-03-27T14:20:28.5465873Z Files : 0 0 0 0 +2026-03-27T14:20:28.5469596Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:28.5473177Z +2026-03-27T14:20:28.5476673Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:28.5480164Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:28.5483555Z Ended : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.5487215Z +2026-03-27T14:20:28.5490731Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:28.5493902Z +2026-03-27T14:20:28.5730750Z +2026-03-27T14:20:28.5732269Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ --- +2026-03-27T14:20:28.5740643Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ +2026-03-27T14:20:28.6615524Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.6622124Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:28.6626431Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.6630147Z +2026-03-27T14:20:28.6634060Z Started : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.6638056Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ +2026-03-27T14:20:28.6641885Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1jkmy201.rsq +2026-03-27T14:20:28.6645590Z +2026-03-27T14:20:28.6649898Z Files : * +2026-03-27T14:20:28.6653757Z +2026-03-27T14:20:28.6657579Z Exc dirs : +2026-03-27T14:20:28.6661466Z +2026-03-27T14:20:28.6665432Z Exc files : +2026-03-27T14:20:28.6669261Z +2026-03-27T14:20:28.6673520Z Options : /mirror +2026-03-27T14:20:28.6677330Z +2026-03-27T14:20:28.6681226Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.6684928Z Status % Done Size U Path +2026-03-27T14:20:28.6688958Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.6692634Z +2026-03-27T14:20:28.6696342Z +2026-03-27T14:20:28.6701871Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.6704017Z +2026-03-27T14:20:28.6707997Z Total Copied Skipped Failed +2026-03-27T14:20:28.6711758Z Files : 0 0 0 0 +2026-03-27T14:20:28.6715560Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:28.6719349Z +2026-03-27T14:20:28.6722940Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:28.6727019Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:28.6730718Z Ended : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.6734427Z +2026-03-27T14:20:28.6738240Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. +2026-03-27T14:20:28.6741703Z +2026-03-27T14:20:28.6985685Z +2026-03-27T14:20:28.6986954Z --- D:\Logs\ --- +2026-03-27T14:20:28.6994798Z Listing xD:\Logs\ +2026-03-27T14:20:28.8300553Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.8305650Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:28.8309693Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.8313703Z +2026-03-27T14:20:28.8317530Z Started : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.8321372Z Source : xD:\Logs\ +2026-03-27T14:20:28.8325193Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn +2026-03-27T14:20:28.8329148Z +2026-03-27T14:20:28.8333312Z Files : * +2026-03-27T14:20:28.8336974Z +2026-03-27T14:20:28.8342409Z Exc dirs : +2026-03-27T14:20:28.8346338Z +2026-03-27T14:20:28.8350140Z Exc files : +2026-03-27T14:20:28.8353720Z +2026-03-27T14:20:28.8357441Z Options : /mirror +2026-03-27T14:20:28.8361276Z +2026-03-27T14:20:28.8365045Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.8369439Z Status % Done Size U Path +2026-03-27T14:20:28.8373231Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.8376864Z +2026-03-27T14:20:28.8381021Z [BEGIN] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:20:28.8384825Z [COPYING] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:20:28.8388656Z [COPYING] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:20:28.8392395Z [DONE] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-07.39.07.log +2026-03-27T14:20:28.8396162Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:20:28.8399939Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:20:28.8403701Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:20:28.8407675Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.11.log +2026-03-27T14:20:28.8412057Z [BEGIN] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:20:28.8415092Z [COPYING] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:20:28.8418576Z [COPYING] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:20:28.8422335Z [DONE] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.25.log +2026-03-27T14:20:28.8426116Z [BEGIN] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:20:28.8429855Z [COPYING] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:20:28.8433521Z [COPYING] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:20:28.8437287Z [DONE] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.44.53.log +2026-03-27T14:20:28.8441009Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:20:28.8444748Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:20:28.8449111Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:20:28.8452760Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.45.07.log +2026-03-27T14:20:28.8456489Z [BEGIN] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:20:28.8460266Z [COPYING] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:20:28.8463949Z [COPYING] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:20:28.8467720Z [DONE] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.27.log +2026-03-27T14:20:28.8471459Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:20:28.8475191Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:20:28.8478948Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:20:28.8482430Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.41.log +2026-03-27T14:20:28.8486125Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:20:28.8490574Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:20:28.8494111Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:20:28.8498508Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.23.log +2026-03-27T14:20:28.8501606Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:20:28.8505676Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:20:28.8509428Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:20:28.8513237Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.38.log +2026-03-27T14:20:28.8516733Z [BEGIN] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:20:28.8520491Z [COPYING] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:20:28.8524593Z [COPYING] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:20:28.8528822Z [DONE] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.42.41.log +2026-03-27T14:20:28.8532664Z [BEGIN] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground.log +2026-03-27T14:20:28.8536539Z [COPYING] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground.log +2026-03-27T14:20:28.8540360Z [COPYING] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground.log +2026-03-27T14:20:28.8544482Z [DONE] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground.log +2026-03-27T14:20:28.8548513Z [BEGIN] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryTower.log +2026-03-27T14:20:28.8552711Z [COPYING] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryTower.log +2026-03-27T14:20:28.8556806Z [COPYING] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryTower.log +2026-03-27T14:20:28.8560874Z [DONE] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryTower.log +2026-03-27T14:20:28.8564873Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:28.8568964Z +2026-03-27T14:20:28.8572558Z Total Copied Skipped Failed +2026-03-27T14:20:28.8576305Z Files : 12 12 0 0 +2026-03-27T14:20:28.8580026Z Size : 917.57 KB 917.57 KB 0.00 B 0.00 B +2026-03-27T14:20:28.8583703Z +2026-03-27T14:20:28.8587438Z Speed : 15154645.16 Bytes/sec. +2026-03-27T14:20:28.8591194Z Speed : 14.45 MegaBytes/sec. +2026-03-27T14:20:28.8595038Z Ended : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:28.8598703Z +2026-03-27T14:20:28.8602489Z Result : Operation completed successfully +2026-03-27T14:20:28.8721430Z Contents: +2026-03-27T14:20:28.8729401Z \SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) +2026-03-27T14:20:28.8733301Z \SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) +2026-03-27T14:20:28.8737326Z \SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) +2026-03-27T14:20:28.8741947Z \SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) +2026-03-27T14:20:28.8745150Z \SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) +2026-03-27T14:20:28.8748442Z \SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) +2026-03-27T14:20:28.8752913Z \SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) +2026-03-27T14:20:28.8756668Z \SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) +2026-03-27T14:20:28.8760712Z \SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) +2026-03-27T14:20:28.8764472Z \SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) +2026-03-27T14:20:28.8768497Z \SentryPlayground.log (79366 bytes) +2026-03-27T14:20:28.8772245Z \SentryTower.log (96101 bytes) +2026-03-27T14:20:28.8981518Z +2026-03-27T14:20:28.8982725Z --- T:\ root --- +2026-03-27T14:20:28.8989306Z Listing xT:\ +2026-03-27T14:20:29.4980041Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.4986301Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:29.4990805Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.4995220Z +2026-03-27T14:20:29.4999300Z Started : Fri, Mar 27, 2026 15:20:28 +2026-03-27T14:20:29.5004406Z Source : xT:\ +2026-03-27T14:20:29.5008949Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-dgi1kujw.qr2 +2026-03-27T14:20:29.5013398Z +2026-03-27T14:20:29.5017459Z Files : * +2026-03-27T14:20:29.5021522Z +2026-03-27T14:20:29.5025613Z Exc dirs : +2026-03-27T14:20:29.5029670Z +2026-03-27T14:20:29.5033726Z Exc files : +2026-03-27T14:20:29.5037669Z +2026-03-27T14:20:29.5041432Z Options : /mirror +2026-03-27T14:20:29.5045246Z +2026-03-27T14:20:29.5049694Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.5053466Z Status % Done Size U Path +2026-03-27T14:20:29.5057346Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.5060846Z +2026-03-27T14:20:29.5065170Z +2026-03-27T14:20:29.5069116Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.5072659Z +2026-03-27T14:20:29.5076472Z Total Copied Skipped Failed +2026-03-27T14:20:29.5080315Z Files : 1 0 1 0 +2026-03-27T14:20:29.5084217Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B +2026-03-27T14:20:29.5087474Z +2026-03-27T14:20:29.5091727Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:29.5095504Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:29.5099120Z Ended : Fri, Mar 27, 2026 15:20:29 +2026-03-27T14:20:29.5102764Z +2026-03-27T14:20:29.5106833Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. +2026-03-27T14:20:29.5110111Z +2026-03-27T14:20:29.5344386Z +2026-03-27T14:20:29.5345632Z --- S:\ root --- +2026-03-27T14:20:29.5353655Z Listing xS:\ +2026-03-27T14:20:29.6206919Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.6212840Z XBCOPY :: Xbox File Copy +2026-03-27T14:20:29.6217285Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.6221230Z +2026-03-27T14:20:29.6225443Z Started : Fri, Mar 27, 2026 15:20:29 +2026-03-27T14:20:29.6229254Z Source : xS:\ +2026-03-27T14:20:29.6233162Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-efss0vpf.rzr +2026-03-27T14:20:29.6237629Z +2026-03-27T14:20:29.6240783Z Files : * +2026-03-27T14:20:29.6244243Z +2026-03-27T14:20:29.6249103Z Exc dirs : +2026-03-27T14:20:29.6252910Z +2026-03-27T14:20:29.6257786Z Exc files : +2026-03-27T14:20:29.6262369Z +2026-03-27T14:20:29.6266362Z Options : /mirror +2026-03-27T14:20:29.6270450Z +2026-03-27T14:20:29.6274399Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.6278033Z Status % Done Size U Path +2026-03-27T14:20:29.6298051Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.6301680Z +2026-03-27T14:20:29.6305417Z +2026-03-27T14:20:29.6309394Z ------------------------------------------------------------------------------------------------------- +2026-03-27T14:20:29.6312948Z +2026-03-27T14:20:29.6316729Z Total Copied Skipped Failed +2026-03-27T14:20:29.6320210Z Files : 0 0 0 0 +2026-03-27T14:20:29.6323735Z Size : 0.00 B 0.00 B 0.00 B 0.00 B +2026-03-27T14:20:29.6327361Z +2026-03-27T14:20:29.6331012Z Speed : 0.00 Bytes/sec. +2026-03-27T14:20:29.6334561Z Speed : 0.00 MegaBytes/sec. +2026-03-27T14:20:29.6338030Z Ended : Fri, Mar 27, 2026 15:20:29 +2026-03-27T14:20:29.6341483Z +2026-03-27T14:20:29.6345018Z Result : No files were found +2026-03-27T14:20:29.6578057Z ##[endgroup] +2026-03-27T14:20:29.6651105Z ##[error][-] Context Unity Xbox Crash Tests.Crash Capture failed +2026-03-27T14:20:29.6660039Z ##[group]Message +2026-03-27T14:20:29.6665019Z RuntimeException: Failed to retrieve Xbox log file (unity-integration-test.log). See directory diagnostics above. +2026-03-27T14:20:29.6670804Z at Get-XboxLogOutput, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:203 +2026-03-27T14:20:29.6676236Z at Invoke-TestAction, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:290 +2026-03-27T14:20:29.6681727Z at , C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:500 +2026-03-27T14:20:29.6686652Z ##[endgroup] +2026-03-27T14:20:30.0116687Z Tests completed in 889.69s +2026-03-27T14:20:30.0225453Z Tests Passed: 0, Failed: 57, Skipped: 0, Inconclusive: 0, NotRun: 0 +2026-03-27T14:20:30.0235613Z BeforeAll \ AfterAll failed: 3 +2026-03-27T14:20:30.0251112Z  - Unity Xbox Integration Tests.Message Capture +2026-03-27T14:20:30.0251549Z  - Unity Xbox Integration Tests.Exception Capture +2026-03-27T14:20:30.0251973Z  - Unity Xbox Crash Tests.Crash Capture +2026-03-27T14:20:30.1496835Z InvalidResult: C:\github_runners\vie_runner_0\_work\_temp\d083afdb-9116-43fc-9a4d-8c4674b16343.ps1 +2026-03-27T14:20:30.1497413Z Line | +2026-03-27T14:20:30.1497791Z  4 | $result.FailedCount | Should -Be 0 +2026-03-27T14:20:30.1498325Z  | Expected 0, but got 57. +2026-03-27T14:20:30.1818678Z ##[error]Process completed with exit code 1. +2026-03-27T14:20:30.2377035Z ##[group]Run try { +2026-03-27T14:20:30.2377344Z try { +2026-03-27T14:20:30.2377566Z  . modules/app-runner/import-modules.ps1 +2026-03-27T14:20:30.2378072Z  # Reconnect — the Pester AfterAll block already called Disconnect-Device +2026-03-27T14:20:30.2378576Z  Connect-Device -Platform Xbox -Target $env:XBCONNECT_TARGET +2026-03-27T14:20:30.2379229Z  Get-DeviceDiagnostics -OutputDirectory "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/diagnostics" +2026-03-27T14:20:30.2379790Z  Disconnect-Device +2026-03-27T14:20:30.2380011Z } catch { +2026-03-27T14:20:30.2380261Z  Write-Warning "Failed to collect diagnostics: $_" +2026-03-27T14:20:30.2380549Z } +2026-03-27T14:20:30.2468122Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" +2026-03-27T14:20:30.2468457Z env: +2026-03-27T14:20:30.2468808Z GH_TOKEN: *** +2026-03-27T14:20:30.2469002Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T14:20:30.2469269Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T14:20:30.2469561Z GDK_VERSION: 250400 +2026-03-27T14:20:30.2469948Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T14:20:30.2470575Z SENTRY_AUTH_TOKEN: *** +2026-03-27T14:20:30.2470762Z XBCONNECT_TARGET: 10.2.1.54 +2026-03-27T14:20:30.2470953Z ##[endgroup] +2026-03-27T14:20:52.5161478Z ##[error]The operation was canceled. +2026-03-27T14:20:52.7113632Z ##[group]Run actions/upload-artifact@v4 +2026-03-27T14:20:52.7114055Z with: +2026-03-27T14:20:52.7114261Z name: unity-integration-test-outputs +2026-03-27T14:20:52.7114641Z path: sentry-unity/test/IntegrationTest/results/ +diagnostics/ + +2026-03-27T14:20:52.7115005Z if-no-files-found: warn +2026-03-27T14:20:52.7116040Z compression-level: 6 +2026-03-27T14:20:52.7116242Z overwrite: false +2026-03-27T14:20:52.7116448Z include-hidden-files: false +2026-03-27T14:20:52.7116669Z env: +2026-03-27T14:20:52.7117027Z GH_TOKEN: *** +2026-03-27T14:20:52.7117219Z UNITY_VERSION: 6000.3.8f1 +2026-03-27T14:20:52.7117534Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor +2026-03-27T14:20:52.7117869Z GDK_VERSION: 250400 +2026-03-27T14:20:52.7118315Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 +2026-03-27T14:20:52.7119069Z SENTRY_AUTH_TOKEN: *** +2026-03-27T14:20:52.7119321Z XBCONNECT_TARGET: 10.2.1.54 +2026-03-27T14:20:52.7119543Z ##[endgroup] +2026-03-27T14:20:53.4427912Z Multiple search paths detected. Calculating the least common ancestor of all paths +2026-03-27T14:20:53.4450361Z The least common ancestor is C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox. This will be the root directory of the artifact +2026-03-27T14:20:53.4451415Z With the provided path, there will be 72 files uploaded +2026-03-27T14:20:53.4458129Z Artifact name is valid! +2026-03-27T14:20:53.4458390Z Root directory input is valid! +2026-03-27T14:20:53.9409393Z Beginning upload of artifact content to blob storage +2026-03-27T14:20:55.3112871Z Uploaded bytes 1120306 +2026-03-27T14:20:55.4238671Z Finished uploading artifact content to blob storage! +2026-03-27T14:20:55.4249527Z SHA256 digest of uploaded artifact zip is 7738b2868aca3c1321027d1e13fd8974ac097ad66753f2d5ef5e7237e9cae02e +2026-03-27T14:20:55.4251318Z Finalizing artifact upload +2026-03-27T14:20:55.8578333Z Artifact unity-integration-test-outputs.zip successfully finalized. Artifact ID 6145552815 +2026-03-27T14:20:55.8581150Z Artifact unity-integration-test-outputs has been successfully uploaded! Final size is 1120306 bytes. Artifact ID is 6145552815 +2026-03-27T14:20:55.8583053Z Artifact download URL: https://github.com/getsentry/sentry-xbox/actions/runs/23649555595/artifacts/6145552815 +2026-03-27T14:20:55.9991257Z Post job cleanup. +2026-03-27T14:20:56.2891467Z [command]"C:\Program Files\Git\cmd\git.exe" version +2026-03-27T14:20:56.4050948Z git version 2.51.1.windows.1 +2026-03-27T14:20:56.4165069Z Temporarily overriding HOME='C:\github_runners\vie_runner_0\_work\_temp\7ac2f467-70cc-4660-9017-7dad8f3fbff0' before making global git config changes +2026-03-27T14:20:56.4177599Z Adding repository directory to the temporary git global config as a safe directory +2026-03-27T14:20:56.4178544Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity +2026-03-27T14:20:56.5451268Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand +2026-03-27T14:20:56.6788646Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" +2026-03-27T14:20:58.6884556Z Entering 'modules/app-runner' +2026-03-27T14:20:59.0287953Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2026-03-27T14:20:59.1301694Z http.https://github.com/.extraheader +2026-03-27T14:20:59.1368180Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader +2026-03-27T14:20:59.2455906Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" +2026-03-27T14:21:01.1460475Z Entering 'modules/app-runner' +2026-03-27T14:21:01.4915931Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir: +2026-03-27T14:21:01.6047745Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url" +2026-03-27T14:21:03.5057881Z Entering 'modules/app-runner' +2026-03-27T14:21:03.6496340Z file:C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/.git/modules/modules/app-runner/config remote.origin.url +2026-03-27T14:21:03.7188516Z [command]"C:\Program Files\Git\cmd\git.exe" config --file C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/.git/modules/modules/app-runner/config --name-only --get-regexp ^includeIf\.gitdir: +2026-03-27T14:21:03.9439295Z Post job cleanup. +2026-03-27T14:21:04.2261467Z [command]"C:\Program Files\Git\cmd\git.exe" version +2026-03-27T14:21:04.3249228Z git version 2.51.1.windows.1 +2026-03-27T14:21:04.3345067Z Temporarily overriding HOME='C:\github_runners\vie_runner_0\_work\_temp\07d91ca4-cfb6-4408-ae1b-9075aca3a7ea' before making global git config changes +2026-03-27T14:21:04.3345863Z Adding repository directory to the temporary git global config as a safe directory +2026-03-27T14:21:04.3354948Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-xbox +2026-03-27T14:21:04.4445953Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand +2026-03-27T14:21:04.5507748Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" +2026-03-27T14:21:06.4911146Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2026-03-27T14:21:06.5925243Z http.https://github.com/.extraheader +2026-03-27T14:21:06.5987071Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader +2026-03-27T14:21:06.7086226Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" +2026-03-27T14:21:08.6161209Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir: +2026-03-27T14:21:08.7220316Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url" +2026-03-27T14:21:10.6195509Z Cleaning up orphan processes +2026-03-27T14:21:10.6669780Z ##[warning]Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5, actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093, actions/upload-artifact@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ From a82d49c43ae94ec4e7c5cd0b65943a3468abb2e8 Mon Sep 17 00:00:00 2001 From: bitsandfoxes Date: Tue, 31 Mar 2026 12:26:04 +0200 Subject: [PATCH 3/4] upsi --- test/IntegrationTest/XBOX_LOG_RETRIEVAL.md | 68 - xbox.log | 9390 -------------------- 2 files changed, 9458 deletions(-) delete mode 100644 test/IntegrationTest/XBOX_LOG_RETRIEVAL.md delete mode 100644 xbox.log diff --git a/test/IntegrationTest/XBOX_LOG_RETRIEVAL.md b/test/IntegrationTest/XBOX_LOG_RETRIEVAL.md deleted file mode 100644 index ca22ed0af..000000000 --- a/test/IntegrationTest/XBOX_LOG_RETRIEVAL.md +++ /dev/null @@ -1,68 +0,0 @@ -# Xbox Integration Test Log Retrieval — Status - -## Problem -Xbox master (non-development) builds suppress all `Debug.Log` output. The integration tests parse app output for `EVENT_CAPTURED:` lines, so they get nothing and fail. - -## What we built -- **`Logger.cs`** — Static helper that writes to both `Debug.Log` and an optional file via `StreamWriter` with `AutoFlush`. Throws on `Open()` failure (no silent swallowing). -- **`IntegrationTester.cs`** — All `Debug.Log` calls replaced with `Logger.Log`. On `UNITY_GAMECORE`, tries candidate paths in order: `D:\Logs\`, `persistentDataPath`, `temporaryCachePath`, `D:\` root. Writes a breadcrumb file (`D:\Logs\unity-integration-test-path.txt`) with the path that succeeded. On total failure, writes diagnostic info to `D:\unity-integration-test-diag.txt` before crashing. -- **`Integration.Tests.ps1`** — `Get-XboxLogOutput` function: checks for breadcrumb file first, then tries candidate xbcopy paths (D:\Logs first), then retrieves diagnostic/crash files and dumps directory listings. - -## What we learned from CI runs - -### Run 1 (single path, `persistentDataPath` only) -- App exited with code 1 — `Application.persistentDataPath` is not writable in packaged master builds. -- `xbdir.exe` doesn't exist in the GDK installation. - -### Run 2 (fallback path logic added) -- App exited with code 0 — one of the 4 candidate paths succeeded. -- `D:\DevelopmentFiles\\LocalState` and `AC\LocalState` don't exist (0x80070002). -- `D:\Logs` exists (xbcopy didn't error) but the log file wasn't in it — the app probably didn't write there. -- `T:\` has a 1.5GB locked file (pagefile?) — error 0x80070020. Our log file wasn't visible there either. -- `xbcopy.exe` not found when called directly — needs full path via `$env:GameDK`. -- **We don't know which candidate path the app actually used.** The breadcrumb file mechanism was added after this run. - -### Run 3 (breadcrumb + diagnostics + 4 candidates: persistentDataPath, temporaryCachePath, D:\Logs\, T:\) -- **message-capture exited with code 1** — all 4 candidate paths failed, app threw `IOException`. -- **exception-capture and crash-capture** ran without exit-code-1 warning but still produced no log file. -- `D:\FullException.dmp` (94KB) and `D:\FullExceptionLogFile.txt` (44 bytes) present on `D:\` — crash dump from our `IOException` throw. -- `D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\` — **does not exist** (0x80070002). No subdirectories exist either (LocalState, AC, TempState all 0x80070002). -- `D:\DevelopmentFiles\` — exists but is **completely empty** (0 files). -- `D:\Logs\` — exists and has 12 files from other apps (`SentryPlayground*.log`, `SentryTower.log`) but **no `unity-integration-test.log`**. This means even though `D:\Logs\` is the 3rd candidate, the app crashes before reaching it (the first two candidates fail in a way that either hard-crashes or throws). -- `T:\` — 1 file (1.5GB pagefile), locked (0x80070020). -- `S:\` — exists but empty. -- `D:\` root — has `FullException.dmp`, `FullExceptionLogFile.txt`, `latest_stderr.txt` (0 bytes), `latest_stdout.txt` (0 bytes), and an old Unreal dump. -- No breadcrumb file was found. -- **Conclusion**: The app crashes attempting to write to the first candidates. `D:\Logs\` was never tried because of the crash. The fix is to try `D:\Logs\` first (known writable path) and also add `D:\` root as a fallback. - -## Changes made after Run 3 -1. **Reordered C# candidates**: `D:\Logs\` first, then `persistentDataPath`, `temporaryCachePath`, then `D:\` root (removed `T:\` — pagefile only). -2. **Safe access to Unity paths**: Wrapped `Application.persistentDataPath`/`temporaryCachePath` in try-catch in case they throw. -3. **Diagnostic file on failure**: App writes `D:\unity-integration-test-diag.txt` with error details before crashing, so the PS harness can read it. -4. **PS-side improvements**: Reordered candidate dirs to match C# order. Added retrieval of `D:\unity-integration-test-diag.txt` and `D:\FullExceptionLogFile.txt` on failure. Removed `T:\` from candidates. - -## Next steps -1. **Push and run CI.** With `D:\Logs\` as the first candidate, the app should succeed in opening the log file there (other apps like SentryPlayground write there successfully). -2. **If `D:\Logs\` also fails for our app** (permission is per-app in master builds), the diagnostic file at `D:\unity-integration-test-diag.txt` will reveal the exact error for each candidate. -3. **If `D:\` root works but `D:\Logs\` doesn't**, we'll know from the diagnostic file and can switch the primary candidate. -4. **If nothing works**, we may need to switch to a development build subtarget or use the Windows Device Portal REST API. - -## Key files -- `test/Scripts.Integration.Test/Scripts/Logger.cs` — File-based logger -- `test/Scripts.Integration.Test/Scripts/IntegrationTester.cs` — Test app entry point -- `test/IntegrationTest/Integration.Tests.ps1` — Test harness (Get-XboxLogOutput, Invoke-XboxDirListing) -- `modules/app-runner/app-runner/Private/DeviceProviders/XboxProvider.ps1` — Xbox device provider (CopyDeviceItem uses xbcopy) - -## Key facts -- Package family name format: `IntegrationTest6000.3.8f1_8wekyb3d8bbwe` -- AUMID format: `IntegrationTest6000.3.8f1_8wekyb3d8bbwe!Game` -- GDK tools at: `C:\Program Files (x86)\Microsoft GDK\bin\` (resolved via `$env:GameDK`) -- `xbcopy` prefix `x` means Xbox device path (e.g., `xD:\Logs`) -- `xbcopy /mirror` copies directory contents, shows file count even on failure -- `xbdir.exe` does NOT exist in this GDK version -- Build is master subtarget (set in `Builder.cs` via `SetXboxSubtargetToMaster()`) -- `D:\DevelopmentFiles\\` does NOT exist for master builds (no sandbox storage) -- `D:\Logs\` is writable by other apps (SentryPlayground, SentryTower) — 12 log files present -- `D:\` root is writable (crash dumps land there: FullException.dmp, FullExceptionLogFile.txt) -- `T:\` only has a locked 1.5GB pagefile — not usable -- `S:\` exists but is empty diff --git a/xbox.log b/xbox.log deleted file mode 100644 index 9691f9064..000000000 --- a/xbox.log +++ /dev/null @@ -1,9390 +0,0 @@ -2026-03-27T13:57:13.9273088Z Current runner version: '2.333.0' -2026-03-27T13:57:13.9284494Z Runner name: 'win-consoles-vie-0' -2026-03-27T13:57:13.9285274Z Runner group name: 'team-gdx' -2026-03-27T13:57:13.9288425Z Machine name: 'GDX-T1' -2026-03-27T13:57:13.9294746Z ##[group]GITHUB_TOKEN Permissions -2026-03-27T13:57:13.9297712Z Actions: write -2026-03-27T13:57:13.9298255Z ArtifactMetadata: write -2026-03-27T13:57:13.9298888Z Attestations: write -2026-03-27T13:57:13.9299446Z Checks: write -2026-03-27T13:57:13.9299899Z Contents: write -2026-03-27T13:57:13.9300440Z Deployments: write -2026-03-27T13:57:13.9300898Z Discussions: write -2026-03-27T13:57:13.9301358Z Issues: write -2026-03-27T13:57:13.9301846Z Metadata: read -2026-03-27T13:57:13.9302269Z Models: read -2026-03-27T13:57:13.9302711Z Packages: write -2026-03-27T13:57:13.9303172Z Pages: write -2026-03-27T13:57:13.9303635Z PullRequests: write -2026-03-27T13:57:13.9304113Z RepositoryProjects: write -2026-03-27T13:57:13.9304650Z SecurityEvents: write -2026-03-27T13:57:13.9307092Z Statuses: write -2026-03-27T13:57:13.9307787Z ##[endgroup] -2026-03-27T13:57:13.9310560Z Secret source: Actions -2026-03-27T13:57:13.9311231Z Prepare workflow directory -2026-03-27T13:57:14.5450512Z Prepare all required actions -2026-03-27T13:57:14.5492238Z Getting action download info -2026-03-27T13:57:15.2234038Z Download action repository 'actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5) -2026-03-27T13:57:17.4613248Z Download action repository 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) -2026-03-27T13:57:20.5163572Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) -2026-03-27T13:57:25.8620404Z Complete job name: unity integration test -2026-03-27T13:57:26.8153292Z ##[group]Run actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 -2026-03-27T13:57:26.8154627Z with: -2026-03-27T13:57:26.8154848Z path: sentry-xbox -2026-03-27T13:57:26.8155475Z repository: getsentry/sentry-xbox -2026-03-27T13:57:26.8156013Z token: *** -2026-03-27T13:57:26.8156224Z ssh-strict: true -2026-03-27T13:57:26.8156450Z ssh-user: git -2026-03-27T13:57:26.8156776Z persist-credentials: true -2026-03-27T13:57:26.8157034Z clean: true -2026-03-27T13:57:26.8157283Z sparse-checkout-cone-mode: true -2026-03-27T13:57:26.8157559Z fetch-depth: 1 -2026-03-27T13:57:26.8157786Z fetch-tags: false -2026-03-27T13:57:26.8158366Z show-progress: true -2026-03-27T13:57:26.8158606Z lfs: false -2026-03-27T13:57:26.8158817Z submodules: false -2026-03-27T13:57:26.8159562Z set-safe-directory: true -2026-03-27T13:57:26.8160270Z env: -2026-03-27T13:57:26.8160650Z GH_TOKEN: *** -2026-03-27T13:57:26.8160875Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T13:57:26.8161239Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T13:57:26.8161591Z GDK_VERSION: 250400 -2026-03-27T13:57:26.8162041Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T13:57:26.8162746Z SENTRY_AUTH_TOKEN: *** -2026-03-27T13:57:26.8162984Z ##[endgroup] -2026-03-27T13:57:27.5870775Z Syncing repository: getsentry/sentry-xbox -2026-03-27T13:57:27.5872810Z ##[group]Getting Git version info -2026-03-27T13:57:27.5873358Z Working directory is 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-xbox' -2026-03-27T13:57:27.6422525Z [command]"C:\Program Files\Git\cmd\git.exe" version -2026-03-27T13:57:27.7679205Z git version 2.51.1.windows.1 -2026-03-27T13:57:27.7756902Z ##[endgroup] -2026-03-27T13:57:27.7919089Z Temporarily overriding HOME='C:\github_runners\vie_runner_0\_work\_temp\299581c2-640b-4401-89d6-f6e032e9c61c' before making global git config changes -2026-03-27T13:57:27.7920068Z Adding repository directory to the temporary git global config as a safe directory -2026-03-27T13:57:27.7921811Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-xbox -2026-03-27T13:57:27.9623963Z ##[group]Initializing the repository -2026-03-27T13:57:27.9634025Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-xbox -2026-03-27T13:57:28.9501591Z Initialized empty Git repository in C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-xbox/.git/ -2026-03-27T13:57:28.9573280Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/getsentry/sentry-xbox -2026-03-27T13:57:29.2322735Z ##[endgroup] -2026-03-27T13:57:29.2323138Z ##[group]Disabling automatic garbage collection -2026-03-27T13:57:29.2337873Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 -2026-03-27T13:57:29.3617662Z ##[endgroup] -2026-03-27T13:57:29.3618062Z ##[group]Setting up auth -2026-03-27T13:57:29.3828270Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand -2026-03-27T13:57:29.4996427Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" -2026-03-27T13:57:31.9792049Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2026-03-27T13:57:32.1825798Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" -2026-03-27T13:57:35.7719825Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir: -2026-03-27T13:57:35.9516927Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url" -2026-03-27T13:57:39.7010808Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" -2026-03-27T13:57:39.9337015Z ##[endgroup] -2026-03-27T13:57:39.9337911Z ##[group]Fetching the repository -2026-03-27T13:57:39.9338863Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +08a86477d158c8e10e0a84ab6f7da38218ea7332:refs/remotes/pull/111/merge -2026-03-27T13:57:45.2700951Z From https://github.com/getsentry/sentry-xbox -2026-03-27T13:57:45.2701603Z * [new ref] 08a86477d158c8e10e0a84ab6f7da38218ea7332 -> pull/111/merge -2026-03-27T13:57:45.4199897Z ##[endgroup] -2026-03-27T13:57:45.4362245Z ##[group]Determining the checkout info -2026-03-27T13:57:45.4395185Z ##[endgroup] -2026-03-27T13:57:45.4451727Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable -2026-03-27T13:57:45.6209841Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig -2026-03-27T13:57:45.8847876Z ##[group]Checking out the ref -2026-03-27T13:57:45.8848422Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force refs/remotes/pull/111/merge -2026-03-27T13:57:46.5236285Z Note: switching to 'refs/remotes/pull/111/merge'. -2026-03-27T13:57:46.5278995Z -2026-03-27T13:57:46.5340929Z You are in 'detached HEAD' state. You can look around, make experimental -2026-03-27T13:57:46.5441177Z changes and commit them, and you can discard any commits you make in this -2026-03-27T13:57:46.5441961Z state without impacting any branches by switching back to a branch. -2026-03-27T13:57:46.5547629Z -2026-03-27T13:57:46.5653322Z If you want to create a new branch to retain commits you create, you may -2026-03-27T13:57:46.5654321Z do so (now or later) by using -c with the switch command. Example: -2026-03-27T13:57:46.5917926Z -2026-03-27T13:57:46.5918146Z git switch -c -2026-03-27T13:57:46.6076551Z -2026-03-27T13:57:46.6076851Z Or undo this operation with: -2026-03-27T13:57:46.6153900Z -2026-03-27T13:57:46.6154048Z git switch - -2026-03-27T13:57:46.6154160Z -2026-03-27T13:57:46.6154367Z Turn off this advice by setting config variable advice.detachedHead to false -2026-03-27T13:57:46.6154670Z -2026-03-27T13:57:46.6154999Z HEAD is now at 08a8647 Merge 0cf644ed873e6b70b71101b87debb7098f74e726 into 7e7ea220393cbe1f9c0f55d11e3b8328bfb3b563 -2026-03-27T13:57:46.6156280Z ##[endgroup] -2026-03-27T13:57:46.7464518Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H -2026-03-27T13:57:46.9018226Z 08a86477d158c8e10e0a84ab6f7da38218ea7332 -2026-03-27T13:57:47.2673711Z ##[group]Run actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 -2026-03-27T13:57:47.2674231Z with: -2026-03-27T13:57:47.2674411Z repository: getsentry/sentry-unity -2026-03-27T13:57:47.2674655Z ref: feat/xbox-app-runner -2026-03-27T13:57:47.2674855Z path: sentry-unity -2026-03-27T13:57:47.2675244Z token: *** -2026-03-27T13:57:47.2675413Z ssh-strict: true -2026-03-27T13:57:47.2675572Z ssh-user: git -2026-03-27T13:57:47.2675758Z persist-credentials: true -2026-03-27T13:57:47.2675953Z clean: true -2026-03-27T13:57:47.2676125Z sparse-checkout-cone-mode: true -2026-03-27T13:57:47.2676346Z fetch-depth: 1 -2026-03-27T13:57:47.2676513Z fetch-tags: false -2026-03-27T13:57:47.2676685Z show-progress: true -2026-03-27T13:57:47.2676868Z lfs: false -2026-03-27T13:57:47.2677015Z submodules: false -2026-03-27T13:57:47.2678880Z set-safe-directory: true -2026-03-27T13:57:47.2679143Z env: -2026-03-27T13:57:47.2679493Z GH_TOKEN: *** -2026-03-27T13:57:47.2679740Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T13:57:47.2680046Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T13:57:47.2680388Z GDK_VERSION: 250400 -2026-03-27T13:57:47.2680832Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T13:57:47.2681574Z SENTRY_AUTH_TOKEN: *** -2026-03-27T13:57:47.2681784Z ##[endgroup] -2026-03-27T13:57:47.5531538Z Syncing repository: getsentry/sentry-unity -2026-03-27T13:57:47.5537549Z ##[group]Getting Git version info -2026-03-27T13:57:47.5543342Z Working directory is 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity' -2026-03-27T13:57:47.7241655Z [command]"C:\Program Files\Git\cmd\git.exe" version -2026-03-27T13:57:47.8893181Z git version 2.51.1.windows.1 -2026-03-27T13:57:47.9406795Z ##[endgroup] -2026-03-27T13:57:47.9880311Z Temporarily overriding HOME='C:\github_runners\vie_runner_0\_work\_temp\ff746659-8dfb-470f-8716-dfb061ab196e' before making global git config changes -2026-03-27T13:57:47.9997669Z Adding repository directory to the temporary git global config as a safe directory -2026-03-27T13:57:48.0140907Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity -2026-03-27T13:57:48.1828489Z ##[group]Initializing the repository -2026-03-27T13:57:48.1851524Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity -2026-03-27T13:57:48.3886595Z Initialized empty Git repository in C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/.git/ -2026-03-27T13:57:48.4343459Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/getsentry/sentry-unity -2026-03-27T13:57:48.6771663Z ##[endgroup] -2026-03-27T13:57:48.6962000Z ##[group]Disabling automatic garbage collection -2026-03-27T13:57:48.7186157Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 -2026-03-27T13:57:48.8888206Z ##[endgroup] -2026-03-27T13:57:48.8890397Z ##[group]Setting up auth -2026-03-27T13:57:48.8916443Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand -2026-03-27T13:57:49.1120346Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" -2026-03-27T13:57:52.9206212Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2026-03-27T13:57:53.0631691Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" -2026-03-27T13:57:56.4062359Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir: -2026-03-27T13:57:56.6212639Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url" -2026-03-27T13:58:00.2678652Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" -2026-03-27T13:58:00.4378843Z ##[endgroup] -2026-03-27T13:58:00.4449795Z ##[group]Fetching the repository -2026-03-27T13:58:00.4507420Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/feat/xbox-app-runner*:refs/remotes/origin/feat/xbox-app-runner* +refs/tags/feat/xbox-app-runner*:refs/tags/feat/xbox-app-runner* -2026-03-27T13:58:01.7902199Z From https://github.com/getsentry/sentry-unity -2026-03-27T13:58:01.8050805Z * [new branch] feat/xbox-app-runner -> origin/feat/xbox-app-runner -2026-03-27T13:58:02.1436059Z ##[endgroup] -2026-03-27T13:58:02.1476210Z ##[group]Determining the checkout info -2026-03-27T13:58:02.1570670Z [command]"C:\Program Files\Git\cmd\git.exe" branch --list --remote origin/feat/xbox-app-runner -2026-03-27T13:58:02.3076741Z origin/feat/xbox-app-runner -2026-03-27T13:58:02.3459490Z ##[endgroup] -2026-03-27T13:58:02.3491033Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable -2026-03-27T13:58:02.5672105Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig -2026-03-27T13:58:02.7716201Z ##[group]Checking out the ref -2026-03-27T13:58:02.7819768Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force -B feat/xbox-app-runner refs/remotes/origin/feat/xbox-app-runner -2026-03-27T13:58:03.9099856Z Updating files: 74% (385/518) -2026-03-27T13:58:03.9218271Z Updating files: 75% (389/518) -2026-03-27T13:58:03.9426160Z Updating files: 76% (394/518) -2026-03-27T13:58:03.9731010Z Updating files: 77% (399/518) -2026-03-27T13:58:03.9844809Z Updating files: 78% (405/518) -2026-03-27T13:58:04.0128978Z Updating files: 79% (410/518) -2026-03-27T13:58:04.0185267Z Updating files: 80% (415/518) -2026-03-27T13:58:04.0299035Z Updating files: 81% (420/518) -2026-03-27T13:58:04.0613463Z Updating files: 82% (425/518) -2026-03-27T13:58:04.0803188Z Updating files: 83% (430/518) -2026-03-27T13:58:04.1079608Z Updating files: 84% (436/518) -2026-03-27T13:58:04.1189478Z Updating files: 85% (441/518) -2026-03-27T13:58:04.1330261Z Updating files: 86% (446/518) -2026-03-27T13:58:04.1399543Z Updating files: 87% (451/518) -2026-03-27T13:58:04.1508907Z Updating files: 88% (456/518) -2026-03-27T13:58:04.1672099Z Updating files: 89% (462/518) -2026-03-27T13:58:04.1734675Z Updating files: 90% (467/518) -2026-03-27T13:58:04.1809554Z Updating files: 91% (472/518) -2026-03-27T13:58:04.1901130Z Updating files: 92% (477/518) -2026-03-27T13:58:04.2070151Z Updating files: 93% (482/518) -2026-03-27T13:58:04.2202059Z Updating files: 94% (487/518) -2026-03-27T13:58:04.2247973Z Updating files: 95% (493/518) -2026-03-27T13:58:04.2374688Z Updating files: 96% (498/518) -2026-03-27T13:58:04.2650826Z Updating files: 97% (503/518) -2026-03-27T13:58:04.2802941Z Updating files: 98% (508/518) -2026-03-27T13:58:04.3065717Z Updating files: 99% (513/518) -2026-03-27T13:58:04.3235677Z Updating files: 100% (518/518) -2026-03-27T13:58:04.3671558Z Updating files: 100% (518/518), done. -2026-03-27T13:58:04.4804479Z branch 'feat/xbox-app-runner' set up to track 'origin/feat/xbox-app-runner'. -2026-03-27T13:58:04.5453341Z Switched to a new branch 'feat/xbox-app-runner' -2026-03-27T13:58:04.6214618Z ##[endgroup] -2026-03-27T13:58:04.8711551Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H -2026-03-27T13:58:05.0318086Z a75bf9d1a6776c64909630f73aef98f3b62222aa -2026-03-27T13:58:05.3293409Z ##[group]Run git submodule update --init modules/app-runner -2026-03-27T13:58:05.3294109Z git submodule update --init modules/app-runner -2026-03-27T13:58:05.3504822Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" -2026-03-27T13:58:05.3505168Z env: -2026-03-27T13:58:05.3505698Z GH_TOKEN: *** -2026-03-27T13:58:05.3505880Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T13:58:05.3506184Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T13:58:05.3506516Z GDK_VERSION: 250400 -2026-03-27T13:58:05.3506952Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T13:58:05.3507705Z SENTRY_AUTH_TOKEN: *** -2026-03-27T13:58:05.3507905Z ##[endgroup] -2026-03-27T13:58:10.0321547Z Submodule 'modules/app-runner' (https://github.com/getsentry/app-runner.git) registered for path 'modules/app-runner' -2026-03-27T13:58:12.0145078Z Cloning into 'C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/modules/app-runner'... -2026-03-27T13:58:12.8051870Z Submodule path 'modules/app-runner': checked out '63d8c36b34580b6b2bdac3311594d07e937773b8' -2026-03-27T13:58:13.8391914Z ##[group]Run actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 -2026-03-27T13:58:13.8392438Z with: -2026-03-27T13:58:13.8392596Z name: scarlett-unity -2026-03-27T13:58:13.8392798Z path: sentry-native-xbox-unity -2026-03-27T13:58:13.8393019Z merge-multiple: false -2026-03-27T13:58:13.8393220Z repository: getsentry/sentry-xbox -2026-03-27T13:58:13.8393434Z run-id: 23649555595 -2026-03-27T13:58:13.8393594Z env: -2026-03-27T13:58:13.8393931Z GH_TOKEN: *** -2026-03-27T13:58:13.8394135Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T13:58:13.8394402Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T13:58:13.8394706Z GDK_VERSION: 250400 -2026-03-27T13:58:13.8395101Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T13:58:13.8400007Z SENTRY_AUTH_TOKEN: *** -2026-03-27T13:58:13.8400233Z ##[endgroup] -2026-03-27T13:58:14.3579728Z Downloading single artifact -2026-03-27T13:58:15.1910533Z Preparing to download the following artifacts: -2026-03-27T13:58:15.1912365Z - scarlett-unity (ID: 6145107475, Size: 1009318, Expected Digest: sha256:022784e53ac3d6700c080ab5b9f11de5af145cea35733f5a1f593fb9d0815a5f) -2026-03-27T13:58:15.5128979Z Redirecting to blob download url: https://productionresultssa6.blob.core.windows.net/actions-results/0aefecac-2f94-49e0-9754-1a2f7a895eb1/workflow-job-run-1e8d44c5-8900-5431-a82e-86c040a629d8/artifacts/409696d2567c6234a4de30f87986ffa4406907e87c1bb7c5e93b8a684b95100e.zip -2026-03-27T13:58:15.5161074Z Starting download of artifact to: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-native-xbox-unity -2026-03-27T13:58:16.0099985Z (node:24624) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. -2026-03-27T13:58:16.0129020Z (Use `node --trace-deprecation ...` to show where the warning was created) -2026-03-27T13:58:16.6686720Z SHA256 digest of downloaded artifact is 022784e53ac3d6700c080ab5b9f11de5af145cea35733f5a1f593fb9d0815a5f -2026-03-27T13:58:16.6688997Z Artifact download completed successfully. -2026-03-27T13:58:16.6770618Z Total of 1 artifact(s) downloaded -2026-03-27T13:58:16.6778783Z Download artifact has finished successfully -2026-03-27T13:58:16.8600259Z ##[group]Run # Clean up any existing files/directories from previous runs -2026-03-27T13:58:16.8600934Z # Clean up any existing files/directories from previous runs -2026-03-27T13:58:16.8603378Z if (Test-Path "sentry-unity-package.zip") { -2026-03-27T13:58:16.8603733Z  Remove-Item -Force "sentry-unity-package.zip" -2026-03-27T13:58:16.8604010Z } -2026-03-27T13:58:16.8604209Z if (Test-Path "sentry-unity-package") { -2026-03-27T13:58:16.8604544Z  Remove-Item -Recurse -Force "sentry-unity-package" -2026-03-27T13:58:16.8604845Z } -2026-03-27T13:58:16.8605055Z # Get the latest successful workflow run on main -2026-03-27T13:58:16.8606359Z $runsJson = gh run list --repo getsentry/sentry-unity --branch main --status success --workflow CI --limit 1 --json databaseId,headSha | ConvertFrom-Json -2026-03-27T13:58:16.8607376Z $runId = $runsJson[0].databaseId -2026-03-27T13:58:16.8607769Z Write-Host "Downloading artifact from run $runId" -2026-03-27T13:58:16.8608301Z gh run download $runId --repo getsentry/sentry-unity --name package-release --dir . -2026-03-27T13:58:16.8608916Z Rename-Item "package-release.zip" "sentry-unity-package.zip" -2026-03-27T13:58:16.8610038Z Expand-Archive "sentry-unity-package.zip" -DestinationPath "sentry-unity-package" -Force -2026-03-27T13:58:16.8842833Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" -2026-03-27T13:58:16.8843192Z env: -2026-03-27T13:58:16.8843543Z GH_TOKEN: *** -2026-03-27T13:58:16.8843739Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T13:58:16.8844399Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T13:58:16.8844732Z GDK_VERSION: 250400 -2026-03-27T13:58:16.8846835Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T13:58:16.8847630Z SENTRY_AUTH_TOKEN: *** -2026-03-27T13:58:16.8847852Z ##[endgroup] -2026-03-27T13:58:19.5876243Z Downloading artifact from run 23239042374 -2026-03-27T13:59:33.6326305Z ##[group]Run pwsh ./test/Scripts.Integration.Test/integration-test.ps1 ` -2026-03-27T13:59:33.6327400Z pwsh ./test/Scripts.Integration.Test/integration-test.ps1 ` -2026-03-27T13:59:33.6327796Z  -UnityPath "$env:UNITY_ROOT" ` -2026-03-27T13:59:33.6328073Z  -UnityVersion "$env:UNITY_VERSION" ` -2026-03-27T13:59:33.6328348Z  -Platform "XSX" ` -2026-03-27T13:59:33.6328801Z  -PackagePath "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package" ` -2026-03-27T13:59:33.6329528Z  -NativeSDKPath "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-native-xbox-unity" ` -2026-03-27T13:59:33.6330035Z  -SkipTests ` -2026-03-27T13:59:33.6330229Z  -Rebuild -2026-03-27T13:59:33.6432710Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" -2026-03-27T13:59:33.6433068Z env: -2026-03-27T13:59:33.6433800Z GH_TOKEN: *** -2026-03-27T13:59:33.6434059Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T13:59:33.6434380Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T13:59:33.6434734Z GDK_VERSION: 250400 -2026-03-27T13:59:33.6435186Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T13:59:33.6435945Z SENTRY_AUTH_TOKEN: *** -2026-03-27T13:59:33.6436151Z ##[endgroup] -2026-03-27T13:59:35.1499391Z 14:59:35.145 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -2026-03-27T13:59:35.1556083Z -2026-03-27T13:59:35.1562579Z ================================================================ -2026-03-27T13:59:35.1581703Z CREATING PROJECT -2026-03-27T13:59:35.1586955Z ================================================================ -2026-03-27T13:59:35.1647262Z 14:59:35.162 | Project path: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T13:59:35.2231709Z 14:59:35.222 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -2026-03-27T13:59:35.2255947Z 14:59:35.225 | Creating directory: 'IntegrationTest6000.3.8f1' -2026-03-27T13:59:35.2312490Z 14:59:35.230 | Directory created -2026-03-27T13:59:35.2318809Z 14:59:35.231 | Creating integration project... -2026-03-27T13:59:35.2535171Z ##[group]Run C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -batchmode -createProject C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -quit -logfile unity.log -2026-03-27T13:59:35.2552427Z Removing Unity log unity.log -2026-03-27T13:59:35.5195956Z Waiting for Unity to finish. -2026-03-27T13:59:36.5626615Z 14:59:36.383 | [Licensing::Module] Trying to connect to existing licensing client channel... -2026-03-27T13:59:36.5867183Z 14:59:36.539 | Built from '6000.3/staging' branch; Version is '6000.3.8f1 (1c7db571dde0) revision 1867189'; Using compiler version '194234433'; Build Type 'Release' -2026-03-27T13:59:36.6113026Z 14:59:36.596 | OS: 'Windows 11 (10.0.26200) Professional' Language: 'en' Physical Memory: 16322 MB -2026-03-27T13:59:36.6195603Z 14:59:36.606 | [Licensing::IpcConnector] Channel LicenseClient-github-runner doesn't exist -2026-03-27T13:59:36.6221080Z 14:59:36.621 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1 -2026-03-27T13:59:36.6236810Z 14:59:36.622 | System architecture: x64 -2026-03-27T13:59:36.6543245Z 14:59:36.633 | Process architecture: x64 -2026-03-27T13:59:36.6601151Z 14:59:36.655 | Date: 2026-03-27T13:59:36Z -2026-03-27T13:59:36.6617984Z 14:59:36.660 | [Licensing::Module] Successfully launched the LicensingClient (PId: 42608) -2026-03-27T13:59:37.5609268Z 14:59:37.479 | -2026-03-27T13:59:37.6653277Z 14:59:37.595 | COMMAND LINE ARGUMENTS: -2026-03-27T13:59:37.8354654Z 14:59:37.725 | C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -2026-03-27T13:59:37.9802912Z 14:59:37.856 | -batchmode -2026-03-27T13:59:38.0873487Z 14:59:38.027 | -createProject -2026-03-27T13:59:38.2169306Z 14:59:38.111 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T13:59:38.3584600Z 14:59:38.258 | -quit -2026-03-27T13:59:38.4727234Z 14:59:38.410 | -logfile -2026-03-27T13:59:38.5624492Z 14:59:38.494 | unity.log -2026-03-27T13:59:38.6131838Z 14:59:38.575 | C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T13:59:38.6550939Z 14:59:38.625 | [UnityMemory] Configuration Parameters - Can be set up in boot.config -2026-03-27T13:59:38.6969366Z 14:59:38.670 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" -2026-03-27T13:59:38.7154446Z 14:59:38.703 | "memorysetup-temp-allocator-size-audio-worker=65536" -2026-03-27T13:59:38.7295082Z 14:59:38.717 | "memorysetup-temp-allocator-size-gfx=262144" -2026-03-27T13:59:38.7348661Z 14:59:38.731 | "memorysetup-allocator-temp-initial-block-size-main=262144" -2026-03-27T13:59:38.7552859Z 14:59:38.735 | "memorysetup-allocator-temp-initial-block-size-worker=262144" -2026-03-27T13:59:38.8114797Z 14:59:38.775 | "memorysetup-temp-allocator-size-background-worker=32768" -2026-03-27T13:59:38.8526695Z 14:59:38.821 | "memorysetup-temp-allocator-size-job-worker=262144" -2026-03-27T13:59:38.8880996Z 14:59:38.863 | "memorysetup-temp-allocator-size-preload-manager=33554432" -2026-03-27T13:59:38.9261511Z 14:59:38.902 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T13:59:38.9790748Z 14:59:38.940 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T13:59:39.0027486Z 14:59:38.984 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T13:59:39.0282108Z 14:59:39.022 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T13:59:39.0567040Z 14:59:39.029 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T13:59:39.0652165Z 14:59:39.061 | "memorysetup-bucket-allocator-granularity=16" -2026-03-27T13:59:39.0724467Z 14:59:39.069 | "memorysetup-bucket-allocator-bucket-count=8" -2026-03-27T13:59:39.0790244Z 14:59:39.073 | "memorysetup-bucket-allocator-block-size=33554432" -2026-03-27T13:59:39.0824145Z 14:59:39.079 | "memorysetup-bucket-allocator-block-count=8" -2026-03-27T13:59:39.0928229Z 14:59:39.088 | "memorysetup-main-allocator-block-size=16777216" -2026-03-27T13:59:39.0950316Z 14:59:39.094 | "memorysetup-thread-allocator-block-size=16777216" -2026-03-27T13:59:39.0959035Z 14:59:39.095 | "memorysetup-gfx-main-allocator-block-size=16777216" -2026-03-27T13:59:39.1073976Z 14:59:39.098 | "memorysetup-gfx-thread-allocator-block-size=16777216" -2026-03-27T13:59:39.1092740Z 14:59:39.107 | "memorysetup-cache-allocator-block-size=4194304" -2026-03-27T13:59:39.1157100Z 14:59:39.111 | "memorysetup-typetree-allocator-block-size=2097152" -2026-03-27T13:59:39.1378262Z 14:59:39.122 | "memorysetup-profiler-bucket-allocator-granularity=16" -2026-03-27T13:59:39.1505059Z 14:59:39.143 | "memorysetup-profiler-bucket-allocator-bucket-count=8" -2026-03-27T13:59:39.1548217Z 14:59:39.152 | "memorysetup-profiler-bucket-allocator-block-size=33554432" -2026-03-27T13:59:39.1566629Z 14:59:39.155 | "memorysetup-profiler-bucket-allocator-block-count=8" -2026-03-27T13:59:39.1601670Z 14:59:39.157 | "memorysetup-profiler-allocator-block-size=16777216" -2026-03-27T13:59:39.1631980Z 14:59:39.162 | "memorysetup-profiler-editor-allocator-block-size=1048576" -2026-03-27T13:59:39.1675359Z 14:59:39.164 | "memorysetup-temp-allocator-size-main=16777216" -2026-03-27T13:59:39.1695103Z 14:59:39.168 | "memorysetup-job-temp-allocator-block-size=2097152" -2026-03-27T13:59:39.1712680Z 14:59:39.170 | "memorysetup-job-temp-allocator-block-size-background=1048576" -2026-03-27T13:59:39.1878956Z 14:59:39.171 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" -2026-03-27T13:59:39.1905939Z 14:59:39.188 | "memorysetup-temp-allocator-size-cloud-worker=32768" -2026-03-27T13:59:39.1956144Z 14:59:39.192 | Player connection [35500] Target information: -2026-03-27T13:59:39.1981594Z 14:59:39.196 | -2026-03-27T13:59:39.2019708Z 14:59:39.199 | Player connection [35500] * "[IP] 10.2.1.51 [Port] 55504 [Flags] 2 [Guid] 3576363466 [EditorId] 3576363466 [Version] 1048832 [Id] WindowsEditor(7,GDX-T1) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" -2026-03-27T13:59:39.2064279Z 14:59:39.203 | -2026-03-27T13:59:39.2211425Z 14:59:39.207 | Player connection [35500] Host joined multi-casting on [225.0.0.222:54997]... -2026-03-27T13:59:39.2457859Z 14:59:39.231 | Player connection [35500] Host joined alternative multi-casting on [225.0.0.222:34997]... -2026-03-27T13:59:39.2466921Z 14:59:39.246 | Input System module state changed to: Initialized. -2026-03-27T13:59:39.2490627Z 14:59:39.248 | [Physics::Module] Initialized fallback backend. -2026-03-27T13:59:39.2500249Z 14:59:39.249 | [Physics::Module] Id: 0xdecafbad -2026-03-27T13:59:39.2625242Z 14:59:39.257 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner" at "2026-03-27T13:59:37.6710692Z" -2026-03-27T13:59:39.2642645Z 14:59:39.263 | [Package Manager] Connected to IPC stream "Upm-28276" after 0.3 seconds. -2026-03-27T13:59:39.2656115Z 14:59:39.264 | [Licensing::Module] Licensing is not yet initialized. -2026-03-27T13:59:42.5918462Z 14:59:42.537 | [Licensing::Client] Handshaking with LicensingClient: -2026-03-27T13:59:42.6546849Z 14:59:42.605 | Version: 1.17.4+4293ba1 -2026-03-27T13:59:42.7470593Z 14:59:42.687 | Session Id: 8d9d618ae859457f9d2a8835982dc008 -2026-03-27T13:59:42.7754200Z 14:59:42.760 | Correlation Id: 78bd204fafe89efe2b67c2deb7c156dd -2026-03-27T13:59:42.8195628Z 14:59:42.786 | External correlation Id: 8381107155405391938 -2026-03-27T13:59:42.8496555Z 14:59:42.825 | Machine Id: b5cL0vq5etg728hHCfaSnjJzEl4= -2026-03-27T13:59:42.8893239Z 14:59:42.864 | [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-github-runner" (connect: 1.31s, validation: 0.23s, handshake: 4.37s) -2026-03-27T13:59:42.9343904Z 14:59:42.903 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner-notifications" at "2026-03-27T13:59:42.2719249Z" -2026-03-27T13:59:42.9780521Z 14:59:42.943 | [Licensing::Module] Connected to LicensingClient (PId: 42608, launch time: 0.01, total connection time: 5.91s) -2026-03-27T13:59:43.0170869Z 14:59:42.990 | [Licensing::Module] Error: Access token is unavailable; failed to update -2026-03-27T13:59:43.0504151Z 14:59:43.023 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T13:59:43.0700518Z 14:59:43.056 | [Licensing::Module] License group: -2026-03-27T13:59:43.0753211Z 14:59:43.072 | Id: SC-6P43-RKFA-9PYH-ZZ9Q-XXXX -2026-03-27T13:59:43.0760052Z 14:59:43.075 | Product: Unity Pro -2026-03-27T13:59:43.0786577Z 14:59:43.078 | Type: ULF -2026-03-27T13:59:43.0797752Z 14:59:43.079 | Expiration: 2027-03-05T00:00:00Z -2026-03-27T13:59:43.0841803Z 14:59:43.081 | [Licensing::Client] Successfully updated license, isAsync: True, time: 0.04 -2026-03-27T13:59:43.0935790Z 14:59:43.084 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T13:59:43.0944904Z 14:59:43.094 | [Licensing::Module] Licensing Background thread has ended after 6.05s -2026-03-27T13:59:43.0953397Z 14:59:43.094 | [Licensing::Module] Licensing is initialized (took 4.38s). -2026-03-27T13:59:43.0979360Z 14:59:43.095 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T13:59:43.1410985Z 14:59:43.109 | Library Redirect Path: Library/ -2026-03-27T13:59:44.3986059Z 14:59:44.379 | [Physics::Module] Selected backend. -2026-03-27T13:59:44.4375617Z 14:59:44.405 | [Physics::Module] Name: PhysX -2026-03-27T13:59:44.4430015Z 14:59:44.441 | [Physics::Module] Id: 0xf2b8ea05 -2026-03-27T13:59:44.4440762Z 14:59:44.443 | [Physics::Module] SDK Version: 4.1.2 -2026-03-27T13:59:44.4449672Z 14:59:44.444 | [Physics::Module] Integration Version: 1.0.0 -2026-03-27T13:59:44.4477394Z 14:59:44.445 | [Physics::Module] Threading Mode: Multi-Threaded -2026-03-27T13:59:44.4677356Z 14:59:44.455 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -2026-03-27T13:59:44.5014718Z 14:59:44.470 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T13:59:44.5452251Z 14:59:44.512 | Initialize engine version: 6000.3.8f1 (1c7db571dde0) -2026-03-27T13:59:44.5489341Z 14:59:44.547 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Resources/UnitySubsystems -2026-03-27T13:59:44.5624781Z 14:59:44.551 | [Subsystems] Discovering subsystems at path C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets -2026-03-27T13:59:44.5804822Z 14:59:44.564 | GfxDevice: creating device client; kGfxThreadingModeNonThreaded -2026-03-27T13:59:45.0321874Z 14:59:45.001 | Direct3D: -2026-03-27T13:59:45.0606825Z 14:59:45.042 | Version: Direct3D 11.0 [level 11.1] -2026-03-27T13:59:45.0786544Z 14:59:45.070 | Renderer: NVIDIA GeForce GTX 1080 (ID=0x1b80) -2026-03-27T13:59:45.0921712Z 14:59:45.086 | Vendor: NVIDIA -2026-03-27T13:59:45.0939073Z 14:59:45.093 | VRAM: 8059 MB -2026-03-27T13:59:45.0950418Z 14:59:45.094 | Driver: 32.0.15.7716 -2026-03-27T13:59:45.0956310Z 14:59:45.095 | Initialize mono -2026-03-27T13:59:45.0961827Z 14:59:45.095 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed' -2026-03-27T13:59:45.0970423Z 14:59:45.096 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -2026-03-27T13:59:45.1009170Z 14:59:45.098 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/etc' -2026-03-27T13:59:45.1016945Z 14:59:45.101 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56276 -2026-03-27T13:59:45.5170334Z 14:59:45.516 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts -2026-03-27T13:59:45.5178036Z 14:59:45.517 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts -2026-03-27T13:59:45.5305066Z 14:59:45.517 | ImportWorker Server TCP listen port: 0 -2026-03-27T13:59:45.5305474Z 14:59:45.518 | AcceleratorClientConnectionCallback - disconnected - :0 -2026-03-27T13:59:45.5305870Z 14:59:45.519 | Begin MonoManager ReloadAssembly -2026-03-27T13:59:46.3796492Z 14:59:46.355 | Registering precompiled unity dll's ... -2026-03-27T13:59:46.4031226Z 14:59:46.385 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -2026-03-27T13:59:46.4409194Z 14:59:46.411 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T13:59:46.4849879Z 14:59:46.461 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/PS5Player/UnityEditor.PS5.Extensions.dll -2026-03-27T13:59:46.4876281Z 14:59:46.487 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/UnityEditor.GameCoreScarlett.Extensions.dll -2026-03-27T13:59:46.5099816Z 14:59:46.489 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T13:59:46.5431208Z 14:59:46.520 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -2026-03-27T13:59:46.5870152Z 14:59:46.555 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreXboxOneSupport/UnityEditor.GameCoreXboxOne.Extensions.dll -2026-03-27T13:59:46.6448047Z 14:59:46.613 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T13:59:46.7005331Z 14:59:46.675 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -2026-03-27T13:59:46.7645142Z 14:59:46.716 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/Switch/UnityEditor.Switch.Extensions.dll -2026-03-27T13:59:46.8182018Z 14:59:46.776 | Registered in 0.100368 seconds. -2026-03-27T13:59:47.2773227Z 14:59:47.233 | - Loaded All Assemblies, in 1.920 seconds -2026-03-27T13:59:49.3488260Z 14:59:49.347 | Native extension for iOS target not found -2026-03-27T13:59:49.7539291Z 14:59:49.752 | Native extension for Android target not found -2026-03-27T13:59:53.0548190Z 14:59:53.005 | Android Extension - Scanning For ADB Devices 3342 ms -2026-03-27T13:59:53.1294913Z 14:59:53.081 | Native extension for WindowsStandalone target not found -2026-03-27T13:59:54.0580850Z 14:59:53.955 | ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:False -2026-03-27T13:59:54.1675603Z 14:59:54.120 | Mono: successfully reloaded assembly -2026-03-27T13:59:54.1813566Z 14:59:54.179 | - Finished resetting the current domain, in 6.915 seconds -2026-03-27T13:59:54.2103270Z 14:59:54.181 | Domain Reload Profiling: 8824ms -2026-03-27T13:59:54.2665941Z 14:59:54.223 | BeginReloadAssembly (628ms) -2026-03-27T13:59:54.3542111Z 14:59:54.273 | ExecutionOrderSort (0ms) -2026-03-27T13:59:54.3575233Z 14:59:54.355 | DisableScriptedObjects (0ms) -2026-03-27T13:59:54.3579467Z 14:59:54.357 | BackupInstance (0ms) -2026-03-27T13:59:54.3747431Z 14:59:54.363 | ReleaseScriptingObjects (0ms) -2026-03-27T13:59:54.4338909Z 14:59:54.376 | CreateAndSetChildDomain (21ms) -2026-03-27T13:59:54.4368888Z 14:59:54.435 | RebuildCommonClasses (242ms) -2026-03-27T13:59:54.4451976Z 14:59:54.444 | RebuildNativeTypeToScriptingClass (22ms) -2026-03-27T13:59:54.4561003Z 14:59:54.446 | initialDomainReloadingComplete (282ms) -2026-03-27T13:59:54.4571655Z 14:59:54.456 | LoadAllAssembliesAndSetupDomain (730ms) -2026-03-27T13:59:54.4682538Z 14:59:54.465 | LoadAssemblies (623ms) -2026-03-27T13:59:54.4751598Z 14:59:54.468 | RebuildTransferFunctionScriptingTraits (0ms) -2026-03-27T13:59:54.4761908Z 14:59:54.475 | AnalyzeDomain (681ms) -2026-03-27T13:59:54.4800804Z 14:59:54.476 | TypeCache.Refresh (665ms) -2026-03-27T13:59:54.4810061Z 14:59:54.480 | TypeCache.ScanAssembly (591ms) -2026-03-27T13:59:54.4815772Z 14:59:54.481 | BuildScriptInfoCaches (3ms) -2026-03-27T13:59:54.4830156Z 14:59:54.481 | ResolveRequiredComponents (12ms) -2026-03-27T13:59:54.4836539Z 14:59:54.483 | FinalizeReload (6920ms) -2026-03-27T13:59:54.5299340Z 14:59:54.497 | ReleaseScriptCaches (0ms) -2026-03-27T13:59:54.5646712Z 14:59:54.548 | RebuildScriptCaches (0ms) -2026-03-27T13:59:54.6059846Z 14:59:54.586 | SetupLoadedEditorAssemblies (6652ms) -2026-03-27T13:59:54.6427144Z 14:59:54.625 | LogAssemblyErrors (0ms) -2026-03-27T13:59:54.6588908Z 14:59:54.645 | InitializePlatformSupportModulesInManaged (5599ms) -2026-03-27T13:59:54.6607482Z 14:59:54.659 | SetLoadedEditorAssemblies (11ms) -2026-03-27T13:59:54.6975070Z 14:59:54.662 | BeforeProcessingInitializeOnLoad (349ms) -2026-03-27T13:59:54.7410000Z 14:59:54.717 | ProcessInitializeOnLoadAttributes (405ms) -2026-03-27T13:59:54.7424421Z 14:59:54.741 | ProcessInitializeOnLoadMethodAttributes (272ms) -2026-03-27T13:59:54.7440250Z 14:59:54.742 | AfterProcessingInitializeOnLoad (0ms) -2026-03-27T13:59:54.7515741Z 14:59:54.744 | EditorAssembliesLoaded (17ms) -2026-03-27T13:59:54.7555004Z 14:59:54.754 | ExecutionOrderSort2 (0ms) -2026-03-27T13:59:54.7564492Z 14:59:54.755 | AwakeInstancesAfterBackupRestoration (0ms) -2026-03-27T13:59:54.7581129Z 14:59:54.757 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T13:59:54.7619974Z 14:59:54.758 | Application.AssetDatabase Initial Refresh Start -2026-03-27T13:59:54.7643426Z 14:59:54.763 | Package Manager log level set to [2] -2026-03-27T14:00:01.3666305Z 15:00:01.336 | [Package Manager] Done resolving packages in 6.57 seconds -2026-03-27T14:00:01.3971262Z 15:00:01.366 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:00:01.4263293Z 15:00:01.413 | [Package Manager] Lock file was modified -2026-03-27T14:00:01.4302576Z 15:00:01.429 | [Package Manager] Registered 37 packages: -2026-03-27T14:00:01.4311647Z 15:00:01.430 | Built-in packages: -2026-03-27T14:00:01.4527556Z 15:00:01.431 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) -2026-03-27T14:00:01.4591406Z 15:00:01.457 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) -2026-03-27T14:00:01.4772031Z 15:00:01.466 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) -2026-03-27T14:00:01.4817667Z 15:00:01.479 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) -2026-03-27T14:00:01.4828445Z 15:00:01.482 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) -2026-03-27T14:00:01.4854784Z 15:00:01.484 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) -2026-03-27T14:00:01.4860928Z 15:00:01.485 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) -2026-03-27T14:00:01.4870371Z 15:00:01.486 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) -2026-03-27T14:00:01.4878768Z 15:00:01.487 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) -2026-03-27T14:00:01.4885102Z 15:00:01.487 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) -2026-03-27T14:00:01.4892322Z 15:00:01.488 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) -2026-03-27T14:00:01.4898708Z 15:00:01.489 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) -2026-03-27T14:00:01.4916292Z 15:00:01.489 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) -2026-03-27T14:00:01.4925275Z 15:00:01.491 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) -2026-03-27T14:00:01.4968604Z 15:00:01.492 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) -2026-03-27T14:00:01.4987287Z 15:00:01.497 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) -2026-03-27T14:00:01.4996113Z 15:00:01.499 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) -2026-03-27T14:00:01.5014154Z 15:00:01.499 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) -2026-03-27T14:00:01.5025151Z 15:00:01.501 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) -2026-03-27T14:00:01.5064351Z 15:00:01.504 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) -2026-03-27T14:00:01.5074054Z 15:00:01.506 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) -2026-03-27T14:00:01.5228850Z 15:00:01.520 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) -2026-03-27T14:00:01.5255540Z 15:00:01.523 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) -2026-03-27T14:00:01.5262186Z 15:00:01.525 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) -2026-03-27T14:00:01.5349277Z 15:00:01.527 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) -2026-03-27T14:00:01.5357710Z 15:00:01.535 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) -2026-03-27T14:00:01.5364195Z 15:00:01.535 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) -2026-03-27T14:00:01.5370530Z 15:00:01.536 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) -2026-03-27T14:00:01.5378619Z 15:00:01.537 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) -2026-03-27T14:00:01.5383810Z 15:00:01.537 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) -2026-03-27T14:00:01.5421320Z 15:00:01.539 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) -2026-03-27T14:00:01.5447988Z 15:00:01.542 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) -2026-03-27T14:00:01.5456711Z 15:00:01.545 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) -2026-03-27T14:00:01.5493571Z 15:00:01.546 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) -2026-03-27T14:00:01.6143852Z 15:00:01.573 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) -2026-03-27T14:00:01.6647090Z 15:00:01.627 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) -2026-03-27T14:00:01.6827065Z 15:00:01.673 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) -2026-03-27T14:00:01.6842049Z 15:00:01.683 | [Subsystems] No new subsystems found in resolved package list. -2026-03-27T14:00:01.6854915Z 15:00:01.684 | [Package Manager] Done registering packages in 0.01 seconds -2026-03-27T14:00:02.1773766Z 15:00:02.100 | [ScriptCompilation] Requested script compilation because: Assembly Definition File(s) changed -2026-03-27T14:00:02.2818115Z 15:00:02.228 | [ScriptCompilation] Requested script compilation because: Assetdatabase observed changes in script compilation related files -2026-03-27T14:00:10.4704204Z 15:00:10.464 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies -2026-03-27T14:00:10.4860384Z 15:00:10.470 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:00:10.8810869Z 15:00:10.880 | ExitCode: 4 Duration: 0s254ms -2026-03-27T14:00:10.8817361Z 15:00:10.881 | [ ] Require frontend run. Library/Bee/1900b0aE.dag couldn't be loaded -2026-03-27T14:00:10.8824594Z 15:00:10.881 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aE.dag.json" "Library/Bee/1900b0aE-inputdata.json" "Library\Bee\buildprogram0.traceevents" -2026-03-27T14:00:10.8838571Z 15:00:10.882 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:00:10.8845009Z 15:00:10.884 | DisplayProgressbar: Compiling Scripts -2026-03-27T14:00:11.5815281Z 15:00:11.328 | ExitCode: 0 Duration: 0s546ms -2026-03-27T14:00:11.7098451Z 15:00:11.616 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aE.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssemblies -2026-03-27T14:00:11.8581565Z 15:00:11.754 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:00:28.2331000Z 15:00:28.231 | ExitCode: 0 Duration: 16s -2026-03-27T14:00:28.2340573Z 15:00:28.233 | Finished compiling graph: 173 nodes, 662 flattened edges (650 ToBuild, 4 ToUse), maximum node priority 24 -2026-03-27T14:00:28.2348002Z 15:00:28.234 | [ 1/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreBusinessMetricsModule.dll_E21A27DA02306F86.mvfrm -2026-03-27T14:00:28.2355482Z 15:00:28.234 | [ 2/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GameCoreScarlett.Extensions.dll_F4A7534BDA97CAF1.mvfrm -2026-03-27T14:00:28.2363360Z 15:00:28.235 | [ 3/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.BuildProfileModule.dll_DD1299C47967626D.mvfrm -2026-03-27T14:00:28.2394807Z 15:00:28.238 | [ 4/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.rsp2 -2026-03-27T14:00:28.2416973Z 15:00:28.239 | [ 5/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.ClothModule.dll_FC2A22823AFF1EBC.mvfrm -2026-03-27T14:00:28.2425441Z 15:00:28.242 | [ 6/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.UnityAdditionalFile.txt -2026-03-27T14:00:28.2435194Z 15:00:28.243 | [ 7/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_A0BBDD63C9E3A540.mvfrm -2026-03-27T14:00:28.2443961Z 15:00:28.243 | [ 8/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_9380B37B6C377051.mvfrm -2026-03-27T14:00:28.2453659Z 15:00:28.244 | [ 9/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.AdaptivePerformanceModule.dll_622F2E5FDBE9408C.mvfrm -2026-03-27T14:00:28.2460020Z 15:00:28.245 | [ 10/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_D8EE391275F34F5F.mvfrm -2026-03-27T14:00:28.2478542Z 15:00:28.246 | [ 11/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.AssetComplianceModule.dll_D996ED52449F896D.mvfrm -2026-03-27T14:00:28.2509174Z 15:00:28.248 | [ 12/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.AccessibilityModule.dll_2101CCB15D09F9C0.mvfrm -2026-03-27T14:00:28.2528418Z 15:00:28.251 | [ 13/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PS5.Extensions.dll_8011F093C424D413.mvfrm -2026-03-27T14:00:28.2551178Z 15:00:28.253 | [ 14/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Switch.Extensions.dll_3FF47390B0FC50A2.mvfrm -2026-03-27T14:00:28.2566666Z 15:00:28.255 | [ 15/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Apple.Extensions.Common.dll_04B90D04B25EB793.mvfrm -2026-03-27T14:00:28.2587224Z 15:00:28.257 | [ 16/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_927379A469FD0C4F.mvfrm -2026-03-27T14:00:28.2596608Z 15:00:28.259 | [ 17/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_DA06E52628C686F6.mvfrm -2026-03-27T14:00:28.2604945Z 15:00:28.260 | [ 18/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_C4E82CD9831320B6.mvfrm -2026-03-27T14:00:28.2617318Z 15:00:28.261 | [ 19/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GameCoreXboxOne.Extensions.dll_638DA3CED7C5E5FF.mvfrm -2026-03-27T14:00:28.2643717Z 15:00:28.262 | [ 20/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GameCoreCommon.Extensions.dll_1B9A37E1ED5A7323.mvfrm -2026-03-27T14:00:28.2704810Z 15:00:28.264 | [ 21/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_06B3EB7A9BA2FC99.mvfrm -2026-03-27T14:00:28.2713677Z 15:00:28.270 | [ 22/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_C5AC2B4998D34832.mvfrm -2026-03-27T14:00:28.2721298Z 15:00:28.271 | [ 23/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GameCoreCommon.Extensions.dll_0594060EF370E380.mvfrm -2026-03-27T14:00:28.2730095Z 15:00:28.272 | [ 24/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_DCEF41A0891B9C93.mvfrm -2026-03-27T14:00:28.2740082Z 15:00:28.273 | [ 25/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_5B39CF6EEF02B707.mvfrm -2026-03-27T14:00:28.2749207Z 15:00:28.274 | [ 26/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_6DA9E512A736E2B9.mvfrm -2026-03-27T14:00:28.2756872Z 15:00:28.275 | [ 27/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_2CF061F6A57359E5.mvfrm -2026-03-27T14:00:28.2765435Z 15:00:28.276 | [ 28/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_0EECEC018EDFE31A.mvfrm -2026-03-27T14:00:28.2774066Z 15:00:28.276 | [ 29/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_287B0C6A65C869A9.mvfrm -2026-03-27T14:00:28.2816022Z 15:00:28.277 | [ 30/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_1170F6C08A478BAF.mvfrm -2026-03-27T14:00:28.2826417Z 15:00:28.281 | [ 31/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_8078065654F18C22.mvfrm -2026-03-27T14:00:28.2864564Z 15:00:28.283 | [ 32/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_230CD006839DF834.mvfrm -2026-03-27T14:00:28.2877289Z 15:00:28.286 | [ 33/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_8724304CC7930704.mvfrm -2026-03-27T14:00:28.2902398Z 15:00:28.288 | [ 34/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_DC3FF8EA9FF6B508.mvfrm -2026-03-27T14:00:28.2954417Z 15:00:28.292 | [ 35/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VectorGraphicsModule.dll_D4553C972935766B.mvfrm -2026-03-27T14:00:28.2983879Z 15:00:28.297 | [ 36/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_23F9A52FC6B80537.mvfrm -2026-03-27T14:00:28.2992611Z 15:00:28.298 | [ 37/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_63A8EA84F601B6D3.mvfrm -2026-03-27T14:00:28.3007263Z 15:00:28.299 | [ 38/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_203D9879758FDB6F.mvfrm -2026-03-27T14:00:28.3019574Z 15:00:28.301 | [ 39/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConsentModule.dll_9751C275A5DDDE82.mvfrm -2026-03-27T14:00:28.3031466Z 15:00:28.302 | [ 40/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_F0837ECFEE906983.mvfrm -2026-03-27T14:00:28.3048735Z 15:00:28.304 | [ 41/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_86EB53EA897F8A99.mvfrm -2026-03-27T14:00:28.3070510Z 15:00:28.305 | [ 42/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_D6432E041F861BF0.mvfrm -2026-03-27T14:00:28.3104342Z 15:00:28.307 | [ 43/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_97DA26EC36CE0C38.mvfrm -2026-03-27T14:00:28.3114570Z 15:00:28.310 | [ 44/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_5CAD772C4356521E.mvfrm -2026-03-27T14:00:28.3167391Z 15:00:28.311 | [ 45/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_9BC8E32174C0E6E5.mvfrm -2026-03-27T14:00:28.3186647Z 15:00:28.317 | [ 46/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_90925E51B3DA2242.mvfrm -2026-03-27T14:00:28.3204302Z 15:00:28.319 | [ 47/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_508167A4A0E189C6.mvfrm -2026-03-27T14:00:28.3238716Z 15:00:28.322 | [ 48/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_D5A8E5E4C40DE431.mvfrm -2026-03-27T14:00:28.3268643Z 15:00:28.324 | [ 49/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_6A6A02C4573C9138.mvfrm -2026-03-27T14:00:28.3315781Z 15:00:28.328 | [ 50/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_BC61EAF0D7D34A98.mvfrm -2026-03-27T14:00:28.3328117Z 15:00:28.332 | [ 51/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_7479B47F484F917A.mvfrm -2026-03-27T14:00:28.3335209Z 15:00:28.333 | [ 52/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_662BA15C54105541.mvfrm -2026-03-27T14:00:28.3343088Z 15:00:28.333 | [ 53/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_F5FD87546194CF97.mvfrm -2026-03-27T14:00:28.3369761Z 15:00:28.334 | [ 54/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_FCCC7BA05D0405DC.mvfrm -2026-03-27T14:00:28.3464791Z 15:00:28.339 | [ 55/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_3D88AF35B071FAAF.mvfrm -2026-03-27T14:00:28.3493937Z 15:00:28.347 | [ 56/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_1952730B1641D189.mvfrm -2026-03-27T14:00:28.3501330Z 15:00:28.349 | [ 57/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_CB95967F4EE870E3.mvfrm -2026-03-27T14:00:28.3509150Z 15:00:28.350 | [ 58/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_FB7E3AFA85C86D2E.mvfrm -2026-03-27T14:00:28.3517278Z 15:00:28.351 | [ 59/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_966BDC5B32F16608.mvfrm -2026-03-27T14:00:28.3530348Z 15:00:28.352 | [ 60/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ShaderVariantAnalyticsModule.dll_9CFA169B4BC2F083.mvfrm -2026-03-27T14:00:28.3539006Z 15:00:28.353 | [ 61/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ShaderRuntimeModule.dll_3D1A68072605E75A.mvfrm -2026-03-27T14:00:28.3546291Z 15:00:28.354 | [ 62/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_2741F599E9AA09D1.mvfrm -2026-03-27T14:00:28.3594396Z 15:00:28.355 | [ 63/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_39B8C30AFC8042A9.mvfrm -2026-03-27T14:00:28.3630846Z 15:00:28.360 | [ 64/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RenderAs2DModule.dll_80C4CA2EB69E8627.mvfrm -2026-03-27T14:00:28.3651607Z 15:00:28.364 | [ 65/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_3F8D07A8D7443BF0.mvfrm -2026-03-27T14:00:28.3658686Z 15:00:28.365 | [ 66/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_E28600318745BCEE.mvfrm -2026-03-27T14:00:28.3666119Z 15:00:28.366 | [ 67/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsBackendPhysXModule.dll_FCD2AAA2F9EAD650.mvfrm -2026-03-27T14:00:28.3673388Z 15:00:28.366 | [ 68/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_EBAC96A66F96EC3B.mvfrm -2026-03-27T14:00:28.3680686Z 15:00:28.367 | [ 69/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_B16375AB67B711E0.mvfrm -2026-03-27T14:00:28.3689066Z 15:00:28.368 | [ 70/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_3D0E0662972F0022.mvfrm -2026-03-27T14:00:28.3695979Z 15:00:28.369 | [ 71/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_5A9D07B97D6E662B.mvfrm -2026-03-27T14:00:28.3733394Z 15:00:28.369 | [ 72/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MultiplayerModule.dll_31DC85B1520DC651.mvfrm -2026-03-27T14:00:28.3745232Z 15:00:28.373 | [ 73/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_9635E6A2E74F0D46.mvfrm -2026-03-27T14:00:28.3759822Z 15:00:28.375 | [ 74/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InsightsModule.dll_45109F1793F17818.mvfrm -2026-03-27T14:00:28.3768189Z 15:00:28.376 | [ 75/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_0D5A4814D53DDD6F.mvfrm -2026-03-27T14:00:28.3781401Z 15:00:28.377 | [ 76/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_C1E4499C08979521.mvfrm -2026-03-27T14:00:28.3789339Z 15:00:28.378 | [ 77/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_437984433137EECA.mvfrm -2026-03-27T14:00:28.3796170Z 15:00:28.379 | [ 78/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputForUIModule.dll_15042283C4797470.mvfrm -2026-03-27T14:00:28.3804145Z 15:00:28.379 | [ 79/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_93CE21525891045E.mvfrm -2026-03-27T14:00:28.3811528Z 15:00:28.380 | [ 80/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_125A9D85BBC36AB8.mvfrm -2026-03-27T14:00:28.3818852Z 15:00:28.381 | [ 81/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IdentifiersModule.dll_8ABDF11A5BBF06F1.mvfrm -2026-03-27T14:00:28.3825617Z 15:00:28.382 | [ 82/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_E60643C0A1ED35CD.mvfrm -2026-03-27T14:00:28.3832906Z 15:00:28.382 | [ 83/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HierarchyCoreModule.dll_245D5BB344AFD5DB.mvfrm -2026-03-27T14:00:28.3840458Z 15:00:28.383 | [ 84/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_9412A2BC2C917173.mvfrm -2026-03-27T14:00:28.3848871Z 15:00:28.384 | [ 85/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GraphicsStateCollectionSerializerModule.dll_0276CC67F8C7B54D.mvfrm -2026-03-27T14:00:28.3857759Z 15:00:28.385 | [ 86/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_727190C50375C69F.mvfrm -2026-03-27T14:00:28.3892509Z 15:00:28.386 | [ 87/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_1251C86A6458D7B4.mvfrm -2026-03-27T14:00:28.3915450Z 15:00:28.390 | [ 88/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_B09B37F07BD4F9BA.mvfrm -2026-03-27T14:00:28.3923246Z 15:00:28.391 | [ 89/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_C804F5D489567559.mvfrm -2026-03-27T14:00:28.3930940Z 15:00:28.392 | [ 90/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_E9FBBD16291D7494.mvfrm -2026-03-27T14:00:28.3970131Z 15:00:28.393 | [ 91/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_AB49D68709742899.mvfrm -2026-03-27T14:00:28.4009860Z 15:00:28.399 | [ 92/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_A6689FD5399EB2C4.mvfrm -2026-03-27T14:00:28.4039530Z 15:00:28.401 | [ 93/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_4B4AC26567C8E0C6.mvfrm -2026-03-27T14:00:28.4050470Z 15:00:28.404 | [ 94/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_B6A186CE143CDB7C.mvfrm -2026-03-27T14:00:28.4057565Z 15:00:28.405 | [ 95/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_C256DEE66C7C4F61.mvfrm -2026-03-27T14:00:28.4064632Z 15:00:28.406 | [ 96/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_57E91C504FD31A4D.mvfrm -2026-03-27T14:00:28.4071845Z 15:00:28.406 | [ 97/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_5B6E81EB925F707D.mvfrm -2026-03-27T14:00:28.4078465Z 15:00:28.407 | [ 98/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_93A80CBAC4E43D4E.mvfrm -2026-03-27T14:00:28.4086521Z 15:00:28.408 | [ 99/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_B2346924994638D9.mvfrm -2026-03-27T14:00:28.4098975Z 15:00:28.409 | [100/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_64BD85BAC6BA1A4B.mvfrm -2026-03-27T14:00:28.4105829Z 15:00:28.410 | [101/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_E8047E4F9E17E6C3.mvfrm -2026-03-27T14:00:28.4112775Z 15:00:28.410 | [102/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AdaptivePerformanceModule.dll_22BEC316172E9391.mvfrm -2026-03-27T14:00:28.4120796Z 15:00:28.411 | [103/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_DA3547B767C6DE85.mvfrm -2026-03-27T14:00:28.4129350Z 15:00:28.412 | [104/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_AD42BED8D6027CE5.mvfrm -2026-03-27T14:00:28.4139660Z 15:00:28.413 | [105/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.XRModule.dll_1CCB3DDF8385833C.mvfrm -2026-03-27T14:00:28.4146707Z 15:00:28.414 | [106/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.VideoModule.dll_BA4B49F223745B7D.mvfrm -2026-03-27T14:00:28.4153984Z 15:00:28.414 | [107/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.VFXModule.dll_054F546D1A977DAA.mvfrm -2026-03-27T14:00:28.4161292Z 15:00:28.415 | [108/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.VectorGraphicsModule.dll_1930DAFC0D48E260.mvfrm -2026-03-27T14:00:28.4189078Z 15:00:28.416 | [109/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UmbraModule.dll_1016719FEE08EB4B.mvfrm -2026-03-27T14:00:28.4226193Z 15:00:28.420 | [110/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_D84CA73A9E4B4787.mvfrm -2026-03-27T14:00:28.4295745Z 15:00:28.425 | [111/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIToolkitAuthoringModule.dll_2970CDB953D8566F.mvfrm -2026-03-27T14:00:28.4307679Z 15:00:28.429 | [112/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_77EEC9E3BE84E750.mvfrm -2026-03-27T14:00:28.4314041Z 15:00:28.430 | [113/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_69BB957C54F877ED.mvfrm -2026-03-27T14:00:28.4328955Z 15:00:28.431 | [114/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_EAC0B6AE5F15BED9.mvfrm -2026-03-27T14:00:28.4356349Z 15:00:28.434 | [115/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIAutomationModule.dll_8DB388B515DB2B2D.mvfrm -2026-03-27T14:00:28.4370649Z 15:00:28.436 | [116/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TreeModule.dll_F12CA889F3FD0590.mvfrm -2026-03-27T14:00:28.4383220Z 15:00:28.437 | [117/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TilemapModule.dll_A94E2A770FB1FFA0.mvfrm -2026-03-27T14:00:28.4397001Z 15:00:28.438 | [118/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextRenderingModule.dll_C440757D27E906A1.mvfrm -2026-03-27T14:00:28.4405603Z 15:00:28.440 | [119/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_3E026F9DC4D58BCD.mvfrm -2026-03-27T14:00:28.4418269Z 15:00:28.440 | [120/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_F61A392C3551D2AF.mvfrm -2026-03-27T14:00:28.4426185Z 15:00:28.442 | [121/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SubstanceModule.dll_4017966B7C151DB2.mvfrm -2026-03-27T14:00:28.4434308Z 15:00:28.442 | [122/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_0A51C2F5F7F51E97.mvfrm -2026-03-27T14:00:28.4443959Z 15:00:28.443 | [123/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SpriteMaskModule.dll_FACFCDB2838453E3.mvfrm -2026-03-27T14:00:28.4452523Z 15:00:28.444 | [124/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SpriteShapeModule.dll_C5CFC6F03CAE605E.mvfrm -2026-03-27T14:00:28.4460339Z 15:00:28.445 | [125/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SketchUpModule.dll_9847F956D0DAED29.mvfrm -2026-03-27T14:00:28.4467934Z 15:00:28.446 | [126/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.ShaderFoundryModule.dll_B97D2384F83BD1D6.mvfrm -2026-03-27T14:00:28.4474134Z 15:00:28.446 | [127/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.ShaderCompilationModule.dll_83BD2C5BA188DC20.mvfrm -2026-03-27T14:00:28.4490256Z 15:00:28.447 | [128/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.ShaderBuildSettingsModule.dll_6A557508AEE871CE.mvfrm -2026-03-27T14:00:28.4524054Z 15:00:28.451 | [129/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_7A9D5341D58C5548.mvfrm -2026-03-27T14:00:28.4538115Z 15:00:28.452 | [130/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_D4E7EC99E18012B3.mvfrm -2026-03-27T14:00:28.4552698Z 15:00:28.454 | [131/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SafeModeModule.dll_B033140685A95112.mvfrm -2026-03-27T14:00:28.4578848Z 15:00:28.456 | [132/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_3EDE9A60D50022A5.mvfrm -2026-03-27T14:00:28.4614004Z 15:00:28.459 | [133/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_6E4B363336DF83E7.mvfrm -2026-03-27T14:00:28.4652114Z 15:00:28.462 | [134/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_519E4273EEB59DAA.mvfrm -2026-03-27T14:00:28.4719466Z 15:00:28.468 | [135/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Physics2DModule.dll_FB7D84C282375FFB.mvfrm -2026-03-27T14:00:28.4730346Z 15:00:28.472 | [136/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PlayModeModule.dll_F62705C024726079.mvfrm -2026-03-27T14:00:28.4741621Z 15:00:28.473 | [137/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PhysicsModule.dll_F00B47872236D5A9.mvfrm -2026-03-27T14:00:28.4749784Z 15:00:28.474 | [138/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.MultiplayerModule.dll_2C16B6223FD3B5CC.mvfrm -2026-03-27T14:00:28.4760814Z 15:00:28.475 | [139/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.MediaModule.dll_6101DF18DF2EC866.mvfrm -2026-03-27T14:00:28.4771228Z 15:00:28.476 | [140/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.LevelPlayModule.dll_358D918212CF4CEA.mvfrm -2026-03-27T14:00:28.4780008Z 15:00:28.477 | [141/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.InAppPurchasingModule.dll_D6F0E879720C0A6C.mvfrm -2026-03-27T14:00:28.4790224Z 15:00:28.478 | [142/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.HierarchyModule.dll_83AC106DAA3C8467.mvfrm -2026-03-27T14:00:28.4818432Z 15:00:28.480 | [143/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GridModule.dll_70F1CF69848C0648.mvfrm -2026-03-27T14:00:28.4827764Z 15:00:28.482 | [144/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GridAndSnapModule.dll_ECF49BA7616D447D.mvfrm -2026-03-27T14:00:28.4836388Z 15:00:28.483 | [145/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_96380991EC5D45A5.mvfrm -2026-03-27T14:00:28.4844264Z 15:00:28.483 | [146/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphicsStateCollectionSerializerModule.dll_F982FF782BC86BE8.mvfrm -2026-03-27T14:00:28.4853268Z 15:00:28.484 | [147/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll.mvfrm.rsp -2026-03-27T14:00:28.4861919Z 15:00:28.485 | [148/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.rsp -2026-03-27T14:00:28.4870398Z 15:00:28.486 | [149/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_56FDE283D69FAB10.mvfrm -2026-03-27T14:00:28.4878810Z 15:00:28.487 | [150/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GIModule.dll_3402FF3597F892D4.mvfrm -2026-03-27T14:00:28.4888581Z 15:00:28.488 | [151/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.EmbreeModule.dll_6EAE6056F67F7CBA.mvfrm -2026-03-27T14:00:28.4961381Z 15:00:28.491 | [152/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.rsp2 -2026-03-27T14:00:28.4984104Z 15:00:28.496 | [153/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.UnityAdditionalFile.txt -2026-03-27T14:00:28.5019192Z 15:00:28.498 | [154/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll.mvfrm.rsp -2026-03-27T14:00:28.5064840Z 15:00:28.504 | [155/170 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.rsp -2026-03-27T14:00:28.5107309Z 15:00:28.509 | [156/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.dll_9560AEFC2AE2E874.mvfrm -2026-03-27T14:00:28.5116733Z 15:00:28.511 | [157/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_E33BB525DE08878E.mvfrm -2026-03-27T14:00:28.5126203Z 15:00:28.512 | [158/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_C6BF783E541C9768.mvfrm -2026-03-27T14:00:28.5134585Z 15:00:28.512 | [159/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AMDModule.dll_92029AEC8CA9A6EF.mvfrm -2026-03-27T14:00:28.5143864Z 15:00:28.513 | [160/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HierarchyModule.dll_399201568FBC364C.mvfrm -2026-03-27T14:00:28.5151843Z 15:00:28.514 | [161/170 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll.mvfrm -2026-03-27T14:00:28.5160151Z 15:00:28.515 | [161/170 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) [CacheHit 19b455e171463b58c6c2aa304125f0cb00000000000000000000000000000005] -2026-03-27T14:00:28.5172591Z 15:00:28.516 | [162/170 1774620027s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) -2026-03-27T14:00:28.5181733Z 15:00:28.517 | [164/170 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.dll -2026-03-27T14:00:28.5189644Z 15:00:28.518 | [165/170 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.pdb -2026-03-27T14:00:28.5198891Z 15:00:28.519 | [166/170 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Multiplayer.Center.Common.ref.dll_EE36537354EA42C8.mvfrm -2026-03-27T14:00:28.5285058Z 15:00:28.520 | [167/170 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll.mvfrm -2026-03-27T14:00:28.5332393Z 15:00:28.532 | [166/170 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) [CacheHit 47c15b7f6d1fc9c58f5a596b3def36ed00000000000000000000000000000005] -2026-03-27T14:00:28.5342083Z 15:00:28.533 | [168/170 1774620027s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) -2026-03-27T14:00:28.5349951Z 15:00:28.534 | [170/170 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.pdb -2026-03-27T14:00:28.5358138Z 15:00:28.535 | [171/170 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.dll -2026-03-27T14:00:28.5366622Z 15:00:28.536 | *** Tundra build success (16.70 seconds), 167 items updated, 170 evaluated -2026-03-27T14:00:28.5382656Z 15:00:28.537 | AssetDatabase: script compilation time: 26.196570s -2026-03-27T14:00:28.5395762Z 15:00:28.538 | Begin MonoManager ReloadAssembly -2026-03-27T14:00:28.9495522Z 15:00:28.947 | - Loaded All Assemblies, in 0.793 seconds -2026-03-27T14:00:28.9531560Z 15:00:28.951 | Start importing Assets using Guid(00000000000000001000000000000000) (DefaultImporter) -> (artifact id: '4b55c7cb15071bfc086d0e52a7664a41') in 0.0712909 seconds -2026-03-27T14:00:28.9546327Z 15:00:28.954 | Start importing ProjectSettings/InputManager.asset using Guid(00000000000000002000000000000000) (LibraryAssetImporter) -> (artifact id: '3d278bdfa729973ecf92c670ca181c88') in 0.012098 seconds -2026-03-27T14:00:28.9555946Z 15:00:28.955 | Start importing ProjectSettings/TagManager.asset using Guid(00000000000000003000000000000000) (LibraryAssetImporter) -> (artifact id: '4aa03ef27a83f311e598313a3ec2fbc3') in 0.0045133 seconds -2026-03-27T14:00:28.9564897Z 15:00:28.955 | Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) (LibraryAssetImporter) -> (artifact id: 'b13a03a10f08a5ec957bc9f7393258c6') in 0.0095841 seconds -2026-03-27T14:00:28.9577060Z 15:00:28.957 | Start importing ProjectSettings/AudioManager.asset using Guid(00000000000000006000000000000000) (LibraryAssetImporter) -> (artifact id: '7bb8de31f311db17f0fefe3abfd595f1') in 0.0043553 seconds -2026-03-27T14:00:28.9589788Z 15:00:28.958 | Start importing ProjectSettings/TimeManager.asset using Guid(00000000000000007000000000000000) (LibraryAssetImporter) -> (artifact id: '52c307e924e96ceef905bcc2cea85a00') in 0.0048442 seconds -2026-03-27T14:00:28.9599077Z 15:00:28.959 | Start importing ProjectSettings/DynamicsManager.asset using Guid(00000000000000008000000000000000) (LibraryAssetImporter) -> (artifact id: '1589700bfc0c355f73a0335651f82f22') in 0.0050461 seconds -2026-03-27T14:00:28.9609102Z 15:00:28.960 | Start importing ProjectSettings/QualitySettings.asset using Guid(00000000000000009000000000000000) (LibraryAssetImporter) -> (artifact id: '3d22d777d340243128ed3ffa349fb55a') in 0.0056181 seconds -2026-03-27T14:00:28.9616175Z 15:00:28.961 | Start importing ProjectSettings/EditorBuildSettings.asset using Guid(0000000000000000b000000000000000) (LibraryAssetImporter) -> (artifact id: '1923232d45cb936aef47cec131f33975') in 0.004597 seconds -2026-03-27T14:00:28.9649885Z 15:00:28.963 | Start importing ProjectSettings/EditorSettings.asset using Guid(0000000000000000c000000000000000) (LibraryAssetImporter) -> (artifact id: 'fdcca38f5f1944c9bec0b9f00395ab39') in 0.0046297 seconds -2026-03-27T14:00:28.9672399Z 15:00:28.965 | Start importing ProjectSettings/NavMeshAreas.asset using Guid(00000000000000004100000000000000) (LibraryAssetImporter) -> (artifact id: '4ba0a6bb5cc18b1619eb3b3f4ce570d1') in 0.0058307 seconds -2026-03-27T14:00:28.9683093Z 15:00:28.967 | Start importing ProjectSettings/Physics2DSettings.asset using Guid(00000000000000005100000000000000) (LibraryAssetImporter) -2026-03-27T14:00:29.3893830Z 15:00:29.385 | -> (artifact id: 'bb8ce7f5b2d944741959db20200075a7') in 0.0051252 seconds -2026-03-27T14:00:29.3920896Z 15:00:29.391 | Start importing ProjectSettings/GraphicsSettings.asset using Guid(00000000000000006100000000000000) (LibraryAssetImporter) -> (artifact id: 'b7a369a9c0780e3bb2635b3b3f88ffe1') in 0.0053065 seconds -2026-03-27T14:00:29.3927926Z 15:00:29.392 | Start importing ProjectSettings/ClusterInputManager.asset using Guid(00000000000000007100000000000000) (LibraryAssetImporter) -> (artifact id: '5a028a71a6163b7bc9a46219c48662ec') in 0.0051611 seconds -2026-03-27T14:00:29.3934245Z 15:00:29.392 | Start importing ProjectSettings/UnityConnectSettings.asset using Guid(0000000000000000a100000000000000) (LibraryAssetImporter) -> (artifact id: '5a6e69f8200d884ded3f19f546ea756a') in 0.0048537 seconds -2026-03-27T14:00:29.3940072Z 15:00:29.393 | Start importing ProjectSettings/PresetManager.asset using Guid(0000000000000000b100000000000000) (LibraryAssetImporter) -> (artifact id: '669bd2cb5cdf99ef516d1350fa42393e') in 0.0041537 seconds -2026-03-27T14:00:29.3945589Z 15:00:29.394 | Start importing ProjectSettings/VFXManager.asset using Guid(0000000000000000c100000000000000) (LibraryAssetImporter) -> (artifact id: 'dd6732d958402095937fd19a0cecb735') in 0.0064385 seconds -2026-03-27T14:00:29.3952590Z 15:00:29.394 | Start importing ProjectSettings/VersionControlSettings.asset using Guid(0000000000000000d100000000000000) (LibraryAssetImporter) -> (artifact id: 'b89f810c452b248c014f182ae5caa680') in 0.0081023 seconds -2026-03-27T14:00:29.3957790Z 15:00:29.395 | Start importing ProjectSettings/MemorySettings.asset using Guid(0000000000000000f100000000000000) (LibraryAssetImporter) -> (artifact id: '19f032dc933bd79e61da5c81f7ddd1ac') in 0.0061552 seconds -2026-03-27T14:00:29.3963437Z 15:00:29.395 | Start importing ProjectSettings/MultiplayerManager.asset using Guid(00000000000000000200000000000000) (LibraryAssetImporter) -> (artifact id: 'f060d13f2990d90fc35c577bb4111c66') in 0.0075819 seconds -2026-03-27T14:00:29.3991672Z 15:00:29.396 | Start importing Library/BuildInstructions using Guid(00000000000000002300000000000000) (DefaultImporter) -> (artifact id: 'ade3aeda13ad9960ede0e143cb33502a') in 0.0008569 seconds -2026-03-27T14:00:29.4002513Z 15:00:29.399 | Start importing Packages/com.unity.modules.imgui using Guid(c060426bfd6e82575228df6656368eaa) (DefaultImporter) -> (artifact id: '7d484ab5933192f91b6a2fb9f7498a1e') in 0.0009416 seconds -2026-03-27T14:00:29.4010756Z 15:00:29.400 | Start importing Packages/com.unity.modules.animation using Guid(1158e311a3101950348dcecb1bebc42d) (DefaultImporter) -> (artifact id: 'ad15220686cb46a8486da5a82128437e') in 0.0009407 seconds -2026-03-27T14:00:29.4042365Z 15:00:29.402 | Start importing Packages/com.unity.modules.xr using Guid(515638b803bef8599dbd6d5c8bdaa53e) (DefaultImporter) -> (artifact id: '5cc0ee7d1c42b8eaef23530dfcf3e4db') in 0.0007822 seconds -2026-03-27T14:00:29.4055307Z 15:00:29.405 | Start importing Packages/com.unity.modules.assetbundle using Guid(b219c86ce508e478367c0a46e1aa9fe4) (DefaultImporter) -> (artifact id: 'bc1ccff54e0e81e719a299f618cbc700') in 0.0009519 seconds -2026-03-27T14:00:29.4063619Z 15:00:29.405 | Start importing Packages/com.unity.multiplayer.center using Guid(63792d44a433f53ac2acfbb01766f6e3) (DefaultImporter) -> (artifact id: '7f943148eafd435c6cfcdd8c46be635c') in 0.000724 seconds -2026-03-27T14:00:29.4068450Z 15:00:29.406 | Start importing Packages/com.unity.modules.vectorgraphics using Guid(04c6898809c37620ac863cc2a5d7c4d0) (DefaultImporter) -> (artifact id: '680f930692278d51ab0cb47a297e0ebc') in 0.0008158 seconds -2026-03-27T14:00:29.4073833Z 15:00:29.407 | Start importing Packages/com.unity.modules.screencapture using Guid(5469ef0820152a4ae45d400fdc4626e4) (DefaultImporter) -> (artifact id: '1b898430acdbbeb6302342e1f16ef5fd') in 0.0007908 seconds -2026-03-27T14:00:29.4084140Z 15:00:29.408 | Start importing Packages/com.unity.modules.cloth using Guid(c4df1124e2787ee0c8d1a911de17ee73) (DefaultImporter) -> (artifact id: 'b88b693b590a4a0a52eea9c60170b5d2') in 0.0008087 seconds -2026-03-27T14:00:29.4095462Z 15:00:29.408 | Start importing Packages/com.unity.modules.imageconversion using Guid(850c54ee0b9e1aa740b1c67792eb1f26) (DefaultImporter) -> (artifact id: '77f78b27bd9bac81a00a007ef6f28867') in 0.000733 seconds -2026-03-27T14:00:29.4107084Z 15:00:29.409 | Start importing Packages/com.unity.modules.terrainphysics using Guid(95f85adeda79e994f011eb2152cf4fc9) (DefaultImporter) -> (artifact id: '361f0b2a768839d40a5a079492e0ff7f') in 0.0008339 seconds -2026-03-27T14:00:29.4119276Z 15:00:29.410 | Start importing Packages/com.unity.modules.unitywebrequest using Guid(c522a644a29fcab2eaf63298c118a65b) (DefaultImporter) -> (artifact id: 'd98f38a0b0a3a6ad84b730beb63727de') in 0.0007434 seconds -2026-03-27T14:00:29.4147308Z 15:00:29.412 | Start importing Packages/com.unity.modules.unitywebrequestassetbundle using Guid(d5f0b0adc6826e9dd3b72e292e8438be) (DefaultImporter) -> (artifact id: '4efb6f2729456c035f8d2599b921b1ba') in 0.0013628 seconds -2026-03-27T14:00:29.4155841Z 15:00:29.414 | Start importing Packages/com.unity.modules.subsystems using Guid(56b94a5b6990c879bb0f057719d1064b) (DefaultImporter) -> (artifact id: '04a7449add44c3b40bdab2ee56a390af') in 0.0010497 seconds -2026-03-27T14:00:29.4163552Z 15:00:29.415 | Start importing Packages/com.unity.modules.unityanalytics using Guid(d6c6a000a805f00649b36b542e8426c2) (DefaultImporter) -> (artifact id: '50e342d51c4bbc49e9992c96072b1439') in 0.0010697 seconds -2026-03-27T14:00:29.4168153Z 15:00:29.416 | Start importing Packages/com.unity.modules.physics using Guid(d6db7caf2e852b75ebb9c6098418179c) (DefaultImporter) -> (artifact id: 'b562405fb5bd1c9305c356f8cfe7a672') in 0.001057 seconds -2026-03-27T14:00:29.4179752Z 15:00:29.416 | Start importing Packages/com.unity.modules.vr using Guid(178008567c08e6d84014fa87825d10bb) (DefaultImporter) -> (artifact id: '73cec448275baf0a5bb22c2b6702dc1b') in 0.0008794 seconds -2026-03-27T14:00:29.4187459Z 15:00:29.418 | Start importing Packages/com.unity.modules.physics2d using Guid(376c84ea405e0f2b80562c23bb977216) (DefaultImporter) -> (artifact id: 'f030ba7c21f8c3d36c2700ba9484429e') in 0.0008155 seconds -2026-03-27T14:00:29.4193211Z 15:00:29.418 | Start importing Packages/com.unity.modules.wind using Guid(b77b1ad9c05af0412725856c6c53b037) (DefaultImporter) -> (artifact id: '61b7785e224d7c7b869e66861a5b4394') in 0.0007647 seconds -2026-03-27T14:00:29.4198506Z 15:00:29.419 | Start importing Packages/com.unity.modules.uielements using Guid(2808ba6bccb2478ec9c7209d8bf1f3cc) (DefaultImporter) -> (artifact id: '49f971d306aab8cb20ddbc00ca94734a') in 0.0007688 seconds -2026-03-27T14:00:29.4208651Z 15:00:29.420 | Start importing Packages/com.unity.modules.unitywebrequestaudio using Guid(38e3a8976f0b9c586b6dfbcef4e4066c) (DefaultImporter) -> (artifact id: 'd22a0a5dce520265216aede629a15820') in 0.000741 seconds -2026-03-27T14:00:29.4215625Z 15:00:29.421 | Start importing Packages/com.unity.modules.particlesystem using Guid(48b10b41f58d5b49717f376cda59eeb8) (DefaultImporter) -> (artifact id: '52931c3585e961751803a41152ba5f0c') in 0.0007614 seconds -2026-03-27T14:00:29.4222989Z 15:00:29.421 | Start importing Packages/com.unity.modules.accessibility using Guid(783ee1c8fd4414848db1be97aacf44fb) (DefaultImporter) -> (artifact id: '8e348ba1cb91a7a56d611c91d2d841c4') in 0.0007224 seconds -2026-03-27T14:00:29.4235035Z 15:00:29.422 | Start importing Packages/com.unity.modules.tilemap using Guid(09e28640d754a611467eebfb261ed749) (DefaultImporter) -> (artifact id: 'e25ff35afe7ee7ac44e2f5154ec1bf6d') in 0.0014177 seconds -2026-03-27T14:00:29.4242884Z 15:00:29.423 | Start importing Packages/com.unity.modules.ui using Guid(39728903e57c60021f80449a8bbc0096) (DefaultImporter) -> (artifact id: '9ba448b29b75a8a1f5c4c31201266424') in 0.0008929 seconds -2026-03-27T14:00:29.4253495Z 15:00:29.424 | Start importing Packages/com.unity.modules.androidjni using Guid(995c08a3305ff9f0dab5e86f340bd9a7) (DefaultImporter) -> (artifact id: 'cb17bea8d2250c1b95c120c742c59ba3') in 0.000927 seconds -2026-03-27T14:00:29.4258971Z 15:00:29.425 | Start importing Packages/com.unity.modules.adaptiveperformance using Guid(b975297a992381c1f3257d0e96892c8a) (DefaultImporter) -> (artifact id: '1e6f2dc93c835ec2b681bcb9564bfccc') in 0.0010721 seconds -2026-03-27T14:00:29.4265153Z 15:00:29.425 | Start importing Packages/com.unity.modules.hierarchycore using Guid(6b81377a4453ba7362eb3322f9bcc6c6) (DefaultImporter) -> (artifact id: 'b5ba94375de312bec58cfc03230046fb') in 0.0007715 seconds -2026-03-27T14:00:29.4270404Z 15:00:29.426 | Start importing Packages/com.unity.modules.vehicles using Guid(1cf2469083ffa484da4d78dd70d708e8) (DefaultImporter) -> (artifact id: '9c6c089c957cf9dd84e226d7cd597cc4') in 0.0007183 seconds -2026-03-27T14:00:29.4275468Z 15:00:29.427 | Start importing Packages/com.unity.modules.umbra using Guid(9c7c268fa6492449654839df69f2a2f4) (DefaultImporter) -> (artifact id: '281c95feba9f039879135a452ddf9925') in 0.0007488 seconds -2026-03-27T14:00:29.4288589Z 15:00:29.427 | Start importing Packages/com.unity.modules.unitywebrequestwww using Guid(dcc8c6e92b172a65719af5ddf47dd968) (DefaultImporter) -> (artifact id: '7f5a98437b302707aa44474c2ba685a9') in 0.0007417 seconds -2026-03-27T14:00:29.4296435Z 15:00:29.429 | Start importing Packages/com.unity.modules.jsonserialize using Guid(fc3a810351931f5e6183e16b9beb5563) (DefaultImporter) -> (artifact id: 'ae149b8f46567b37c6b77b16bb572fe8') in 0.0007655 seconds -2026-03-27T14:00:29.4303176Z 15:00:29.429 | Start importing Packages/com.unity.modules.director using Guid(2d142b475fbfb8cf12ba3a795194300a) (DefaultImporter) -> (artifact id: '048fe235c538004c98f298dced6201df') in 0.0007562 seconds -2026-03-27T14:00:29.4312187Z 15:00:29.430 | Start importing Packages/com.unity.modules.audio using Guid(2d6ba5cbe47e6ad3c87474c56174d4e0) (DefaultImporter) -> (artifact id: '2ad5535b0c9fde796c0a268a703c42c8') in 0.0008793 seconds -2026-03-27T14:00:29.4329131Z 15:00:29.431 | Start importing Packages/com.unity.modules.video using Guid(ede0462698a4a5643aa9872c074acd38) (DefaultImporter) -> (artifact id: '3172065d6af8ff17b025e0af8d219d15') in 0.0008594 seconds -2026-03-27T14:00:29.4334942Z 15:00:29.433 | Start importing Packages/com.unity.modules.ai using Guid(fd871a8be47119612f7c254e96a822b7) (DefaultImporter) -> (artifact id: '619e67a2820f0fb43e606df1f0c95aa2') in 0.0010662 seconds -2026-03-27T14:00:29.4341936Z 15:00:29.433 | Start importing Packages/com.unity.modules.terrain using Guid(6e1c8b97ec8aa0464e92506ffe099558) (DefaultImporter) -> (artifact id: 'd262e4fb78f6fff54404eb87b88b9ac4') in 0.0007358 seconds -2026-03-27T14:00:29.4350774Z 15:00:29.434 | Start importing Packages/com.unity.modules.unitywebrequesttexture using Guid(6f1c7ebc8ac78cb951be24c238cbd3ba) (DefaultImporter) -> (artifact id: '590a54cd80ec2a1da1d11f7ee409e01f') in 0.0008536 seconds -2026-03-27T14:00:29.4355706Z 15:00:29.435 | Start importing Packages/com.unity.multiplayer.center/Editor using Guid(72aad6ae0dafb492cbf852432441bb38) (DefaultImporter) -> (artifact id: '1472e7f5e610b0cbc5fd254e2d90e8af') in 0.0018551 seconds -2026-03-27T14:00:29.4365676Z 15:00:29.435 | Start importing Packages/com.unity.multiplayer.center/Common using Guid(f247964bd405431fbd31840f97bef608) (DefaultImporter) -> (artifact id: '80028f5919b4bee936c04608a509d2e3') in 0.0010363 seconds -2026-03-27T14:00:29.4377097Z 15:00:29.436 | Start importing Packages/com.unity.multiplayer.center/Tests using Guid(baf75c9d3de4941df9ee5f3dd1d3bc34) (DefaultImporter) -> (artifact id: 'c292f37aeb22efaba797eb1a89034c56') in 0.001263 seconds -2026-03-27T14:00:29.4382821Z 15:00:29.437 | Start importing Packages/com.unity.multiplayer.center/Editor/Analytics using Guid(21f32d2f4add49b3b11fadb6889a2156) (DefaultImporter) -> (artifact id: '51aff480448f490e143cac19c8fd77f7') in 0.0012573 seconds -2026-03-27T14:00:29.4392486Z 15:00:29.438 | Start importing Packages/com.unity.multiplayer.center/Editor/Features using Guid(22d3dbf8d488d49d2b1130d698010dee) (DefaultImporter) -> (artifact id: '97b7a3470b31512cc10a8dd26ae2abee') in 0.0017419 seconds -2026-03-27T14:00:29.4397802Z 15:00:29.439 | Start importing Packages/com.unity.multiplayer.center/Tests/Editor using Guid(96c71b811fa50403690b154e216fe217) (DefaultImporter) -> (artifact id: 'f201ce797b3b9aaf0bd388d6daf5c8a9') in 0.0012789 seconds -2026-03-27T14:00:29.4402870Z 15:00:29.439 | Start importing Packages/com.unity.multiplayer.center/Editor/OnBoarding using Guid(1726448925bf4bd1af6ca883bae8ff3f) (DefaultImporter) -> (artifact id: 'c547995c98e70de55ed7a0882b0b1d59') in 0.0012774 seconds -2026-03-27T14:00:29.4411860Z 15:00:29.440 | Start importing Packages/com.unity.multiplayer.center/Editor/Recommendations using Guid(97646f506bf040e9bd4568124c8b425e) (DefaultImporter) -> (artifact id: '2b67414499aad658981bbbe944dda5b8') in 0.0011142 seconds -2026-03-27T14:00:29.4417891Z 15:00:29.441 | Start importing Packages/com.unity.multiplayer.center/Editor/Questionnaire using Guid(a7f089ed51c2345ffb7ac0bc3562453f) (DefaultImporter) -> (artifact id: '91939e622deced05437de4135bda5ede') in 0.0011369 seconds -2026-03-27T14:00:29.4423005Z 15:00:29.441 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow using Guid(7a7dcde6448847648629a13d746ce966) (DefaultImporter) -> (artifact id: '25d35bc9e6545f61b784037e02201bc5') in 0.0016667 seconds -2026-03-27T14:00:29.4443839Z 15:00:29.442 | Start importing Packages/com.unity.multiplayer.center/Tests/Runtime using Guid(8e4d240cf158245a9945c4df01d83bc1) (DefaultImporter) -> (artifact id: '9afa31a007ea527f1ed301c6b16e63c9') in 0.0024186 seconds -2026-03-27T14:00:29.4458445Z 15:00:29.445 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI using Guid(9bd34ec3fe8f4aed936c3a0cf2f32e56) (DefaultImporter) -> (artifact id: 'b73da0b57dd0696387d727e85cb54e01') in 0.0012025 seconds -2026-03-27T14:00:29.4477138Z 15:00:29.447 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons using Guid(34a09eb4d6e8d44989194a25525c5147) (DefaultImporter) -> (artifact id: '6eef5c1301b509ae1757bc36a5ed6ea8') in 0.0019442 seconds -2026-03-27T14:00:29.4492374Z 15:00:29.448 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/RecommendationView using Guid(eab7f42d361b483aaa760c5909002312) (DefaultImporter) -> (artifact id: '8eb859fe06dd083b30bd9c27d3ce7755') in 0.0019235 seconds -2026-03-27T14:00:29.4499559Z 15:00:29.449 | Start importing Packages/com.unity.multiplayer.center/Common/Unity.Multiplayer.Center.Common.asmdef using Guid(84abd2ab34a74600a33a3bb9d72859fe) (AssemblyDefinitionImporter) -> (artifact id: '2e15fdfe053455410c46af8108d4b576') in 0.015078 seconds -2026-03-27T14:00:29.4508322Z 15:00:29.450 | Start importing Packages/com.unity.multiplayer.center/Tests/Runtime/Unity.Multiplayer.Center.Tests.asmdef using Guid(2664430aff4254d79887d32c3fc1e221) (AssemblyDefinitionImporter) -> (artifact id: '10a8b6cec249c3f1431650b35fb0b23f') in 0.0058546 seconds -2026-03-27T14:00:29.4515535Z 15:00:29.450 | Start importing Packages/com.unity.multiplayer.center/Tests/Editor/Unity.Multiplayer.Center.Editor.Tests.asmdef using Guid(787ec048daec145b580d1134da5dd278) (AssemblyDefinitionImporter) -> (artifact id: '29dc17f91cb2a01d8b6be8c932a8280d') in 0.006618 seconds -2026-03-27T14:00:29.4523397Z 15:00:29.451 | Start importing Packages/com.unity.multiplayer.center/Editor/Unity.Multiplayer.Center.Editor.asmdef using Guid(be17709716f1648caa5de6d0c38103ed) (AssemblyDefinitionImporter) -> (artifact id: '6ce86c22cc7899b0214f30e55df0ec5c') in 0.0064329 seconds -2026-03-27T14:00:29.4533639Z 15:00:29.452 | Start importing Packages/com.unity.modules.ui/package.ModuleCompilationTrigger using Guid(51fa60bb2bd1e5bc74e8cc95a7bfd5b7) (DefaultImporter) -> (artifact id: '237e32f9541121b786ca4b06eace0dfe') in 0.0530176 seconds -2026-03-27T14:00:29.4545046Z 15:00:29.453 | Start importing Packages/com.unity.modules.unityanalytics/package.ModuleCompilationTrigger using Guid(71136fc5cf34f2cc10be0e33c0b08019) (DefaultImporter) -> (artifact id: '9b0cf4eb7c767f90f530cd263ba24ee4') in 0.0013534 seconds -2026-03-27T14:00:29.4553791Z 15:00:29.454 | Start importing Packages/com.unity.modules.tilemap/package.ModuleCompilationTrigger using Guid(a1c42005fe7c5d78585a77ce396a5eea) (DefaultImporter) -> (artifact id: 'd923349cce1d10fbf9fab4491e59c38f') in 0.001268 seconds -2026-03-27T14:00:29.4561987Z 15:00:29.455 | Start importing Packages/com.unity.modules.hierarchycore/package.ModuleCompilationTrigger using Guid(d104359075a97392b803d3d5aebc77f7) (DefaultImporter) -> (artifact id: '5f087c93c58d9b1c35f89c539ed3a98d') in 0.0012798 seconds -2026-03-27T14:00:29.4570749Z 15:00:29.456 | Start importing Packages/com.unity.modules.assetbundle/package.ModuleCompilationTrigger using Guid(222fc39b0c85d800342910da2cd64781) (DefaultImporter) -> (artifact id: '9a6a8c4ae725acd0e4d082b2f7469352') in 0.0012029 seconds -2026-03-27T14:00:29.4602654Z 15:00:29.457 | Start importing Packages/com.unity.modules.unitywebrequest/package.ModuleCompilationTrigger using Guid(d2ec2d1228c8e67cdd913cb5609176a2) (DefaultImporter) -> (artifact id: '8af4f3e306c0241d03204a437a8fc5e0') in 0.0013911 seconds -2026-03-27T14:00:29.4613399Z 15:00:29.460 | Start importing Packages/com.unity.modules.ai/package.ModuleCompilationTrigger using Guid(e2d09a26ce46dc617b54e49a534ace20) (DefaultImporter) -> (artifact id: 'a71f1fd08e4e9bf1ecd2d64209645034') in 0.0013407 seconds -2026-03-27T14:00:29.4624234Z 15:00:29.461 | Start importing Packages/com.unity.modules.terrain/package.ModuleCompilationTrigger using Guid(23032f4383e95e772bce465c5896d0fd) (DefaultImporter) -> (artifact id: '491a7f75d3e9187fba07a3d515b1da29') in 0.0013291 seconds -2026-03-27T14:00:29.4631834Z 15:00:29.462 | Start importing Packages/com.unity.modules.imageconversion/package.ModuleCompilationTrigger using Guid(830a36a23cf3ab1e61fa47940a6dc35e) (DefaultImporter) -> (artifact id: 'ee0f0c801f95c19382d8b454dc7586e1') in 0.0012938 seconds -2026-03-27T14:00:29.4640824Z 15:00:29.463 | Start importing Packages/com.unity.modules.unitywebrequesttexture/package.ModuleCompilationTrigger using Guid(a31a332ce3485f00f7df8d987302a29c) (DefaultImporter) -> (artifact id: '5b56561b2c8cae5c48817dca1565364f') in 0.0013032 seconds -2026-03-27T14:00:29.4649630Z 15:00:29.464 | Start importing Packages/com.unity.modules.audio/package.ModuleCompilationTrigger using Guid(042dc296246916648e55a43d0eeb2036) (DefaultImporter) -> (artifact id: '93cfeb7be8bf6df4dc4fc167223dc2d5') in 0.001264 seconds -2026-03-27T14:00:29.4656979Z 15:00:29.465 | Start importing Packages/com.unity.modules.unitywebrequestaudio/package.ModuleCompilationTrigger using Guid(553737203d61a8109f9544a97201e1aa) (DefaultImporter) -> (artifact id: '29c8c1952ecab40326be6fe65bf2dc75') in 0.0012373 seconds -2026-03-27T14:00:29.4666256Z 15:00:29.466 | Start importing Packages/com.unity.modules.vr/package.ModuleCompilationTrigger using Guid(b5bd8fa6f4c55ab6f09322b86d18b0e3) (DefaultImporter) -> (artifact id: '7fb6f5a64a18b8abc92ffb2611727976') in 0.0012565 seconds -2026-03-27T14:00:29.4674230Z 15:00:29.466 | Start importing Packages/com.unity.modules.vehicles/package.ModuleCompilationTrigger using Guid(e5c46c19ce0ce2e0103aa6f82df1043a) (DefaultImporter) -> (artifact id: '4efeb502fc9ade03fc8da1a2020cc14d') in 0.0012031 seconds -2026-03-27T14:00:29.4683271Z 15:00:29.467 | Start importing Packages/com.unity.modules.unitywebrequestassetbundle/package.ModuleCompilationTrigger using Guid(7610600f5c83e01041a6fe849d39279f) (DefaultImporter) -> (artifact id: '5ea653cc184754456a13dd8d09c34205') in 0.0012494 seconds -2026-03-27T14:00:29.4695528Z 15:00:29.468 | Start importing Packages/com.unity.modules.jsonserialize/package.ModuleCompilationTrigger using Guid(e6a135e3ea9cb46795d1b0e05ac3e1e5) (DefaultImporter) -> (artifact id: '8d26f1c211bce77f7cf17eccccd57b0d') in 0.0013083 seconds -2026-03-27T14:00:29.4705071Z 15:00:29.469 | Start importing Packages/com.unity.modules.video/package.ModuleCompilationTrigger using Guid(f62135e79edb837b2d2ee3c524da864c) (DefaultImporter) -> (artifact id: '6ebda327ae83705f04de3efed3db9873') in 0.0012284 seconds -2026-03-27T14:00:29.4714131Z 15:00:29.470 | Start importing Packages/com.unity.modules.particlesystem/package.ModuleCompilationTrigger using Guid(17f093324b67f5bd57e55b546736750e) (DefaultImporter) -> (artifact id: '2ff549dcfdc7b1fa23811cebe1444f07') in 0.0013746 seconds -2026-03-27T14:00:29.4721228Z 15:00:29.471 | Start importing Packages/com.unity.modules.accessibility/package.ModuleCompilationTrigger using Guid(4745d06d5a7ca576dcf9e5e67b417652) (DefaultImporter) -> (artifact id: 'ae9e01646ac31a09b3de296582cd6de0') in 0.004085 seconds -2026-03-27T14:00:29.4729314Z 15:00:29.472 | Start importing Packages/com.unity.modules.xr/package.ModuleCompilationTrigger using Guid(c7a8b0317f4e68556d7509828e9e211e) (DefaultImporter) -> (artifact id: 'cff4c28c132f8374585e00aa928dde3a') in 0.0012784 seconds -2026-03-27T14:00:29.4748141Z 15:00:29.473 | Start importing Packages/com.unity.modules.cloth/package.ModuleCompilationTrigger using Guid(082fbee38a82835433261a5e9c00e267) (DefaultImporter) -> (artifact id: 'fb60fe65bd12026494280cd2600d4c8d') in 0.0024289 seconds -2026-03-27T14:00:29.4787634Z 15:00:29.477 | Start importing Packages/com.unity.modules.androidjni/package.ModuleCompilationTrigger using Guid(c82e859b16636ddd2ca4a1f63fd34938) (DefaultImporter) -> (artifact id: '28e4fd36d397729ef98ce8a6b5fe53a2') in 0.0029863 seconds -2026-03-27T14:00:29.4804723Z 15:00:29.479 | Start importing Packages/com.unity.modules.director/package.ModuleCompilationTrigger using Guid(c88e90bad18cceb5d182d0c805883056) (DefaultImporter) -> (artifact id: '8e742e385eae214c44fd937134cf600f') in 0.0028916 seconds -2026-03-27T14:00:29.4833921Z 15:00:29.480 | Start importing Packages/com.unity.modules.adaptiveperformance/package.ModuleCompilationTrigger using Guid(1af35a910338381f753e8a985eb5daab) (DefaultImporter) -> (artifact id: '867fce9a42b816ffb5ac55f16cf2007e') in 0.0012628 seconds -2026-03-27T14:00:29.4846804Z 15:00:29.483 | Start importing Packages/com.unity.modules.wind/package.ModuleCompilationTrigger using Guid(2adec19fac7df68adf1fd6eb83197bb1) (DefaultImporter) -> (artifact id: '7db7181525b7da8ee072e519f9529aab') in 0.0014119 seconds -2026-03-27T14:00:29.4857722Z 15:00:29.485 | Start importing Packages/com.unity.modules.uielements/package.ModuleCompilationTrigger using Guid(8a752aaaadd2410dd9a84e01c1bace9f) (DefaultImporter) -> (artifact id: 'ae37e7f0f1483578fc0d8d28fd17e0e2') in 0.0014825 seconds -2026-03-27T14:00:29.4866907Z 15:00:29.486 | Start importing Packages/com.unity.modules.umbra/package.ModuleCompilationTrigger using Guid(1b6246f2248883964991eac9e9b4817c) (DefaultImporter) -> (artifact id: 'd1507e2ccffaa842e8d211f5b4e1425f') in 0.001511 seconds -2026-03-27T14:00:29.4876300Z 15:00:29.487 | Start importing Packages/com.unity.modules.terrainphysics/package.ModuleCompilationTrigger using Guid(cbb1a39d56ce4d9ac1a46ac505893fa7) (DefaultImporter) -> (artifact id: '8d1d3ac1946fa5f9233e968059d3fb13') in 0.0022813 seconds -2026-03-27T14:00:29.4885479Z 15:00:29.487 | Start importing Packages/com.unity.modules.animation/package.ModuleCompilationTrigger using Guid(db8e609a39b9b231fccc54e5fa4cbd1b) (DefaultImporter) -> (artifact id: '76194af19b6b83e46d258b902c79f26f') in 0.0019927 seconds -2026-03-27T14:00:29.4909236Z 15:00:29.490 | Start importing Packages/com.unity.modules.vectorgraphics/package.ModuleCompilationTrigger using Guid(3cc1ebf2abb7fef6871ad48f499b6e21) (DefaultImporter) -> (artifact id: '51ba5d987381c742b47376b47674c513') in 0.0021354 seconds -2026-03-27T14:00:29.4917524Z 15:00:29.491 | Start importing Packages/com.unity.modules.physics/package.ModuleCompilationTrigger using Guid(5c1ee4056d0ac7ad3c5a16597fcaa38a) (DefaultImporter) -> (artifact id: '288b7a03d6481d4e92cee0ae908758ad') in 0.0012621 seconds -2026-03-27T14:00:29.4928132Z 15:00:29.492 | Start importing Packages/com.unity.modules.subsystems/package.ModuleCompilationTrigger using Guid(8d4bc6bfa28760b29f13174d6b6ea710) (DefaultImporter) -> (artifact id: '86683c86d6892e456463f75256ee724d') in 0.0011725 seconds -2026-03-27T14:00:29.4936424Z 15:00:29.493 | Start importing Packages/com.unity.modules.screencapture/package.ModuleCompilationTrigger using Guid(cd561f5f687aed43bf280c27a84f79e3) (DefaultImporter) -> (artifact id: '9675ccd07d8427f33d815eef637fd3c3') in 0.0015936 seconds -2026-03-27T14:00:29.4944587Z 15:00:29.493 | Start importing Packages/com.unity.modules.unitywebrequestwww/package.ModuleCompilationTrigger using Guid(ae87256f29d9c8b50490f4caf75b2c41) (DefaultImporter) -> (artifact id: '8a97098fbd52b5ae1a5755ce8a67debb') in 0.0012462 seconds -2026-03-27T14:00:29.4952887Z 15:00:29.494 | Start importing Packages/com.unity.modules.imgui/package.ModuleCompilationTrigger using Guid(be13c398521e3c1ad21fb9da30ab2ab6) (DefaultImporter) -> (artifact id: 'ea0574aa05344c7e80357502346d73fc') in 0.0012934 seconds -2026-03-27T14:00:29.4961770Z 15:00:29.495 | Start importing Packages/com.unity.modules.physics2d/package.ModuleCompilationTrigger using Guid(fe6a6957b37b61417b457a1e0541791d) (DefaultImporter) -> (artifact id: 'a5a6ae7d64235baf32ceb35097cc3c10') in 0.0013498 seconds -2026-03-27T14:00:29.4970697Z 15:00:29.496 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -2026-03-27T14:00:29.9051774Z 15:00:29.903 | Native extension for iOS target not found -2026-03-27T14:00:29.9083055Z 15:00:29.905 | Native extension for Android target not found -2026-03-27T14:00:29.9164267Z 15:00:29.910 | Native extension for WindowsStandalone target not found -2026-03-27T14:00:30.7571426Z 15:00:30.753 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True -2026-03-27T14:00:30.7577130Z 15:00:30.757 | Mono: successfully reloaded assembly -2026-03-27T14:00:30.7583150Z 15:00:30.757 | - Finished resetting the current domain, in 1.265 seconds -2026-03-27T14:00:30.7591286Z 15:00:30.758 | Domain Reload Profiling: 2038ms -2026-03-27T14:00:30.7597287Z 15:00:30.759 | BeginReloadAssembly (555ms) -2026-03-27T14:00:30.7604336Z 15:00:30.759 | ExecutionOrderSort (0ms) -2026-03-27T14:00:30.7611030Z 15:00:30.760 | DisableScriptedObjects (38ms) -2026-03-27T14:00:30.7621878Z 15:00:30.761 | BackupInstance (0ms) -2026-03-27T14:00:30.7629043Z 15:00:30.762 | ReleaseScriptingObjects (0ms) -2026-03-27T14:00:30.7636263Z 15:00:30.763 | CreateAndSetChildDomain (194ms) -2026-03-27T14:00:30.7643900Z 15:00:30.763 | RebuildCommonClasses (60ms) -2026-03-27T14:00:30.7650497Z 15:00:30.764 | RebuildNativeTypeToScriptingClass (21ms) -2026-03-27T14:00:30.7656125Z 15:00:30.765 | initialDomainReloadingComplete (50ms) -2026-03-27T14:00:30.7661812Z 15:00:30.765 | LoadAllAssembliesAndSetupDomain (87ms) -2026-03-27T14:00:30.7667223Z 15:00:30.766 | LoadAssemblies (217ms) -2026-03-27T14:00:30.7673261Z 15:00:30.766 | RebuildTransferFunctionScriptingTraits (0ms) -2026-03-27T14:00:30.7682096Z 15:00:30.767 | AnalyzeDomain (61ms) -2026-03-27T14:00:30.7704362Z 15:00:30.769 | TypeCache.Refresh (54ms) -2026-03-27T14:00:30.7710217Z 15:00:30.770 | TypeCache.ScanAssembly (36ms) -2026-03-27T14:00:30.7716037Z 15:00:30.771 | BuildScriptInfoCaches (3ms) -2026-03-27T14:00:30.7721807Z 15:00:30.771 | ResolveRequiredComponents (1ms) -2026-03-27T14:00:30.7727363Z 15:00:30.772 | FinalizeReload (1265ms) -2026-03-27T14:00:30.7734087Z 15:00:30.772 | ReleaseScriptCaches (0ms) -2026-03-27T14:00:30.7746486Z 15:00:30.773 | RebuildScriptCaches (0ms) -2026-03-27T14:00:30.7754514Z 15:00:30.774 | SetupLoadedEditorAssemblies (983ms) -2026-03-27T14:00:30.7767855Z 15:00:30.775 | LogAssemblyErrors (0ms) -2026-03-27T14:00:30.7780856Z 15:00:30.777 | InitializePlatformSupportModulesInManaged (427ms) -2026-03-27T14:00:30.7794169Z 15:00:30.778 | SetLoadedEditorAssemblies (7ms) -2026-03-27T14:00:30.7823191Z 15:00:30.779 | BeforeProcessingInitializeOnLoad (226ms) -2026-03-27T14:00:30.7850777Z 15:00:30.783 | ProcessInitializeOnLoadAttributes (232ms) -2026-03-27T14:00:30.7858126Z 15:00:30.785 | ProcessInitializeOnLoadMethodAttributes (63ms) -2026-03-27T14:00:30.7864645Z 15:00:30.786 | AfterProcessingInitializeOnLoad (28ms) -2026-03-27T14:00:30.7897141Z 15:00:30.786 | EditorAssembliesLoaded (0ms) -2026-03-27T14:00:30.7925080Z 15:00:30.791 | ExecutionOrderSort2 (0ms) -2026-03-27T14:00:30.7933036Z 15:00:30.792 | AwakeInstancesAfterBackupRestoration (51ms) -2026-03-27T14:00:31.1977958Z 15:00:31.197 | Start importing Library/BuildPlayer.prefs using Guid(00000000000000005000000000000000) (DefaultImporter) -> (artifact id: '083d37eb6b0e82b8f5c1ec86344d848d') in 0.008913 seconds -2026-03-27T14:00:31.1986909Z 15:00:31.198 | Start importing Packages/com.unity.multiplayer.center/Editor/Questionnaire/Questionnaire.questionnaire using Guid(a659150180ae3489ba41c71780ba3779) (DefaultImporter) -> (artifact id: 'f015c12481ca2ebbe281edf6a5646fdb') in 0.0068088 seconds -2026-03-27T14:00:31.1992604Z 15:00:31.198 | Start importing Packages/com.unity.multiplayer.center/Editor/Recommendations/RecommendationData_6000.0.recommendations using Guid(b66d076cdcfe3b14388de66307a0e7ff) (DefaultImporter) -> (artifact id: '1cc2974bd6a9df6f05cc50707f3dca04') in 0.0059014 seconds -2026-03-27T14:00:31.1997805Z 15:00:31.199 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageInstalled@2x.png using Guid(318df756abab5463e9aa361360784865) (TextureImporter) -> (artifact id: 'd48b04cc49cfa733cc56cf9477ff17a9') in 0.0281705 seconds -2026-03-27T14:00:31.2004143Z 15:00:31.199 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Loading.png using Guid(424a8de5def3b46dcb08edd00ad1c7bd) (TextureImporter) -> (artifact id: '3a61c62f382fe54871391a248e6152e2') in 0.0103432 seconds -2026-03-27T14:00:31.2009527Z 15:00:31.200 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Package.png using Guid(525a6cca8dd9a4d28875a8fe824710d9) (TextureImporter) -> (artifact id: '548f73066cab3a98e858aa8efe72dbb9') in 0.0079172 seconds -2026-03-27T14:00:31.2014671Z 15:00:31.201 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CloudCode@2x.png using Guid(a23c0dd570fd44b57a03a8880002fcca) (TextureImporter) -> (artifact id: 'ef7b4e60e001d8ea37396d65cd011a01') in 0.0119496 seconds -2026-03-27T14:00:31.2020197Z 15:00:31.201 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/ClientHosted.png using Guid(b2ce704e56cc84fb3b347499263c6244) (TextureImporter) -> (artifact id: '3c47d40f72c24fed50a1732d92b43a18') in 0.0075237 seconds -2026-03-27T14:00:31.2025367Z 15:00:31.202 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DistributedAuthority@2x.png using Guid(0354877031b64465ea7e5cafea1a2653) (TextureImporter) -> (artifact id: 'f80c791064e9ca756275e82b5271b61e') in 0.0094129 seconds -2026-03-27T14:00:31.2031463Z 15:00:31.202 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NGO@2x.png using Guid(83b28bcaaf34b4fd580114fb05d9f160) (TextureImporter) -> (artifact id: 'a8e9e7005ad411d5abe21dbe0151a322') in 0.0072935 seconds -2026-03-27T14:00:31.2042145Z 15:00:31.203 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageInstalled@2x.png using Guid(0423146d9f51c4563a0f2a8200b6cd38) (TextureImporter) -> (artifact id: 'd5052ecff5a0e604c1c9719435a32c25') in 0.0056031 seconds -2026-03-27T14:00:31.2069113Z 15:00:31.206 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Questionnaire.png using Guid(741761e72e6f24446bd8ba03ea3d0261) (TextureImporter) -> (artifact id: 'cbc7c83ec1aed6dc9d6245966761d44e') in 0.006061 seconds -2026-03-27T14:00:31.2074639Z 15:00:31.206 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/EmptyViewIcon.png using Guid(84e4bbd00035e4671bf14e0380a89001) (TextureImporter) -> (artifact id: '7205c2313fc29d3cad68ca5a54e1b27b') in 0.0094287 seconds -2026-03-27T14:00:31.2080134Z 15:00:31.207 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageManager@2x.png using Guid(9431e8221045c4af189b2fa7174b9e9f) (TextureImporter) -> (artifact id: '264cf9a117a9025669ca3f09b02973db') in 0.0069062 seconds -2026-03-27T14:00:31.2085082Z 15:00:31.208 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NoNetcode@2x.png using Guid(b58a826ca804e4c67bab4283ad5a6102) (TextureImporter) -> (artifact id: 'b0b56a9fa0db7c164e475c2f65e61cbe') in 0.0101539 seconds -2026-03-27T14:00:31.2099548Z 15:00:31.208 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageInstalled.png using Guid(4616b2fa4acd1429e931835b80966c2a) (TextureImporter) -> (artifact id: '196e04625a01a3026b3390f771abd240') in 0.0058984 seconds -2026-03-27T14:00:31.2192325Z 15:00:31.211 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageManager@2x.png using Guid(a6fd0c627f5aa48fa81512221e70a11e) (TextureImporter) -> (artifact id: '9ef9c1ca17a15d3c1f71ad30bf753cda') in 0.0095031 seconds -2026-03-27T14:00:31.2204467Z 15:00:31.219 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DistributedAuthority.png using Guid(d63245ece6d8f476c8c7ca24da9937f6) (TextureImporter) -> (artifact id: '0449910d6d0fa524c5d4d2aa18d3c617') in 0.0088536 seconds -2026-03-27T14:00:31.2215545Z 15:00:31.220 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageManager.png using Guid(679f9999c6f8f497e806a2d5d0511879) (TextureImporter) -> (artifact id: '950fc3cecccddc5b0caedc3a2d8fd3e8') in 0.0072127 seconds -2026-03-27T14:00:31.2222006Z 15:00:31.221 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageInstalled.png using Guid(77be953cf28de42a4ad8532539fef3f5) (TextureImporter) -> (artifact id: 'ec4dc4c3db3783cf0c4fc2b80aa18e21') in 0.0064152 seconds -2026-03-27T14:00:31.2233281Z 15:00:31.222 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/ClientHosted@2x.png using Guid(c7a38e6eccbfc49778cb8b77f594a971) (TextureImporter) -> (artifact id: '6251398aad25a809c32c57dbe83235cf') in 0.0119353 seconds -2026-03-27T14:00:31.2252646Z 15:00:31.224 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CustomNetcode@2x.png using Guid(d7711b0cc806d430b8a95f1e33ec3649) (TextureImporter) -> (artifact id: '6f3e1b3dc451395a96a4728754595b2f') in 0.0094815 seconds -2026-03-27T14:00:31.2316274Z 15:00:31.230 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DedicatedServer@2x.png using Guid(38b78df4a34c94fa6a52c90239606ff1) (TextureImporter) -> (artifact id: 'd91aea1ae284307874e87b940479e766') in 0.0093527 seconds -2026-03-27T14:00:31.2333145Z 15:00:31.232 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Check.png using Guid(29395f0639574c1fbc8b729aa257fb84) (TextureImporter) -> (artifact id: 'f0b7cb6f2538b4c9bccdf390ba8a60e8') in 0.007923 seconds -2026-03-27T14:00:31.2342565Z 15:00:31.233 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NGO.png using Guid(99da7b3894f364efdb5fa1443952a55d) (TextureImporter) -> (artifact id: 'a0ebe5e72b14bf97ed88e7d459bbf1f9') in 0.0090683 seconds -2026-03-27T14:00:31.2350009Z 15:00:31.234 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/N4E.png using Guid(e9669051ff70449b5923861e0e0b8838) (TextureImporter) -> (artifact id: '7ed7b750f3f48f580fdda0b466d37a77') in 0.0115231 seconds -2026-03-27T14:00:31.2358086Z 15:00:31.235 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/EmptyViewIcon@2x.png using Guid(2adffcc506285402aa795dee6f3166d0) (TextureImporter) -> (artifact id: '1d839d66657871a414fc929d5a42aab0') in 0.0424474 seconds -2026-03-27T14:00:31.2365592Z 15:00:31.235 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Loading.png using Guid(dab91f148d99946e7b3c3a87ecf4b973) (TextureImporter) -> (artifact id: '4c72953fd071d95522f476ee9ea21c7f') in 0.0139309 seconds -2026-03-27T14:00:31.2375784Z 15:00:31.236 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageManager.png using Guid(1b4c88814ec6241eb8e327515399c006) (TextureImporter) -> (artifact id: '973e2e8c7e71cae5915c961bcdecac4a') in 0.0090978 seconds -2026-03-27T14:00:31.2383873Z 15:00:31.237 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/N4E@2x.png using Guid(2cb589d4e01184d928bb698f06e77561) (TextureImporter) -> (artifact id: 'd53826b6fbbfe6fbfef490c7c373a470') in 0.0136548 seconds -2026-03-27T14:00:31.2390178Z 15:00:31.238 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CustomNetcode.png using Guid(dce12af736e0a4a1ba35d6424f897dc9) (TextureImporter) -> (artifact id: '4dfa7c2b0de2b4daf193614f6a9e55b6') in 0.0068111 seconds -2026-03-27T14:00:31.2396104Z 15:00:31.239 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NoNetcode.png using Guid(1daed49eec0f94f7ebb36dfef6159884) (TextureImporter) -2026-03-27T14:00:31.6539321Z 15:00:31.647 | -> (artifact id: 'ed932467a20a21d754e72a3be4641e64') in 0.0978888 seconds -2026-03-27T14:00:31.6550679Z 15:00:31.654 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Package.png using Guid(9d9689eab72c8480c90679f4dcf18820) (TextureImporter) -> (artifact id: 'ca7b139d23bc53ca0c7a574a931814db') in 0.0053292 seconds -2026-03-27T14:00:31.6560821Z 15:00:31.655 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CloudCode.png using Guid(ad1d29f4654194951a3c8bf507914d05) (TextureImporter) -> (artifact id: 'd461dd95b7bde19e59c141a5db1892e0') in 0.0058591 seconds -2026-03-27T14:00:31.6576626Z 15:00:31.656 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Questionnaire.png using Guid(dd70cd654275d47db807e918055e004f) (TextureImporter) -> (artifact id: '14fd0c8e541999237ea78674c0eedc1e') in 0.0065441 seconds -2026-03-27T14:00:31.6588179Z 15:00:31.658 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DedicatedServer.png using Guid(3fe892784421e47f5aa40c2784a6cb3e) (TextureImporter) -> (artifact id: 'ed593a26d941302ec21c6a465bdf28dc') in 0.0058546 seconds -2026-03-27T14:00:31.6594119Z 15:00:31.658 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Check.png using Guid(4f78a544322c742b89e63fb68557b1d2) (TextureImporter) -> (artifact id: '53279925e75b5263fd0ca9ed0c91a8a3') in 0.0069381 seconds -2026-03-27T14:00:31.6602631Z 15:00:31.659 | Start importing Packages/com.unity.modules.subsystems/package.json using Guid(30b312a167534621b316172253b08723) (PackageManifestImporter) -> (artifact id: '5fddaf95e1048f20ba7f7820d94a41a8') in 0.0069485 seconds -2026-03-27T14:00:31.6617111Z 15:00:31.661 | Start importing Packages/com.unity.modules.jsonserialize/package.json using Guid(40bf3cec17fa0b49fe04443c8332d638) (PackageManifestImporter) -> (artifact id: '4c54406cdf6f27a0dfd74653ac191550') in 0.0059526 seconds -2026-03-27T14:00:31.6626232Z 15:00:31.662 | Start importing Packages/com.unity.multiplayer.center/LICENSE.md using Guid(70554f6c9e4114e1084bb38f9ea400ce) (TextScriptImporter) -> (artifact id: 'c4bd63aaea861ad58925ef6690300eb1') in 0.0069744 seconds -2026-03-27T14:00:31.6654299Z 15:00:31.664 | Start importing Packages/com.unity.modules.screencapture/package.json using Guid(80beef77cb19e713c7c2d481b65ed485) (PackageManifestImporter) -> (artifact id: '2f4796478e898a299d67d69a4e932b6a') in 0.0051002 seconds -2026-03-27T14:00:31.6669133Z 15:00:31.666 | Start importing Packages/com.unity.modules.cloth/package.json using Guid(906c12bc9cd95d3963c6d58f62522c78) (PackageManifestImporter) -> (artifact id: '3d693bca45ffae6fac5cd7db888ef115') in 0.0055495 seconds -2026-03-27T14:00:31.6677367Z 15:00:31.667 | Start importing Packages/com.unity.modules.unitywebrequesttexture/package.json using Guid(d0e3ad91972c66f5238f5b9b7d5ae58a) (PackageManifestImporter) -> (artifact id: 'e55c9ecf8b6cd2df41ad2d48f83627ef') in 0.0073671 seconds -2026-03-27T14:00:31.6690419Z 15:00:31.668 | Start importing Packages/com.unity.modules.ai/package.json using Guid(f0f13f2ab3d6d13cfc6e4656824bfca8) (PackageManifestImporter) -> (artifact id: '993ffce69848b7fc2884f536f4e72d66') in 0.0055982 seconds -2026-03-27T14:00:31.6745968Z 15:00:31.674 | Start importing Packages/com.unity.modules.assetbundle/package.json using Guid(e1ef8466c8fd01a549f10baa4d51fa17) (PackageManifestImporter) -> (artifact id: 'bd1378d04a55ff92f406f64b548a4dfc') in 0.006065 seconds -2026-03-27T14:00:31.6754363Z 15:00:31.674 | Start importing Packages/com.unity.modules.imgui/package.json using Guid(42fe78c8fe682715a2cb531422e6ccb3) (PackageManifestImporter) -> (artifact id: 'b643c636c8e55776455f8adce1983951') in 0.0061862 seconds -2026-03-27T14:00:31.6809343Z 15:00:31.677 | Start importing Packages/com.unity.modules.tilemap/package.json using Guid(92a378669877c05c6071d0fed687bb95) (PackageManifestImporter) -> (artifact id: '4056b6dbe265f7ea644917ceb3d938ad') in 0.0059452 seconds -2026-03-27T14:00:31.6825225Z 15:00:31.681 | Start importing Packages/com.unity.modules.accessibility/package.json using Guid(43674d438e19b89d7fe6af07234f3252) (PackageManifestImporter) -> (artifact id: '9a98f0a4a23cfb2780f9ebc86419c8bb') in 0.0052729 seconds -2026-03-27T14:00:31.7046808Z 15:00:31.683 | Start importing Packages/com.unity.multiplayer.center/README.md using Guid(c359bcaf4a0bc4040aac650bf14ec619) (TextScriptImporter) -> (artifact id: '1479d3316a4547e823ef71ef56c076f5') in 0.0052233 seconds -2026-03-27T14:00:31.7149267Z 15:00:31.711 | Start importing Packages/com.unity.modules.terrainphysics/package.json using Guid(d3cbe921f7b3d9a3257e7c61a5761796) (PackageManifestImporter) -> (artifact id: 'f5e2c961ee3d9c345b9cfb0721893363') in 0.0054937 seconds -2026-03-27T14:00:31.7163361Z 15:00:31.715 | Start importing Packages/com.unity.modules.unitywebrequestassetbundle/package.json using Guid(05f7f519769978b79b31d063a7fc6fa1) (PackageManifestImporter) -> (artifact id: '4f2160dda0ab469cf2df5b0cd4f92db7') in 0.0132719 seconds -2026-03-27T14:00:31.7184936Z 15:00:31.717 | Start importing Packages/com.unity.modules.imageconversion/package.json using Guid(953fab16d15d5885b3600fcd6388b2ad) (PackageManifestImporter) -> (artifact id: '4914195fadd462954a635b65250787ed') in 0.0116902 seconds -2026-03-27T14:00:31.7192540Z 15:00:31.718 | Start importing Packages/com.unity.modules.unityanalytics/package.json using Guid(26a4f29db434fd79025c91f6126382cc) (PackageManifestImporter) -> (artifact id: '4f55ed6c07c9d593d430c69b12caecd5') in 0.0188001 seconds -2026-03-27T14:00:31.7200899Z 15:00:31.719 | Start importing Packages/com.unity.modules.video/package.json using Guid(96d14b71b907bb52333b2886e665aba6) (PackageManifestImporter) -> (artifact id: '5663ce496606d4af708204c817adcf41') in 0.0084005 seconds -2026-03-27T14:00:31.7210930Z 15:00:31.720 | Start importing Packages/com.unity.modules.particlesystem/package.json using Guid(87d720faa37005c08600090e04d8c739) (PackageManifestImporter) -> (artifact id: 'd6aa8c20d84b997ec285a739a17be19d') in 0.0046294 seconds -2026-03-27T14:00:31.7219098Z 15:00:31.721 | Start importing Packages/com.unity.modules.physics2d/package.json using Guid(f7a8357347c80dc69c08d0b1a05e2122) (PackageManifestImporter) -> (artifact id: 'e2187f6cfb7435ccc7f0487e9567b857') in 0.0044709 seconds -2026-03-27T14:00:31.7320608Z 15:00:31.722 | Start importing Packages/com.unity.modules.vr/package.json using Guid(18a4fadfef534684d5af39ca8dc48fe9) (PackageManifestImporter) -> (artifact id: '84052aabb171f6ab790f35d596f62a3c') in 0.0056422 seconds -2026-03-27T14:00:31.7329807Z 15:00:31.732 | Start importing Packages/com.unity.modules.vectorgraphics/package.json using Guid(78e5667e52329c3ceef41288763404ae) (PackageManifestImporter) -> (artifact id: '8bda5c963352e20d9c07831179d6adc4') in 0.0048755 seconds -2026-03-27T14:00:31.7342568Z 15:00:31.733 | Start importing Packages/com.unity.modules.wind/package.json using Guid(b83f06ac0c0696e9563230865ca72b81) (PackageManifestImporter) -> (artifact id: '48870b0fad529c24ec23948838d08134') in 0.0083518 seconds -2026-03-27T14:00:31.7352166Z 15:00:31.734 | Start importing Packages/com.unity.multiplayer.center/Third Party Notices.md using Guid(c8f6fa942856442b8bd72594d3ce7363) (TextScriptImporter) -> (artifact id: 'f117005acc7b64b33c08eea913553eaf') in 0.0060749 seconds -2026-03-27T14:00:31.7385076Z 15:00:31.735 | Start importing Packages/com.unity.modules.umbra/package.json using Guid(d85e5eeaf8f135aeaaebdc8aa3cff6c3) (PackageManifestImporter) -> (artifact id: '6d849251c9e4cdd9848460d7e0ea0550') in 0.0060887 seconds -2026-03-27T14:00:31.7687493Z 15:00:31.742 | Start importing Packages/com.unity.modules.audio/package.json using Guid(e9df95f53f1c1d0c9199e235d6c42b50) (PackageManifestImporter) -> (artifact id: '14bdb854ae6daae762f5873a0a889a4a') in 0.0081343 seconds -2026-03-27T14:00:31.7908509Z 15:00:31.772 | Start importing Packages/com.unity.modules.physics/package.json using Guid(1a4266815e998967becf686f9c71f0a6) (PackageManifestImporter) -> (artifact id: '4fbeefd29956a8cb2b920ec02d72eda6') in 0.0070132 seconds -2026-03-27T14:00:31.8158354Z 15:00:31.798 | Start importing Packages/com.unity.modules.vehicles/package.json using Guid(6afb166a156df2d20433d981f4bb2832) (PackageManifestImporter) -> (artifact id: '16ef665dac3746b447ea167f980da255') in 0.005553 seconds -2026-03-27T14:00:31.8186785Z 15:00:31.818 | Start importing Packages/com.unity.modules.unitywebrequestwww/package.json using Guid(fa27413e9edb06a6058d6c894eca0338) (PackageManifestImporter) -> (artifact id: '544e02c2e4fff416b5755915f1fd3dbb') in 0.0103842 seconds -2026-03-27T14:00:31.8199461Z 15:00:31.819 | Start importing Packages/com.unity.multiplayer.center/CHANGELOG.md using Guid(3bbd27b3dd7be4a74aeab8da6b0af5cc) (TextScriptImporter) -> (artifact id: 'cc786d9fe9f62ad8c73bc5c3c7572c6b') in 0.0103128 seconds -2026-03-27T14:00:31.8208711Z 15:00:31.820 | Start importing Packages/com.unity.modules.unitywebrequestaudio/package.json using Guid(4b518b37798c97b0f860962cbf615533) (PackageManifestImporter) -> (artifact id: 'ef897d7e225c33dae9315c5417c1634d') in 0.0090192 seconds -2026-03-27T14:00:31.8215259Z 15:00:31.821 | Start importing Packages/com.unity.modules.hierarchycore/package.json using Guid(9b1a5759726ef9d39a0ab82047b615f1) (PackageManifestImporter) -> (artifact id: '2c156e03cb13bcc2a06b8c9b0a7a8ac4') in 0.0108199 seconds -2026-03-27T14:00:31.8221553Z 15:00:31.821 | Start importing Packages/com.unity.modules.xr/package.json using Guid(2c814623cb42764d304be0c5ddd03ceb) (PackageManifestImporter) -> (artifact id: '5cf90f838d6837d1fee4108bf50e9644') in 0.0052047 seconds -2026-03-27T14:00:31.8227508Z 15:00:31.822 | Start importing Packages/com.unity.modules.adaptiveperformance/package.json using Guid(4c413a81cadcce7038e446e56570117e) (PackageManifestImporter) -> (artifact id: 'a6f258ba23d61d479758aecde11c60fd') in 0.0051042 seconds -2026-03-27T14:00:31.8233443Z 15:00:31.822 | Start importing Packages/com.unity.modules.director/package.json using Guid(ec02776fe29df900b897106d61977735) (PackageManifestImporter) -> (artifact id: '050663fa3328fcc8ba0607ef180c9ff4') in 0.0049231 seconds -2026-03-27T14:00:31.8242762Z 15:00:31.823 | Start importing Packages/com.unity.modules.terrain/package.json using Guid(6d56244f8c39a851975d3c0bd432c66f) (PackageManifestImporter) -> (artifact id: '7f03c5409fa603fad1c4d8ccf7d0f4c3') in 0.008766 seconds -2026-03-27T14:00:31.8248660Z 15:00:31.824 | Start importing Packages/com.unity.modules.androidjni/package.json using Guid(bd1af0a6633ee94ae21c7d1d702cdc12) (PackageManifestImporter) -> (artifact id: 'e8484e022b3ccedd12256bf63c408f83') in 0.0056139 seconds -2026-03-27T14:00:31.8256184Z 15:00:31.825 | Start importing Packages/com.unity.modules.animation/package.json using Guid(7ef8348b8ea834d7e1bc214b07f7fb87) (PackageManifestImporter) -> (artifact id: '0ce165297b0905ed3c714c8d81c161e8') in 0.0061315 seconds -2026-03-27T14:00:31.8266749Z 15:00:31.825 | Start importing Packages/com.unity.modules.unitywebrequest/package.json using Guid(3fdd83b151eb8d25c5e2f82fc39dcb04) (PackageManifestImporter) -> (artifact id: 'dd8e3d3d718b3295cafb73aeafc2d7e8') in 0.0058457 seconds -2026-03-27T14:00:31.8273774Z 15:00:31.826 | Start importing Packages/com.unity.modules.uielements/package.json using Guid(4f0f9b9f3ed97ad2b9ba8f1a8e4666c2) (PackageManifestImporter) -> (artifact id: 'b4bf06aa21c6a6487308088a12a0a110') in 0.0068086 seconds -2026-03-27T14:00:31.8279129Z 15:00:31.827 | Start importing Packages/com.unity.modules.ui/package.json using Guid(bfd567a3d1631a761bca9e99fa53d86d) (PackageManifestImporter) -> (artifact id: 'b6a9b41c4f747864b57f61357f87e39b') in 0.0047182 seconds -2026-03-27T14:00:31.8285778Z 15:00:31.828 | Start importing Packages/com.unity.multiplayer.center/package.json using Guid(df0857f6a11054383be91b1f8e1b5800) (PackageManifestImporter) -> (artifact id: 'f7d7a4be8267ea77ff8fe0735c13d1dd') in 0.0061184 seconds -2026-03-27T14:00:31.8293744Z 15:00:31.828 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/light.uss using Guid(f1ac2efb1bcd4dfd95dc196ed3c11367) (ScriptedImporter) -> (artifact id: '458bf44e1ac492fdc83fab3f0ce4a01f') in 0.1339678 seconds -2026-03-27T14:00:31.8300636Z 15:00:31.829 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/dark.uss using Guid(1984cd07fe96417f9e88f5771f6b4b32) (ScriptedImporter) -> (artifact id: 'e3f46b2f53ad9be56c19483d28960867') in 0.0380753 seconds -2026-03-27T14:00:31.8305394Z 15:00:31.830 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/MultiplayerCenterWindow.uss using Guid(bac00d6e07f0b4305bb395363c89d92b) (ScriptedImporter) -2026-03-27T14:00:32.2414479Z 15:00:32.235 | -> (artifact id: 'fd0e67db121a8d5c77fd0c3a4446df4c') in 0.078823 seconds -2026-03-27T14:00:32.2424698Z 15:00:32.241 | Loading style catalogs (6) -2026-03-27T14:00:32.2432560Z 15:00:32.242 | StyleSheets/Extensions/base/common.uss -2026-03-27T14:00:32.2450231Z 15:00:32.243 | UIPackageResources/StyleSheets/Default/Variables/Public/common.uss -2026-03-27T14:00:32.2458819Z 15:00:32.245 | StyleSheets/Northstar/common.uss -2026-03-27T14:00:32.2467366Z 15:00:32.246 | StyleSheets/Extensions/fonts/inter.uss -2026-03-27T14:00:32.2477407Z 15:00:32.247 | StyleSheets/Extensions/base/dark.uss -2026-03-27T14:00:32.2490541Z 15:00:32.248 | UIPackageResources/StyleSheets/Default/Northstar/Palette/dark.uss -2026-03-27T14:00:32.2529534Z 15:00:32.249 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -2026-03-27T14:00:32.2538828Z 15:00:32.253 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:00:32.2546943Z 15:00:32.254 | Asset Pipeline Refresh (id=90673b4cb721daa4fb1772346d729198): Total: 37.840 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport) -2026-03-27T14:00:32.2574442Z 15:00:32.255 | Summary: -2026-03-27T14:00:32.2582890Z 15:00:32.257 | Imports: total=193 (actual=193, local cache=0, cache server=0) -2026-03-27T14:00:32.2591528Z 15:00:32.258 | Asset DB Process Time: managed=23 ms, native=3701 ms -2026-03-27T14:00:32.2597640Z 15:00:32.259 | Asset DB Callback time: managed=193 ms, native=6900 ms -2026-03-27T14:00:32.2603365Z 15:00:32.260 | Scripting: domain reloads=1, domain reload time=794 ms, compile time=26199 ms, other=27 ms -2026-03-27T14:00:32.2615702Z 15:00:32.260 | Project Asset Count: scripts=112, non-scripts=81 -2026-03-27T14:00:32.2622092Z 15:00:32.261 | Asset File Changes: new=255, changed=255, moved=0, deleted=0 -2026-03-27T14:00:32.2627846Z 15:00:32.262 | Scan Filter Count: 0 -2026-03-27T14:00:32.2633048Z 15:00:32.262 | InvokeCustomDependenciesCallbacks: 0.001ms -2026-03-27T14:00:32.2638382Z 15:00:32.263 | InvokePackagesCallback: 6880.318ms -2026-03-27T14:00:32.2643787Z 15:00:32.263 | ApplyChangesToAssetFolders: 3.943ms -2026-03-27T14:00:32.2650180Z 15:00:32.264 | Scan: 360.110ms -2026-03-27T14:00:32.2662051Z 15:00:32.265 | OnSourceAssetsModified: 26.988ms -2026-03-27T14:00:32.2680253Z 15:00:32.267 | CategorizeAssetsWithTransientArtifact: 6.711ms -2026-03-27T14:00:32.2690876Z 15:00:32.268 | ProcessAssetsWithTransientArtifactChanges: 6.978ms -2026-03-27T14:00:32.2703678Z 15:00:32.269 | CategorizeAssets: 3.575ms -2026-03-27T14:00:32.2712596Z 15:00:32.270 | ImportOutOfDateAssets: 3042.267ms (-24922.005ms without children) -2026-03-27T14:00:32.2720129Z 15:00:32.271 | ImportManagerImport: 1764.900ms (265.271ms without children) -2026-03-27T14:00:32.2726511Z 15:00:32.272 | ImportInProcess: 1499.213ms -2026-03-27T14:00:32.2732886Z 15:00:32.272 | UpdateCategorizedAssets: 0.416ms -2026-03-27T14:00:32.2740105Z 15:00:32.273 | CompileScripts: 26198.731ms -2026-03-27T14:00:32.2747167Z 15:00:32.274 | ReloadNativeAssets: 0.000ms -2026-03-27T14:00:32.2752773Z 15:00:32.274 | UnloadImportedAssets: 0.131ms -2026-03-27T14:00:32.2758707Z 15:00:32.275 | ReloadImportedAssets: 0.014ms -2026-03-27T14:00:32.2764677Z 15:00:32.276 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.057ms -2026-03-27T14:00:32.2770787Z 15:00:32.276 | InitializingProgressBar: 0.007ms -2026-03-27T14:00:32.2776570Z 15:00:32.277 | PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms -2026-03-27T14:00:32.2782464Z 15:00:32.277 | OnDemandSchedulerStart: 0.432ms -2026-03-27T14:00:32.2789466Z 15:00:32.278 | PostProcessAllAssets: 200.948ms -2026-03-27T14:00:32.2794423Z 15:00:32.279 | Hotreload: 1.726ms -2026-03-27T14:00:32.2800354Z 15:00:32.279 | GatherAllCurrentPrimaryArtifactRevisions: 0.585ms -2026-03-27T14:00:32.2858677Z 15:00:32.285 | UnloadStreamsBegin: 2.571ms -2026-03-27T14:00:32.2886472Z 15:00:32.286 | PersistCurrentRevisions: 0.759ms -2026-03-27T14:00:32.2899057Z 15:00:32.289 | UnloadStreamsEnd: 0.002ms -2026-03-27T14:00:32.2907388Z 15:00:32.290 | GenerateScriptTypeHashes: 0.121ms -2026-03-27T14:00:32.2914167Z 15:00:32.290 | Untracked: 27302.649ms -2026-03-27T14:00:32.2921678Z 15:00:32.291 | -2026-03-27T14:00:32.2937943Z 15:00:32.292 | Application.AssetDatabase Initial Refresh End -2026-03-27T14:00:32.2969674Z 15:00:32.294 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.14 seconds -2026-03-27T14:00:33.5167229Z 15:00:33.514 | Scanning for USB devices : 10.618ms -2026-03-27T14:00:33.5182594Z 15:00:33.517 | Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) (LibraryAssetImporter) -> (artifact id: 'f42c94535dc1e4f98ead7c188cc3f784') in 0.0055003 seconds -2026-03-27T14:00:33.5187868Z 15:00:33.518 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -2026-03-27T14:00:33.5194823Z 15:00:33.518 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:00:33.5202545Z 15:00:33.519 | Asset Pipeline Refresh (id=164e93b9219947045a6a3a74add8ec31): Total: 0.048 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) -2026-03-27T14:00:33.5210414Z 15:00:33.520 | Initializing Unity extensions: -2026-03-27T14:00:33.5217773Z 15:00:33.521 | [MODES] ModeService[none].Initialize -2026-03-27T14:00:33.5224076Z 15:00:33.521 | [MODES] ModeService[none].LoadModes -2026-03-27T14:00:33.5230073Z 15:00:33.522 | [MODES] Loading mode Default (0) for mode-current-id-IntegrationTest6000.3.8f1 -2026-03-27T14:00:40.4981389Z 15:00:40.494 | Unloading 2 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:00:40.5011009Z 15:00:40.500 | Unloading 77 unused Assets / (1.0 MB). Loaded Objects now: 694. -2026-03-27T14:00:40.5017800Z 15:00:40.501 | Memory consumption went from 92.7 MB to 91.7 MB. -2026-03-27T14:00:40.5027129Z 15:00:40.502 | Total: 8.190800 ms (FindLiveObjects: 0.049600 ms CreateObjectMapping: 0.007400 ms MarkObjects: 7.566800 ms DeleteObjects: 0.565700 ms) -2026-03-27T14:00:40.5034479Z 15:00:40.503 | -2026-03-27T14:00:40.5045123Z 15:00:40.504 | [ps5] module:libc.prx -2026-03-27T14:00:40.5068855Z 15:00:40.504 | [ps5] module:libSceFontGsm.prx -2026-03-27T14:00:40.5082055Z 15:00:40.507 | [ps5] module:libSceJobManager.prx -2026-03-27T14:00:40.5137511Z 15:00:40.511 | [ps5] module:libSceJobManager_nosubmission.prx -2026-03-27T14:00:40.5144846Z 15:00:40.514 | [ps5] module:libSceNpCppWebApi.prx -2026-03-27T14:00:40.5150448Z 15:00:40.514 | [ps5] module:libScePfs.prx -2026-03-27T14:00:40.5159574Z 15:00:40.515 | Batchmode quit successfully invoked - shutting down! -2026-03-27T14:00:40.5167761Z 15:00:40.516 | Curl error 42: Callback aborted -2026-03-27T14:00:40.9528832Z 15:00:40.934 | Killing ADB server in 0.1366714 seconds. -2026-03-27T14:00:40.9840618Z 15:00:40.964 | [Physics::Module] Cleanup current backend. -2026-03-27T14:00:40.9888453Z 15:00:40.986 | [Physics::Module] Id: 0xf2b8ea05 -2026-03-27T14:00:40.9917867Z 15:00:40.989 | Input System module state changed to: ShutdownInProgress. -2026-03-27T14:00:41.0019266Z 15:00:40.992 | Input System polling thread exited. -2026-03-27T14:00:41.0106730Z 15:00:41.007 | Input System module state changed to: Shutdown. -2026-03-27T14:00:41.0173578Z 15:00:41.013 | [Licensing::IpcConnector] LicenseClient-github-runner-notifications channel disconnected successfully. -2026-03-27T14:00:41.0250267Z 15:00:41.019 | [Licensing::IpcConnector] LicenseClient-github-runner channel disconnected successfully. -2026-03-27T14:00:41.0257361Z 15:00:41.025 | AcceleratorClientConnectionCallback - disconnected - :0 -2026-03-27T14:00:41.0264013Z 15:00:41.026 | Cleanup mono -2026-03-27T14:00:44.3159360Z 15:00:44.315 | Exiting batchmode successfully now! -2026-03-27T14:00:44.3163692Z 15:00:44.315 | Exiting without the bug reporter. Application will terminate with return code 0 -2026-03-27T14:00:44.7329828Z ##[endgroup] -2026-03-27T14:00:44.7385635Z Unity finished successfully. Time taken: 00:01:09.485 -2026-03-27T14:00:44.7398761Z 15:00:44.739 | Copying Editor scripts to integration project... -2026-03-27T14:00:44.8137199Z 15:00:44.813 | Editor scripts copied -2026-03-27T14:00:44.9085047Z 15:00:44.907 | Checking Unity UI package in manifest.json... -2026-03-27T14:00:44.9234676Z 15:00:44.923 | Adding Unity UI package -2026-03-27T14:00:44.9428754Z 15:00:44.942 | [OK] Project created -2026-03-27T14:00:44.9434423Z -2026-03-27T14:00:44.9438439Z ================================================================ -2026-03-27T14:00:44.9445221Z ADDING SENTRY -2026-03-27T14:00:44.9454020Z ================================================================ -2026-03-27T14:00:44.9459239Z 15:00:44.945 | Package path: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package -2026-03-27T14:00:44.9773423Z 15:00:44.976 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -2026-03-27T14:00:44.9798184Z 15:00:44.979 | Installing Sentry package... -2026-03-27T14:00:44.9867470Z ##[group]Run C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -batchmode -projectPath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -installSentry Disk -sentryPackagePath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package -logfile unity.log -2026-03-27T14:00:44.9879447Z Removing Unity log unity.log -2026-03-27T14:00:45.0182323Z Waiting for Unity to finish. -2026-03-27T14:00:45.4626590Z 15:00:45.438 | [Licensing::Module] Trying to connect to existing licensing client channel... -2026-03-27T14:00:45.5038624Z 15:00:45.482 | Built from '6000.3/staging' branch; Version is '6000.3.8f1 (1c7db571dde0) revision 1867189'; Using compiler version '194234433'; Build Type 'Release' -2026-03-27T14:00:45.5400481Z 15:00:45.508 | [Licensing::IpcConnector] Channel LicenseClient-github-runner doesn't exist -2026-03-27T14:00:45.5962727Z 15:00:45.564 | OS: 'Windows 11 (10.0.26200) Professional' Language: 'en' Physical Memory: 16322 MB -2026-03-27T14:00:45.6329529Z 15:00:45.603 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1 -2026-03-27T14:00:45.6740832Z 15:00:45.644 | System architecture: x64 -2026-03-27T14:00:45.6763735Z 15:00:45.675 | Process architecture: x64 -2026-03-27T14:00:45.6941642Z 15:00:45.676 | Date: 2026-03-27T14:00:45Z -2026-03-27T14:00:45.7682471Z 15:00:45.701 | [Licensing::Module] Successfully launched the LicensingClient (PId: 39708) -2026-03-27T14:00:45.8563668Z 15:00:45.802 | -2026-03-27T14:00:45.9613102Z 15:00:45.876 | COMMAND LINE ARGUMENTS: -2026-03-27T14:00:45.9965305Z 15:00:45.976 | C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -2026-03-27T14:00:46.0272387Z 15:00:46.004 | -batchmode -2026-03-27T14:00:46.0716859Z 15:00:46.041 | -projectPath -2026-03-27T14:00:46.0966749Z 15:00:46.079 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:00:46.1264696Z 15:00:46.104 | -installSentry -2026-03-27T14:00:46.1513573Z 15:00:46.136 | Disk -2026-03-27T14:00:46.1521205Z 15:00:46.151 | -sentryPackagePath -2026-03-27T14:00:46.1691817Z 15:00:46.156 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package -2026-03-27T14:00:46.1894274Z 15:00:46.175 | -logfile -2026-03-27T14:00:46.2037656Z 15:00:46.192 | unity.log -2026-03-27T14:00:46.2215762Z 15:00:46.209 | Successfully changed project path to: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:00:46.2977602Z 15:00:46.258 | C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:00:46.3002645Z 15:00:46.299 | [UnityMemory] Configuration Parameters - Can be set up in boot.config -2026-03-27T14:00:46.3034677Z 15:00:46.301 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" -2026-03-27T14:00:46.3041861Z 15:00:46.303 | "memorysetup-temp-allocator-size-audio-worker=65536" -2026-03-27T14:00:46.3143475Z 15:00:46.304 | "memorysetup-temp-allocator-size-gfx=262144" -2026-03-27T14:00:46.3317277Z 15:00:46.315 | "memorysetup-allocator-temp-initial-block-size-main=262144" -2026-03-27T14:00:46.3474091Z 15:00:46.337 | "memorysetup-allocator-temp-initial-block-size-worker=262144" -2026-03-27T14:00:46.3747583Z 15:00:46.361 | "memorysetup-temp-allocator-size-background-worker=32768" -2026-03-27T14:00:46.4055904Z 15:00:46.385 | "memorysetup-temp-allocator-size-job-worker=262144" -2026-03-27T14:00:46.4171519Z 15:00:46.409 | "memorysetup-temp-allocator-size-preload-manager=33554432" -2026-03-27T14:00:46.4246135Z 15:00:46.417 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:00:46.4333353Z 15:00:46.424 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:00:46.4340823Z 15:00:46.433 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:00:46.4383865Z 15:00:46.436 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:00:46.4408903Z 15:00:46.440 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:00:46.4424134Z 15:00:46.441 | "memorysetup-bucket-allocator-granularity=16" -2026-03-27T14:00:46.4431672Z 15:00:46.442 | "memorysetup-bucket-allocator-bucket-count=8" -2026-03-27T14:00:46.4436930Z 15:00:46.443 | "memorysetup-bucket-allocator-block-size=33554432" -2026-03-27T14:00:46.4442034Z 15:00:46.443 | "memorysetup-bucket-allocator-block-count=8" -2026-03-27T14:00:46.4447965Z 15:00:46.444 | "memorysetup-main-allocator-block-size=16777216" -2026-03-27T14:00:46.4453399Z 15:00:46.444 | "memorysetup-thread-allocator-block-size=16777216" -2026-03-27T14:00:46.4459097Z 15:00:46.445 | "memorysetup-gfx-main-allocator-block-size=16777216" -2026-03-27T14:00:46.4464484Z 15:00:46.446 | "memorysetup-gfx-thread-allocator-block-size=16777216" -2026-03-27T14:00:46.4471278Z 15:00:46.446 | "memorysetup-cache-allocator-block-size=4194304" -2026-03-27T14:00:46.4477786Z 15:00:46.447 | "memorysetup-typetree-allocator-block-size=2097152" -2026-03-27T14:00:46.4483478Z 15:00:46.447 | "memorysetup-profiler-bucket-allocator-granularity=16" -2026-03-27T14:00:46.4490178Z 15:00:46.448 | "memorysetup-profiler-bucket-allocator-bucket-count=8" -2026-03-27T14:00:46.4496436Z 15:00:46.449 | "memorysetup-profiler-bucket-allocator-block-size=33554432" -2026-03-27T14:00:46.4501829Z 15:00:46.449 | "memorysetup-profiler-bucket-allocator-block-count=8" -2026-03-27T14:00:46.4507208Z 15:00:46.450 | "memorysetup-profiler-allocator-block-size=16777216" -2026-03-27T14:00:46.4513392Z 15:00:46.450 | "memorysetup-profiler-editor-allocator-block-size=1048576" -2026-03-27T14:00:46.4518618Z 15:00:46.451 | "memorysetup-temp-allocator-size-main=16777216" -2026-03-27T14:00:46.4523909Z 15:00:46.452 | "memorysetup-job-temp-allocator-block-size=2097152" -2026-03-27T14:00:46.4545512Z 15:00:46.452 | "memorysetup-job-temp-allocator-block-size-background=1048576" -2026-03-27T14:00:46.4552438Z 15:00:46.454 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" -2026-03-27T14:00:46.4559294Z 15:00:46.455 | "memorysetup-temp-allocator-size-cloud-worker=32768" -2026-03-27T14:00:46.4569751Z 15:00:46.456 | Player connection [36288] Target information: -2026-03-27T14:00:46.4586514Z 15:00:46.458 | -2026-03-27T14:00:46.4594850Z 15:00:46.459 | Player connection [36288] * "[IP] 10.2.1.51 [Port] 55504 [Flags] 2 [Guid] 4081646423 [EditorId] 4081646423 [Version] 1048832 [Id] WindowsEditor(7,GDX-T1) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" -2026-03-27T14:00:46.4604321Z 15:00:46.460 | -2026-03-27T14:00:46.4612750Z 15:00:46.460 | Player connection [36288] Host joined multi-casting on [225.0.0.222:54997]... -2026-03-27T14:00:46.4617762Z 15:00:46.461 | Player connection [36288] Host joined alternative multi-casting on [225.0.0.222:34997]... -2026-03-27T14:00:46.4622472Z 15:00:46.461 | Input System module state changed to: Initialized. -2026-03-27T14:00:46.4633363Z 15:00:46.462 | [Physics::Module] Initialized fallback backend. -2026-03-27T14:00:46.4640358Z 15:00:46.463 | [Physics::Module] Id: 0xdecafbad -2026-03-27T14:00:46.4646895Z 15:00:46.464 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner" at "2026-03-27T14:00:46.2245575Z" -2026-03-27T14:00:46.4653437Z 15:00:46.464 | [Package Manager] Connected to IPC stream "Upm-33660" after 0.6 seconds. -2026-03-27T14:00:46.4659202Z 15:00:46.465 | [Licensing::Module] Licensing is not yet initialized. -2026-03-27T14:00:49.3703857Z 15:00:49.354 | [Licensing::Client] Handshaking with LicensingClient: -2026-03-27T14:00:49.3768388Z 15:00:49.373 | Version: 1.17.4+4293ba1 -2026-03-27T14:00:49.3776276Z 15:00:49.377 | Session Id: 6c186032bbef4b809d1770643c8ab936 -2026-03-27T14:00:49.3783821Z 15:00:49.377 | Correlation Id: e5cc8eb76b569ceb637cd5a2e41c2a80 -2026-03-27T14:00:49.3789117Z 15:00:49.378 | External correlation Id: 141454462539695518 -2026-03-27T14:00:49.3794954Z 15:00:49.379 | Machine Id: b5cL0vq5etg728hHCfaSnjJzEl4= -2026-03-27T14:00:49.3807246Z 15:00:49.379 | [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-github-runner" (connect: 0.91s, validation: 0.12s, handshake: 2.68s) -2026-03-27T14:00:49.3813670Z 15:00:49.380 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner-notifications" at "2026-03-27T14:00:49.0180963Z" -2026-03-27T14:00:49.3818568Z 15:00:49.381 | [Licensing::Module] Connected to LicensingClient (PId: 39708, launch time: 0.02, total connection time: 3.70s) -2026-03-27T14:00:49.3836780Z 15:00:49.382 | [Licensing::Module] Error: Access token is unavailable; failed to update -2026-03-27T14:00:49.3869448Z 15:00:49.386 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:00:49.3893254Z 15:00:49.387 | [Licensing::Module] License group: -2026-03-27T14:00:49.3988198Z 15:00:49.390 | Id: SC-6P43-RKFA-9PYH-ZZ9Q-XXXX -2026-03-27T14:00:49.3996515Z 15:00:49.399 | Product: Unity Pro -2026-03-27T14:00:49.4006714Z 15:00:49.400 | Type: ULF -2026-03-27T14:00:49.4012691Z 15:00:49.400 | Expiration: 2027-03-05T00:00:00Z -2026-03-27T14:00:49.4018604Z 15:00:49.401 | [Licensing::Client] Successfully updated license, isAsync: True, time: 0.01 -2026-03-27T14:00:49.4025114Z 15:00:49.402 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:00:49.4033120Z 15:00:49.402 | [Licensing::Module] Licensing Background thread has ended after 3.78s -2026-03-27T14:00:49.4038588Z 15:00:49.403 | [Licensing::Module] Licensing is initialized (took 2.63s). -2026-03-27T14:00:49.4043879Z 15:00:49.403 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:00:49.4051923Z 15:00:49.404 | Library Redirect Path: Library/ -2026-03-27T14:00:49.4076265Z 15:00:49.406 | [Physics::Module] Selected backend. -2026-03-27T14:00:49.4084052Z 15:00:49.407 | [Physics::Module] Name: PhysX -2026-03-27T14:00:49.4090188Z 15:00:49.408 | [Physics::Module] Id: 0xf2b8ea05 -2026-03-27T14:00:49.4095230Z 15:00:49.409 | [Physics::Module] SDK Version: 4.1.2 -2026-03-27T14:00:49.4100352Z 15:00:49.409 | [Physics::Module] Integration Version: 1.0.0 -2026-03-27T14:00:49.4106714Z 15:00:49.410 | [Physics::Module] Threading Mode: Multi-Threaded -2026-03-27T14:00:49.4115291Z 15:00:49.410 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -2026-03-27T14:00:49.4120317Z 15:00:49.411 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:00:49.4125528Z 15:00:49.412 | Initialize engine version: 6000.3.8f1 (1c7db571dde0) -2026-03-27T14:00:49.4133337Z 15:00:49.412 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Resources/UnitySubsystems -2026-03-27T14:00:49.4137589Z 15:00:49.413 | [Subsystems] Discovering subsystems at path C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets -2026-03-27T14:00:49.4142265Z 15:00:49.413 | GfxDevice: creating device client; kGfxThreadingModeNonThreaded -2026-03-27T14:00:49.8444192Z 15:00:49.829 | Direct3D: -2026-03-27T14:00:49.8740316Z 15:00:49.858 | Version: Direct3D 11.0 [level 11.1] -2026-03-27T14:00:49.8891550Z 15:00:49.878 | Renderer: NVIDIA GeForce GTX 1080 (ID=0x1b80) -2026-03-27T14:00:49.8980866Z 15:00:49.890 | Vendor: NVIDIA -2026-03-27T14:00:49.8992382Z 15:00:49.898 | VRAM: 8059 MB -2026-03-27T14:00:49.9040086Z 15:00:49.899 | Driver: 32.0.15.7716 -2026-03-27T14:00:49.9054384Z 15:00:49.904 | Initialize mono -2026-03-27T14:00:49.9100730Z 15:00:49.905 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed' -2026-03-27T14:00:49.9196987Z 15:00:49.917 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -2026-03-27T14:00:49.9464589Z 15:00:49.929 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/etc' -2026-03-27T14:00:49.9489026Z 15:00:49.947 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56660 -2026-03-27T14:00:49.9495007Z 15:00:49.949 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts -2026-03-27T14:00:49.9511565Z 15:00:49.949 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts -2026-03-27T14:00:49.9539256Z 15:00:49.951 | ImportWorker Server TCP listen port: 0 -2026-03-27T14:00:49.9586691Z 15:00:49.957 | AcceleratorClientConnectionCallback - disconnected - :0 -2026-03-27T14:00:49.9661369Z 15:00:49.962 | Begin MonoManager ReloadAssembly -2026-03-27T14:00:50.3761547Z 15:00:50.368 | Registering precompiled unity dll's ... -2026-03-27T14:00:50.3783838Z 15:00:50.377 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -2026-03-27T14:00:50.3798678Z 15:00:50.379 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:00:50.3806947Z 15:00:50.380 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/PS5Player/UnityEditor.PS5.Extensions.dll -2026-03-27T14:00:50.3817679Z 15:00:50.381 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/UnityEditor.GameCoreScarlett.Extensions.dll -2026-03-27T14:00:50.3824652Z 15:00:50.382 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:00:50.3926655Z 15:00:50.382 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -2026-03-27T14:00:50.3937761Z 15:00:50.393 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreXboxOneSupport/UnityEditor.GameCoreXboxOne.Extensions.dll -2026-03-27T14:00:50.3943571Z 15:00:50.393 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:00:50.3956465Z 15:00:50.395 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -2026-03-27T14:00:50.3982662Z 15:00:50.397 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/Switch/UnityEditor.Switch.Extensions.dll -2026-03-27T14:00:50.4036817Z 15:00:50.402 | Registered in 0.033652 seconds. -2026-03-27T14:00:50.8181185Z 15:00:50.815 | - Loaded All Assemblies, in 0.806 seconds -2026-03-27T14:00:51.2266761Z 15:00:51.220 | Native extension for iOS target not found -2026-03-27T14:00:51.2390793Z 15:00:51.227 | Native extension for Android target not found -2026-03-27T14:00:54.1362014Z 15:00:54.135 | Android Extension - Scanning For ADB Devices 2744 ms -2026-03-27T14:00:54.1372717Z 15:00:54.136 | Native extension for WindowsStandalone target not found -2026-03-27T14:00:54.5545594Z 15:00:54.553 | ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:False -2026-03-27T14:00:54.5556354Z 15:00:54.555 | Mono: successfully reloaded assembly -2026-03-27T14:00:54.5560500Z 15:00:54.555 | - Finished resetting the current domain, in 3.781 seconds -2026-03-27T14:00:54.5565236Z 15:00:54.556 | Domain Reload Profiling: 4578ms -2026-03-27T14:00:54.5573917Z 15:00:54.556 | BeginReloadAssembly (269ms) -2026-03-27T14:00:54.5579237Z 15:00:54.557 | ExecutionOrderSort (0ms) -2026-03-27T14:00:54.5584546Z 15:00:54.558 | DisableScriptedObjects (0ms) -2026-03-27T14:00:54.5590461Z 15:00:54.558 | BackupInstance (0ms) -2026-03-27T14:00:54.5595573Z 15:00:54.559 | ReleaseScriptingObjects (0ms) -2026-03-27T14:00:54.5600941Z 15:00:54.559 | CreateAndSetChildDomain (3ms) -2026-03-27T14:00:54.5605617Z 15:00:54.560 | RebuildCommonClasses (56ms) -2026-03-27T14:00:54.5612170Z 15:00:54.560 | RebuildNativeTypeToScriptingClass (25ms) -2026-03-27T14:00:54.5617348Z 15:00:54.561 | initialDomainReloadingComplete (108ms) -2026-03-27T14:00:54.5623637Z 15:00:54.562 | LoadAllAssembliesAndSetupDomain (337ms) -2026-03-27T14:00:54.5630247Z 15:00:54.562 | LoadAssemblies (259ms) -2026-03-27T14:00:54.5636114Z 15:00:54.563 | RebuildTransferFunctionScriptingTraits (0ms) -2026-03-27T14:00:54.5641076Z 15:00:54.563 | AnalyzeDomain (328ms) -2026-03-27T14:00:54.5648871Z 15:00:54.564 | TypeCache.Refresh (327ms) -2026-03-27T14:00:54.5660431Z 15:00:54.565 | TypeCache.ScanAssembly (304ms) -2026-03-27T14:00:54.5678039Z 15:00:54.566 | BuildScriptInfoCaches (0ms) -2026-03-27T14:00:54.5705807Z 15:00:54.570 | ResolveRequiredComponents (1ms) -2026-03-27T14:00:54.5710806Z 15:00:54.570 | FinalizeReload (3782ms) -2026-03-27T14:00:54.5716763Z 15:00:54.571 | ReleaseScriptCaches (0ms) -2026-03-27T14:00:54.5721897Z 15:00:54.571 | RebuildScriptCaches (0ms) -2026-03-27T14:00:54.5735055Z 15:00:54.572 | SetupLoadedEditorAssemblies (3729ms) -2026-03-27T14:00:54.5741896Z 15:00:54.573 | LogAssemblyErrors (0ms) -2026-03-27T14:00:54.5748949Z 15:00:54.574 | InitializePlatformSupportModulesInManaged (3334ms) -2026-03-27T14:00:54.5757139Z 15:00:54.575 | SetLoadedEditorAssemblies (5ms) -2026-03-27T14:00:54.5759593Z 15:00:54.575 | BeforeProcessingInitializeOnLoad (113ms) -2026-03-27T14:00:54.5765485Z 15:00:54.576 | ProcessInitializeOnLoadAttributes (179ms) -2026-03-27T14:00:54.5771879Z 15:00:54.576 | ProcessInitializeOnLoadMethodAttributes (98ms) -2026-03-27T14:00:54.5777964Z 15:00:54.577 | AfterProcessingInitializeOnLoad (0ms) -2026-03-27T14:00:54.5782840Z 15:00:54.577 | EditorAssembliesLoaded (0ms) -2026-03-27T14:00:54.5789737Z 15:00:54.578 | ExecutionOrderSort2 (0ms) -2026-03-27T14:00:54.5796815Z 15:00:54.579 | AwakeInstancesAfterBackupRestoration (0ms) -2026-03-27T14:00:54.5802414Z 15:00:54.579 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:00:54.5809819Z 15:00:54.580 | Application.AssetDatabase Initial Refresh Start -2026-03-27T14:00:54.5815362Z 15:00:54.581 | Package Manager log level set to [2] -2026-03-27T14:00:54.5821730Z 15:00:54.581 | [Package Manager] Restoring resolved packages state from cache -2026-03-27T14:00:54.5828551Z 15:00:54.582 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:00:54.5845471Z 15:00:54.584 | [Package Manager] Registered 37 packages: -2026-03-27T14:00:54.5851642Z 15:00:54.584 | Built-in packages: -2026-03-27T14:00:54.5859919Z 15:00:54.585 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) -2026-03-27T14:00:54.5869857Z 15:00:54.585 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) -2026-03-27T14:00:54.5874575Z 15:00:54.586 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) -2026-03-27T14:00:54.5892091Z 15:00:54.588 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) -2026-03-27T14:00:54.5903675Z 15:00:54.589 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) -2026-03-27T14:00:54.5912404Z 15:00:54.590 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) -2026-03-27T14:00:54.5921744Z 15:00:54.591 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) -2026-03-27T14:00:54.5930897Z 15:00:54.592 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) -2026-03-27T14:00:54.5941879Z 15:00:54.593 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) -2026-03-27T14:00:54.5958801Z 15:00:54.595 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) -2026-03-27T14:00:54.5974277Z 15:00:54.596 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) -2026-03-27T14:00:54.5997808Z 15:00:54.597 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) -2026-03-27T14:00:54.6013552Z 15:00:54.600 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) -2026-03-27T14:00:54.6022485Z 15:00:54.601 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) -2026-03-27T14:00:54.6030884Z 15:00:54.602 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) -2026-03-27T14:00:54.6039628Z 15:00:54.603 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) -2026-03-27T14:00:54.6049983Z 15:00:54.604 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) -2026-03-27T14:00:54.6058617Z 15:00:54.605 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) -2026-03-27T14:00:54.6067962Z 15:00:54.606 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) -2026-03-27T14:00:54.6094050Z 15:00:54.608 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) -2026-03-27T14:00:54.6098628Z 15:00:54.609 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) -2026-03-27T14:00:54.6105264Z 15:00:54.610 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) -2026-03-27T14:00:54.6115704Z 15:00:54.610 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) -2026-03-27T14:00:54.6122058Z 15:00:54.611 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) -2026-03-27T14:00:54.6131185Z 15:00:54.612 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) -2026-03-27T14:00:54.6182438Z 15:00:54.617 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) -2026-03-27T14:00:54.6247417Z 15:00:54.618 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) -2026-03-27T14:00:54.6256943Z 15:00:54.625 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) -2026-03-27T14:00:54.6262250Z 15:00:54.625 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) -2026-03-27T14:00:54.6268315Z 15:00:54.626 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) -2026-03-27T14:00:54.6283836Z 15:00:54.627 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) -2026-03-27T14:00:54.6427338Z 15:00:54.628 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) -2026-03-27T14:00:54.6435495Z 15:00:54.643 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) -2026-03-27T14:00:54.6447608Z 15:00:54.643 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) -2026-03-27T14:00:54.6468069Z 15:00:54.645 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) -2026-03-27T14:00:54.6475979Z 15:00:54.647 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) -2026-03-27T14:00:54.6483409Z 15:00:54.647 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) -2026-03-27T14:00:54.6493925Z 15:00:54.648 | [Subsystems] No new subsystems found in resolved package list. -2026-03-27T14:00:54.6500167Z 15:00:54.649 | [Package Manager] Done registering packages in 0.04 seconds -2026-03-27T14:01:01.9810455Z 15:01:01.980 | [Package Manager] Done resolving packages in 7.46 seconds -2026-03-27T14:01:01.9816233Z 15:01:01.981 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:01.9821623Z 15:01:01.981 | [Package Manager] Lock file was modified -2026-03-27T14:01:01.9827359Z 15:01:01.982 | [Package Manager] Registered 38 packages: -2026-03-27T14:01:01.9833637Z 15:01:01.982 | Built-in packages: -2026-03-27T14:01:01.9839941Z 15:01:01.983 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) -2026-03-27T14:01:01.9845787Z 15:01:01.984 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) -2026-03-27T14:01:01.9863015Z 15:01:01.984 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) -2026-03-27T14:01:01.9880789Z 15:01:01.986 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) -2026-03-27T14:01:01.9905537Z 15:01:01.988 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) -2026-03-27T14:01:01.9923980Z 15:01:01.990 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) -2026-03-27T14:01:01.9942375Z 15:01:01.992 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) -2026-03-27T14:01:01.9964900Z 15:01:01.994 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) -2026-03-27T14:01:01.9985289Z 15:01:01.997 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) -2026-03-27T14:01:02.0048079Z 15:01:01.999 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) -2026-03-27T14:01:02.0079648Z 15:01:02.007 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) -2026-03-27T14:01:02.0085205Z 15:01:02.008 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) -2026-03-27T14:01:02.0091855Z 15:01:02.008 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) -2026-03-27T14:01:02.0097461Z 15:01:02.009 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) -2026-03-27T14:01:02.0222313Z 15:01:02.009 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) -2026-03-27T14:01:02.0509154Z 15:01:02.032 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) -2026-03-27T14:01:02.0793129Z 15:01:02.057 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) -2026-03-27T14:01:02.0802350Z 15:01:02.079 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) -2026-03-27T14:01:02.0808735Z 15:01:02.080 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) -2026-03-27T14:01:02.0818406Z 15:01:02.080 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) -2026-03-27T14:01:02.0824058Z 15:01:02.081 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) -2026-03-27T14:01:02.0829426Z 15:01:02.082 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) -2026-03-27T14:01:02.0835491Z 15:01:02.083 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) -2026-03-27T14:01:02.0840920Z 15:01:02.083 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) -2026-03-27T14:01:02.0846217Z 15:01:02.084 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) -2026-03-27T14:01:02.0853049Z 15:01:02.084 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) -2026-03-27T14:01:02.0857370Z 15:01:02.085 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) -2026-03-27T14:01:02.0862840Z 15:01:02.085 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) -2026-03-27T14:01:02.0868080Z 15:01:02.086 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) -2026-03-27T14:01:02.0873507Z 15:01:02.086 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) -2026-03-27T14:01:02.0885356Z 15:01:02.087 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) -2026-03-27T14:01:02.0892777Z 15:01:02.088 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) -2026-03-27T14:01:02.0898741Z 15:01:02.089 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) -2026-03-27T14:01:02.0904507Z 15:01:02.089 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) -2026-03-27T14:01:02.0910308Z 15:01:02.090 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) -2026-03-27T14:01:02.0915824Z 15:01:02.091 | com.unity.ugui@2.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc) -2026-03-27T14:01:02.0921999Z 15:01:02.091 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) -2026-03-27T14:01:02.0927689Z 15:01:02.092 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) -2026-03-27T14:01:02.0932853Z 15:01:02.092 | [Subsystems] No new subsystems found in resolved package list. -2026-03-27T14:01:02.0938307Z 15:01:02.093 | [Package Manager] Done registering packages in 0.00 seconds -2026-03-27T14:01:02.5044382Z 15:01:02.503 | [ScriptCompilation] Requested script compilation because: Assembly Definition File(s) changed -2026-03-27T14:01:02.5051839Z 15:01:02.504 | [ScriptCompilation] Requested script compilation because: Assetdatabase observed changes in script compilation related files -2026-03-27T14:01:03.3387262Z 15:01:03.334 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies -2026-03-27T14:01:03.3396859Z 15:01:03.339 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:03.3416900Z 15:01:03.341 | DisplayProgressbar: Compiling Scripts -2026-03-27T14:01:03.3424664Z 15:01:03.342 | ExitCode: 4 Duration: 0s147ms -2026-03-27T14:01:03.3431070Z 15:01:03.342 | Rebuilding DAG because FileSignature timestamp changed: Library/Bee/1900b0aE-inputdata.json -2026-03-27T14:01:03.3437419Z 15:01:03.343 | *** Tundra requires additional run (0.05 seconds), 0 items updated, 161 evaluated -2026-03-27T14:01:03.3444587Z 15:01:03.343 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aE.dag.json" "Library/Bee/1900b0aE-inputdata.json" "Library\Bee\buildprogram0.traceevents" -2026-03-27T14:01:03.3450264Z 15:01:03.344 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:03.7489246Z 15:01:03.748 | ExitCode: 0 Duration: 0s419ms -2026-03-27T14:01:03.7499515Z 15:01:03.749 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aE.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssemblies -2026-03-27T14:01:03.7510474Z 15:01:03.750 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:09.4773891Z 15:01:09.476 | ExitCode: 0 Duration: 5s445ms -2026-03-27T14:01:09.4780817Z 15:01:09.477 | Finished compiling graph: 236 nodes, 1998 flattened edges (1896 ToBuild, 18 ToUse), maximum node priority 103 -2026-03-27T14:01:09.4788370Z 15:01:09.478 | [109/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt -2026-03-27T14:01:09.4794189Z 15:01:09.479 | [137/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp2 -2026-03-27T14:01:09.4801806Z 15:01:09.479 | [155/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp -2026-03-27T14:01:09.4810324Z 15:01:09.480 | [156/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp2 -2026-03-27T14:01:09.4816809Z 15:01:09.481 | [157/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt -2026-03-27T14:01:09.4828211Z 15:01:09.481 | [158/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp -2026-03-27T14:01:09.4836132Z 15:01:09.482 | [159/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.UnityAdditionalFile.txt -2026-03-27T14:01:09.4841522Z 15:01:09.483 | [160/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.rsp2 -2026-03-27T14:01:09.4847059Z 15:01:09.484 | [161/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp -2026-03-27T14:01:09.4854909Z 15:01:09.484 | [162/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp -2026-03-27T14:01:09.4862019Z 15:01:09.485 | [165/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll.mvfrm.rsp -2026-03-27T14:01:09.4870203Z 15:01:09.486 | [166/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp2 -2026-03-27T14:01:09.4876840Z 15:01:09.487 | [167/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt -2026-03-27T14:01:09.4882291Z 15:01:09.487 | [168/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp -2026-03-27T14:01:09.4888287Z 15:01:09.488 | [169/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.rsp -2026-03-27T14:01:09.4893643Z 15:01:09.488 | [172/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll.mvfrm.rsp -2026-03-27T14:01:09.4900466Z 15:01:09.489 | [173/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.rsp2 -2026-03-27T14:01:09.4905308Z 15:01:09.490 | [174/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.rsp -2026-03-27T14:01:09.4911587Z 15:01:09.490 | [175/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp -2026-03-27T14:01:09.4917942Z 15:01:09.491 | [176/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt -2026-03-27T14:01:09.4929492Z 15:01:09.491 | [177/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp2 -2026-03-27T14:01:09.4935076Z 15:01:09.493 | [178/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.UnityAdditionalFile.txt -2026-03-27T14:01:09.4941132Z 15:01:09.493 | [179/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll.mvfrm.rsp -2026-03-27T14:01:09.4947709Z 15:01:09.494 | [180/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll.mvfrm.rsp -2026-03-27T14:01:09.4953112Z 15:01:09.494 | [181/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp -2026-03-27T14:01:09.4958610Z 15:01:09.495 | [182/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.rsp -2026-03-27T14:01:09.4970573Z 15:01:09.496 | [183/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp -2026-03-27T14:01:09.4978377Z 15:01:09.497 | [184/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.UnityAdditionalFile.txt -2026-03-27T14:01:09.4984795Z 15:01:09.498 | [185/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.rsp -2026-03-27T14:01:09.4992222Z 15:01:09.498 | [186/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp2 -2026-03-27T14:01:09.4998411Z 15:01:09.499 | [187/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm.rsp -2026-03-27T14:01:09.5004154Z 15:01:09.499 | [188/233 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp -2026-03-27T14:01:09.5011472Z 15:01:09.500 | [189/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm -2026-03-27T14:01:09.5018104Z 15:01:09.501 | [189/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others) [CacheHit cd66758ab71f312b050a95a26728b8a300000000000000000000000000000005] -2026-03-27T14:01:09.5024503Z 15:01:09.501 | [190/233 1774620064s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others) -2026-03-27T14:01:09.5031607Z 15:01:09.502 | [192/233 0s] CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb -2026-03-27T14:01:09.5039807Z 15:01:09.503 | [193/233 0s] CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll -2026-03-27T14:01:09.5047564Z 15:01:09.504 | [194/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_08FEAA520A2EFD60.mvfrm -2026-03-27T14:01:09.5055038Z 15:01:09.504 | [195/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm -2026-03-27T14:01:09.5065392Z 15:01:09.505 | [194/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others) [CacheHit 186552fbe1d4aac26983306c37399a4e00000000000000000000000000000005] -2026-03-27T14:01:09.5067461Z 15:01:09.506 | [196/233 1774620064s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others) -2026-03-27T14:01:09.5075449Z 15:01:09.506 | [198/233 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb -2026-03-27T14:01:09.5085286Z 15:01:09.508 | [199/233 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll -2026-03-27T14:01:09.5093158Z 15:01:09.508 | [200/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_4C98D3F7040CD4F5.mvfrm -2026-03-27T14:01:09.5099383Z 15:01:09.509 | [201/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll.mvfrm -2026-03-27T14:01:09.5106334Z 15:01:09.510 | [202/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll.mvfrm -2026-03-27T14:01:09.5112376Z 15:01:09.510 | [200/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) [CacheHit 87ded9aae356225df16cfb7fc17d0e9a00000000000000000000000000000005] -2026-03-27T14:01:09.5118366Z 15:01:09.511 | [203/233 1774620065s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) -2026-03-27T14:01:09.5125063Z 15:01:09.512 | [205/233 0s] CopyFiles Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.004.pdb -2026-03-27T14:01:09.5132603Z 15:01:09.512 | [206/233 0s] CopyFiles Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.004.dll -2026-03-27T14:01:09.5139345Z 15:01:09.513 | [203/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) [CacheHit 4bc2925530fadff46e39b4f44c175e2b00000000000000000000000000000005] -2026-03-27T14:01:09.5145690Z 15:01:09.514 | [207/233 1774620065s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) -2026-03-27T14:01:09.5152583Z 15:01:09.514 | [210/233 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.pdb -2026-03-27T14:01:09.5160029Z 15:01:09.515 | [211/233 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.dll -2026-03-27T14:01:09.5166235Z 15:01:09.516 | [212/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.InternalAPIEngineBridge.004.ref.dll_9F91F1CFF2D20E26.mvfrm -2026-03-27T14:01:09.5173407Z 15:01:09.516 | [213/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll.mvfrm -2026-03-27T14:01:09.5179751Z 15:01:09.517 | [209/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) [CacheHit 6245a68e776e116f0b48695baf5d288200000000000000000000000000000005] -2026-03-27T14:01:09.5185784Z 15:01:09.518 | [214/233 1774620065s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) -2026-03-27T14:01:09.5191797Z 15:01:09.518 | [216/233 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.pdb -2026-03-27T14:01:09.5197910Z 15:01:09.519 | [217/233 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.dll -2026-03-27T14:01:09.5203950Z 15:01:09.519 | [218/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm -2026-03-27T14:01:09.5211903Z 15:01:09.520 | [213/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others) [CacheHit 513b010c3199fe52da3aa0ebd19cef9a00000000000000000000000000000005] -2026-03-27T14:01:09.5219927Z 15:01:09.521 | [219/233 1774620066s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others) -2026-03-27T14:01:09.5226128Z 15:01:09.522 | [221/233 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb -2026-03-27T14:01:09.5232237Z 15:01:09.522 | [222/233 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll -2026-03-27T14:01:09.5241282Z 15:01:09.523 | [223/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Multiplayer.Center.Editor.ref.dll_EB1F4B6E56116D4A.mvfrm -2026-03-27T14:01:09.5248986Z 15:01:09.524 | [224/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_84A4293DBDD182DB.mvfrm -2026-03-27T14:01:09.5255233Z 15:01:09.525 | [225/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll.mvfrm -2026-03-27T14:01:09.5261582Z 15:01:09.525 | [226/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm -2026-03-27T14:01:09.5268547Z 15:01:09.526 | [220/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll (+2 others) [CacheHit d5b24c30f7acef1f92fbc846a24ba37200000000000000000000000000000005] -2026-03-27T14:01:09.5275502Z 15:01:09.527 | [227/233 1774620066s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll (+2 others) -2026-03-27T14:01:09.5281130Z 15:01:09.527 | [229/233 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.Analytics.pdb -2026-03-27T14:01:09.5288577Z 15:01:09.528 | [230/233 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.Analytics.dll -2026-03-27T14:01:09.5295452Z 15:01:09.529 | [223/233 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others) [CacheHit f58dc401e89db74e0d2b98cb0550931c00000000000000000000000000000005] -2026-03-27T14:01:09.5302074Z 15:01:09.529 | [231/233 1774620066s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others) -2026-03-27T14:01:09.5308085Z 15:01:09.530 | [233/233 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb -2026-03-27T14:01:09.5314707Z 15:01:09.530 | [234/233 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll -2026-03-27T14:01:09.5322652Z 15:01:09.531 | [235/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.Analytics.ref.dll_3B64A5A3A726AD5D.mvfrm -2026-03-27T14:01:09.5330955Z 15:01:09.532 | [236/233 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm -2026-03-27T14:01:09.5339301Z 15:01:09.533 | [237/233 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm -2026-03-27T14:01:09.5347448Z 15:01:09.534 | [238/233 1s] Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others) -2026-03-27T14:01:09.5354409Z 15:01:09.535 | [239/233 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb -2026-03-27T14:01:09.5361922Z 15:01:09.535 | [240/233 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll -2026-03-27T14:01:09.5371110Z 15:01:09.536 | *** Tundra build success (5.36 seconds), 67 items updated, 233 evaluated -2026-03-27T14:01:09.5378595Z 15:01:09.537 | AssetDatabase: script compilation time: 6.889462s -2026-03-27T14:01:09.5385403Z 15:01:09.538 | Begin MonoManager ReloadAssembly -2026-03-27T14:01:09.9504303Z 15:01:09.946 | - Loaded All Assemblies, in 0.564 seconds -2026-03-27T14:01:09.9517576Z 15:01:09.951 | Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) (LibraryAssetImporter) -> (artifact id: '81e00aa3890314c0a977affe41918cef') in 0.0242234 seconds -2026-03-27T14:01:09.9525156Z 15:01:09.951 | Start importing Assets/Scenes using Guid(13ebbfc6e1e11454181222829fbe9f6a) (DefaultImporter) -> (artifact id: '0de7ae4d994869e1ceba110cf2c60ca5') in 0.0039984 seconds -2026-03-27T14:01:09.9545274Z 15:01:09.953 | Start importing Packages/com.unity.ugui using Guid(d5f8dee8e32bc95b4dcb826f6c5ee972) (DefaultImporter) -> (artifact id: '4d840d4ceff926363f6b2c1c38699fa7') in 0.0006684 seconds -2026-03-27T14:01:09.9566474Z 15:01:09.955 | Start importing Assets/Editor using Guid(0f65ba13602610f49adeca3530785d12) (DefaultImporter) -> (artifact id: '12f38cbafb89a3ae0d1b46da130b0ef6') in 0.0030921 seconds -2026-03-27T14:01:09.9586003Z 15:01:09.957 | Start importing Packages/com.unity.ugui/Editor Resources using Guid(d1a0a27327b54c3bac52a08929c33f81) (DefaultImporter) -> (artifact id: '89d4bdf381a63d2d738dcc151e624513') in 0.0010635 seconds -2026-03-27T14:01:09.9600025Z 15:01:09.959 | Start importing Packages/com.unity.ugui/Tests using Guid(d850db319a63d2546932ff76fe55a498) (DefaultImporter) -> (artifact id: '87ed2bbc25b91c58b304abd09ed3aaba') in 0.0009689 seconds -2026-03-27T14:01:09.9645424Z 15:01:09.960 | Start importing Packages/com.unity.ugui/Runtime using Guid(aa14b70e6a58c5b4fa6663623e3dca91) (DefaultImporter) -> (artifact id: 'fa7aa1d533b272bf79afdbd5404453cd') in 0.0011076 seconds -2026-03-27T14:01:09.9656065Z 15:01:09.964 | Start importing Packages/com.unity.ugui/Package Resources using Guid(5ec95f4d5b2d1f14e9ff8682562553f9) (DefaultImporter) -> (artifact id: '20161e53e484de6465e75d382f9dbde6') in 0.0009887 seconds -2026-03-27T14:01:09.9668649Z 15:01:09.965 | Start importing Packages/com.unity.ugui/Editor using Guid(bee384ad5b4d1a843a018082e7db53cd) (DefaultImporter) -> (artifact id: 'cc2ff2381a5068f9e19e880ea4d9c9b1') in 0.0009386 seconds -2026-03-27T14:01:09.9674856Z 15:01:09.966 | Start importing Packages/com.unity.ugui/Editor/TMP using Guid(10d1425d9e87841d9a9deafe9e93a6f2) (DefaultImporter) -> (artifact id: 'b78a297ad64c4d78728ae683af3e5658') in 0.0009674 seconds -2026-03-27T14:01:09.9683285Z 15:01:09.967 | Start importing Packages/com.unity.ugui/Runtime/TMP using Guid(619aadd8f276341ca84d7ad5a9c6db21) (DefaultImporter) -> (artifact id: '5308cedcd74d43682790fc7238a9d1e2') in 0.0009061 seconds -2026-03-27T14:01:09.9704084Z 15:01:09.968 | Start importing Packages/com.unity.ugui/Tests/Editor using Guid(936bea4b2545c4a4fad2e623b0f6371f) (DefaultImporter) -> (artifact id: '75f26d3f4c8aedba3eb80398ab395bd8') in 0.0009325 seconds -2026-03-27T14:01:09.9710660Z 15:01:09.970 | Start importing Packages/com.unity.ugui/Tests/Runtime using Guid(c545241cf2e56ec4997d7677f01ef43d) (DefaultImporter) -> (artifact id: '88e2b3e1f7bbb56cb1f91f83f053765b') in 0.0010016 seconds -2026-03-27T14:01:09.9718470Z 15:01:09.971 | Start importing Packages/com.unity.ugui/Editor/Analytics using Guid(c52726d811a9f66459355df6b0c3977b) (DefaultImporter) -> (artifact id: '4154f772d9b7cf6fccdb594f4e326893') in 0.0010106 seconds -2026-03-27T14:01:09.9729043Z 15:01:09.972 | Start importing Packages/com.unity.ugui/Editor/UGUI using Guid(278b6073a5bdd4362acd72ca43ff9e0d) (DefaultImporter) -> (artifact id: 'abf9fbf9f7c10d2af702b2e8085d3ed6') in 0.0009977 seconds -2026-03-27T14:01:09.9737051Z 15:01:09.973 | Start importing Packages/com.unity.ugui/Runtime/UGUI using Guid(1817d28a5343b4ec19b4ec7903730e2c) (DefaultImporter) -> (artifact id: 'd27c003f26a5bcc4ae0be188e216ff3a') in 0.0008981 seconds -2026-03-27T14:01:09.9747394Z 15:01:09.974 | Start importing Packages/com.unity.ugui/Editor Resources/Textures using Guid(f8e6a2d47aba4c6c9b3c5a72d9f48da5) (DefaultImporter) -> (artifact id: '41714146c3f223570fca541b52f7c091') in 0.0009305 seconds -2026-03-27T14:01:09.9753652Z 15:01:09.974 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos using Guid(e93ec7eb6de342aabd156833e253f838) (DefaultImporter) -> (artifact id: 'e3065312f331f86c187a2c34400b2ab5') in 0.0011086 seconds -2026-03-27T14:01:09.9762034Z 15:01:09.975 | Start importing Packages/com.unity.ugui/Runtime/InternalBridge using Guid(bab3a29ab4f214742a44add41efffb7d) (DefaultImporter) -> (artifact id: 'b8ae5a4142d7b3ff7433a144e13442a5') in 0.0009849 seconds -2026-03-27T14:01:09.9798748Z 15:01:09.977 | Start importing Packages/com.unity.ugui/Editor Resources/Shaders using Guid(2da27f5fe80a3a549ac7331d9f52f5f0) (DefaultImporter) -> (artifact id: '8ba95b6473bead211c52ddc79ac818a9') in 0.000996 seconds -2026-03-27T14:01:09.9838452Z 15:01:09.980 | Start importing Packages/com.unity.ugui/Tests/Runtime/TMP using Guid(914613548ded44a43a59eb9852503f18) (DefaultImporter) -> (artifact id: '477b4938addb883f7857c7245a542f61') in 0.0009917 seconds -2026-03-27T14:01:10.0254403Z 15:01:10.003 | Start importing Packages/com.unity.ugui/Runtime/UGUI/Properties using Guid(32e2186f4598cff489784aae586f2215) (DefaultImporter) -> (artifact id: 'd945312145ac0c9dd7a3598fc5b82f23') in 0.0010147 seconds -2026-03-27T14:01:10.0366761Z 15:01:10.035 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI using Guid(53caebc5909234b4ebe1fcaf3dc913a5) (DefaultImporter) -> (artifact id: '6cea7121aaed435492ec2cc2e4bf06a4') in 0.0010556 seconds -2026-03-27T14:01:10.0401383Z 15:01:10.037 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI using Guid(742654cad2425334696ba6ed4495cfef) (DefaultImporter) -> (artifact id: 'd1046547fc52369f9a3a8f6b662ded51') in 0.0010525 seconds -2026-03-27T14:01:10.0429381Z 15:01:10.042 | Start importing Packages/com.unity.ugui/Editor/UGUI/UI using Guid(853edc343b78a7c4c81cbb3851d48c0a) (DefaultImporter) -> (artifact id: '773a517afa854ab194e9e6794bc9a1cf') in 0.001126 seconds -2026-03-27T14:01:10.0442978Z 15:01:10.043 | Start importing Packages/com.unity.ugui/Editor/UGUI/EventSystem using Guid(f525580684527b147b70cf94aaa70dbc) (DefaultImporter) -> (artifact id: '35f8d6adc1fe92d630cb18996309700e') in 0.000963 seconds -2026-03-27T14:01:10.0451244Z 15:01:10.044 | Start importing Packages/com.unity.ugui/Editor/Analytics/IAnalytic using Guid(77417b0f4cf6d334f916c64448d24133) (DefaultImporter) -> (artifact id: 'a22d0db8c8eb6d464d1b5bd50a6655ab') in 0.000919 seconds -2026-03-27T14:01:10.0459910Z 15:01:10.045 | Start importing Packages/com.unity.ugui/Editor/TMP/PropertyDrawers using Guid(ea7c31b5b377c314db28ad3fabbbd38d) (DefaultImporter) -> (artifact id: 'ebc92ba84e6406c25f912a00cf612866') in 0.00118 seconds -2026-03-27T14:01:10.0467679Z 15:01:10.046 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI using Guid(fae3ac1997e164d1eba5fa5c417cbefd) (DefaultImporter) -> (artifact id: 'a65f00dcb82f453aab04a0f34c97e4e8') in 0.0009856 seconds -2026-03-27T14:01:10.0475395Z 15:01:10.046 | Start importing Packages/com.unity.ugui/Tests/Editor/TMP using Guid(3ddaad49a7bcb4087b403f2225d54840) (DefaultImporter) -> (artifact id: 'dc3536d35fb2a75d225a6a19a3e6094d') in 0.0009009 seconds -2026-03-27T14:01:10.0486495Z 15:01:10.047 | Start importing Packages/com.unity.ugui/Editor/TMP/HDRP using Guid(eecc124dc0b994047aac97ccf8c8ed0a) (DefaultImporter) -> (artifact id: '5b5397f7d63b0f449a7a5706eccb0297') in 0.000989 seconds -2026-03-27T14:01:10.0494724Z 15:01:10.048 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem using Guid(7f27709c942d91541be1fd6aa5cb3d78) (DefaultImporter) -> (artifact id: 'f0d60c8b7f149f215e5d223617964474') in 0.0010109 seconds -2026-03-27T14:01:10.0501378Z 15:01:10.049 | Start importing Packages/com.unity.ugui/Editor/UGUI/Properties using Guid(cf97e54bcd5479a46bdbade48da047cc) (DefaultImporter) -> (artifact id: 'bcc5e4cf73302b79631566aee946fa3b') in 0.000981 seconds -2026-03-27T14:01:10.0516706Z 15:01:10.050 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Image using Guid(1091bc2ad06e3234aac2b2fa2841c09d) (DefaultImporter) -> (artifact id: '94034d6d07fdc201b83d5943f5af1dca') in 0.0009695 seconds -2026-03-27T14:01:10.0524714Z 15:01:10.051 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/RectMask2D using Guid(305ca32be1aa5504aa182f583895dfe4) (DefaultImporter) -> (artifact id: '5feb8431e6a2647400681c0df4eb4982') in 0.0009011 seconds -2026-03-27T14:01:10.0531326Z 15:01:10.052 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/InputField using Guid(c16c54fe03afb5740bcc0a2a295cb79d) (DefaultImporter) -> (artifact id: 'f2549288d5f830259850c3bed852b8b1') in 0.0008937 seconds -2026-03-27T14:01:10.0542135Z 15:01:10.053 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core using Guid(12c42068351bb084abde965d725b9887) (DefaultImporter) -> (artifact id: 'cacc7f0504c10a89d30473ce3cb13775') in 0.0009011 seconds -2026-03-27T14:01:10.0547692Z 15:01:10.054 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Toggle using Guid(e210c8bf2e9c6514d90a1bd77586af1f) (DefaultImporter) -> (artifact id: 'dbc3a78b1232d980c5eec42316701d59') in 0.0009523 seconds -2026-03-27T14:01:10.0553302Z 15:01:10.054 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Button using Guid(239dd6edc8e5cd14585c03e09e86a747) (DefaultImporter) -> (artifact id: 'ac27d701a2faade0a9eb1621f0aeec9d') in 0.0012468 seconds -2026-03-27T14:01:10.0560102Z 15:01:10.055 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/ScrollBar using Guid(43b1467da3d29ae4597a733828cdd84a) (DefaultImporter) -> (artifact id: '9d24d5339ee40185803e2696afc4766b') in 0.0010576 seconds -2026-03-27T14:01:10.0566858Z 15:01:10.056 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Graphic using Guid(8313ea704470a264295ec9e09aec6ebc) (DefaultImporter) -> (artifact id: '08e82deac7b1e19a2c784e9398edc209') in 0.0010767 seconds -2026-03-27T14:01:10.0584397Z 15:01:10.057 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/TextEditor using Guid(93effba7cf7f3824ab0bd048a27a9c02) (DefaultImporter) -> (artifact id: '8eef0647cc6fb4855db6a46795a64f66') in 0.0010167 seconds -2026-03-27T14:01:10.0592991Z 15:01:10.058 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventData using Guid(b3cdabf2f1e76854d8aab5930305d70d) (DefaultImporter) -> (artifact id: '8277f8c996e87ca284549912a55a6cd9') in 0.0009212 seconds -2026-03-27T14:01:10.0598787Z 15:01:10.059 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Animation using Guid(5472815444de2ce45bf2053a4af04b9d) (DefaultImporter) -> (artifact id: '41463e8550df76b3752941ecf4af4827') in 0.0010226 seconds -2026-03-27T14:01:10.0621119Z 15:01:10.061 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Slider using Guid(850af9f3bf6d14143baf2ecfbf25db52) (DefaultImporter) -> (artifact id: '437630b46a69623334e22a1b4d23d60a') in 0.0009734 seconds -2026-03-27T14:01:10.0630245Z 15:01:10.062 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem/Raycasters using Guid(46646a5562f14984690c85ee7b946bc9) (DefaultImporter) -> (artifact id: 'e72938d8295fecfa581dc14542b5af2f') in 0.0009791 seconds -2026-03-27T14:01:10.0670412Z 15:01:10.064 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/CanvasRenderer using Guid(a69b08936f9f74179ae333a4bebe7c54) (DefaultImporter) -> (artifact id: '7671a1463691e0f5dc1af47c30eb63be') in 0.0009512 seconds -2026-03-27T14:01:10.0683088Z 15:01:10.067 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/UI using Guid(e7689eda3a8b1a847a8b197dbe90d9a6) (DefaultImporter) -> (artifact id: '5d2bcf29f5611fa4f2365298e1243e46') in 0.0011836 seconds -2026-03-27T14:01:10.0697036Z 15:01:10.068 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/EventSystem using Guid(98d14ab1acf42df4f88a0561822ac807) (DefaultImporter) -> (artifact id: 'bcce928e3f5b35dd22455a42941bc8ae') in 0.0012499 seconds -2026-03-27T14:01:10.0720538Z 15:01:10.070 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/Canvas using Guid(b86b117346968ac4d9cc63e4385becb7) (DefaultImporter) -> (artifact id: '62133acf800fdf2d38044a65fa104ffd') in 0.0010889 seconds -2026-03-27T14:01:10.0731593Z 15:01:10.072 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/UnityEvent using Guid(e90cc37a5ccf4a44dbecc5b7172ec512) (DefaultImporter) -> (artifact id: 'a0ce3d4c23b3d1b988cb587e10b1d85e') in 0.0010746 seconds -2026-03-27T14:01:10.0747702Z 15:01:10.073 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/InputField using Guid(2a28c2fab6b1bb745a844ef6b908e7ee) (DefaultImporter) -> (artifact id: '9dad4aba2acb736bb41bd9f498f4a598') in 0.0010684 seconds -2026-03-27T14:01:10.0753888Z 15:01:10.074 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Canvas using Guid(9a3557da07c729b4eb774b8e30e157a4) (DefaultImporter) -> (artifact id: '81331dc77753752598b07804ea4cff62') in 0.0009928 seconds -2026-03-27T14:01:10.0763958Z 15:01:10.075 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Dropdown using Guid(bae197be297529d4fa735fbe7c91828d) (DefaultImporter) -> (artifact id: '2aa66bb1fd732c209bdffd9958207bc3') in 0.0010499 seconds -2026-03-27T14:01:10.0792933Z 15:01:10.077 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/MaskClipping using Guid(2bc8a181dfd9de24388de89bb8db7713) (DefaultImporter) -> (artifact id: '0a0c449a5ca7d42ce0c9a97eda0d4d04') in 0.0010109 seconds -2026-03-27T14:01:10.0811168Z 15:01:10.079 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/ScrollRect using Guid(9bedab6f9886aee42b33e424bffdb640) (DefaultImporter) -> (artifact id: 'a0e08ced210bbca101c3d35c258f23e3') in 0.0009725 seconds -2026-03-27T14:01:10.0892510Z 15:01:10.082 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/EventSystem using Guid(ab93e1a81defc3243a6e9cd0df3cb443) (DefaultImporter) -> (artifact id: '642b7155e0374f42426082344e328a0f') in 0.0010869 seconds -2026-03-27T14:01:10.0913490Z 15:01:10.089 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/Slider using Guid(4cfe5ade9a1375e40aed87618b92bd12) (DefaultImporter) -> (artifact id: '91a2980309d6499d37b364770f3dc35d') in 0.0014466 seconds -2026-03-27T14:01:10.0948270Z 15:01:10.091 | Start importing Packages/com.unity.ugui/Editor/UGUI/UI/PropertyDrawers using Guid(bc9aa6d5a7945f34882c442e9e201537) (DefaultImporter) -> (artifact id: '270b585cc009643c70718bcb5358bab0') in 0.0010895 seconds -2026-03-27T14:01:10.0957449Z 15:01:10.095 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Layout using Guid(cc313cc004395df4a9884390556690a5) (DefaultImporter) -> (artifact id: '563d44d617bb73e3ce0b9367beb9f7f6') in 0.0009355 seconds -2026-03-27T14:01:10.0984064Z 15:01:10.096 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/LayoutGroup using Guid(2d9b6ff056b6f484ba6500aa8e06bcf3) (DefaultImporter) -> (artifact id: '1c3147b292d515aadba03fbf6013744b') in 0.0009134 seconds -2026-03-27T14:01:10.0994248Z 15:01:10.098 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements using Guid(5dc64c943466a44498be3b620c743b45) (DefaultImporter) -> (artifact id: '96c94b86d87620112b8e860f107d8e93') in 0.0009714 seconds -2026-03-27T14:01:10.1020054Z 15:01:10.101 | Start importing Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules using Guid(8e78f8a8575e4a04f8337a54e241cdc5) (DefaultImporter) -> (artifact id: 'cf1e069480532a8f3dc9085bfcf71e39') in 0.0009378 seconds -2026-03-27T14:01:10.1070697Z 15:01:10.102 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/CanvasRenderer using Guid(ae242449e9279d44789513b922d3178a) (DefaultImporter) -> (artifact id: 'ee5d432a1318ff51cc5f0f75759cfc19') in 0.000953 seconds -2026-03-27T14:01:10.1118793Z 15:01:10.107 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/Dropdown using Guid(1f71aeacc4a9f1a40b22a1a590331f6b) (DefaultImporter) -> (artifact id: 'f07cb706910528267c831c49a6968d8c') in 0.0010245 seconds -2026-03-27T14:01:10.1156042Z 15:01:10.111 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/Text using Guid(4f9ac6e545d53f94b9f09c85b9576f36) (DefaultImporter) -> (artifact id: '5f05d186dcb1976da8af0bac527eb730') in 0.000972 seconds -2026-03-27T14:01:10.1185254Z 15:01:10.115 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/Util using Guid(af30a361ab68260438b6ec3fb7e64500) (DefaultImporter) -> (artifact id: '2b58310aa8804f03a037a2d47189a1c9') in 0.0010439 seconds -2026-03-27T14:01:10.1195014Z 15:01:10.118 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/NestedLayout using Guid(efad3ddb7270ac241b9b1357ec5ee2f2) (DefaultImporter) -> (artifact id: '8bbb7177cd104b80d48b4cfb1dc88884') in 0.0011571 seconds -2026-03-27T14:01:10.1233416Z 15:01:10.122 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/UI/PropertyDrawers using Guid(24333a116497b144f9782b1160984b57) (DefaultImporter) -> (artifact id: '38a6a8db8e66efb4b3e00b0b49edce4d') in 0.0009897 seconds -2026-03-27T14:01:10.1265595Z 15:01:10.125 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Utility using Guid(d63dd1a776d383248a21ec2a8a6e7868) (DefaultImporter) -> (artifact id: 'ddf4baa864d390cb48033641e93bc3ab') in 0.0009605 seconds -2026-03-27T14:01:10.1275197Z 15:01:10.126 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling using Guid(27ed3e221887b3544bd9d6505d4a789f) (DefaultImporter) -> (artifact id: 'a8414d4e7a7ce3589ca9a54f2895a3ea') in 0.0009143 seconds -2026-03-27T14:01:10.1296004Z 15:01:10.127 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/SpecializedCollections using Guid(f8ed4321a98682942b9980996131cf26) (DefaultImporter) -> (artifact id: '5a5ef29bec25f7a3bf7676116a5962c1') in 0.0008767 seconds -2026-03-27T14:01:10.1301665Z 15:01:10.129 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout using Guid(1999349e7f492c947bb6eb70f624382e) (DefaultImporter) -> (artifact id: 'a8e41ce3a6fccc9c9b78c2afb86f94a6') in 0.0009526 seconds -2026-03-27T14:01:10.1307245Z 15:01:10.130 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/EventSystem/InputModuleTests using Guid(7a892c920c8ad2848b469ec9579c5219) (DefaultImporter) -> (artifact id: 'ddbbd39c1ecedea9952da13283fac82b') in 0.0010405 seconds -2026-03-27T14:01:10.1378061Z 15:01:10.130 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MaterialModifiers using Guid(7c6295db74da28645bf49db58b7c9c65) (DefaultImporter) -> (artifact id: 'c8309270d25389008b80d2680377db3a') in 0.0010075 seconds -2026-03-27T14:01:10.1495486Z 15:01:10.143 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers using Guid(cfa73a847eeff06448bb50a8ac6a94e0) (DefaultImporter) -> (artifact id: '4854c52cecabffb60fdd5ed9e9763c1c') in 0.0009445 seconds -2026-03-27T14:01:10.1529324Z 15:01:10.151 | Start importing Packages/com.unity.ugui/Runtime/TMP/Unity.TextMeshPro.asmdef using Guid(6055be8ebefd69e48b49212b09b47b2f) (AssemblyDefinitionImporter) -> (artifact id: '755faf4d872606cabacec4dfdc775f71') in 0.0044638 seconds -2026-03-27T14:01:10.1540927Z 15:01:10.153 | Start importing Packages/com.unity.ugui/Runtime/InternalBridge/Unity.InternalAPIEngineBridge.004.asmdef using Guid(43b111c4a445f446abd2c02e77750ff5) (AssemblyDefinitionImporter) -> (artifact id: '7768f0299b485d6ebc39eb408ad5c375') in 0.0044696 seconds -2026-03-27T14:01:10.1547794Z 15:01:10.154 | Start importing Packages/com.unity.ugui/Editor/Analytics/UnityEditor.UI.Analytics.asmdef using Guid(8394c018a82352f41ae354f7bdad54e3) (AssemblyDefinitionImporter) -> (artifact id: '51a42a6dc598d685998182f7c5c967c4') in 0.0042812 seconds -2026-03-27T14:01:10.1571942Z 15:01:10.156 | Start importing Packages/com.unity.ugui/Editor/UGUI/UnityEditor.UI.asmdef using Guid(343deaaf83e0cee4ca978e7df0b80d21) (AssemblyDefinitionImporter) -> (artifact id: '2c8983ec2b8c747ca5d46e4cfaa1fb19') in 0.00401 seconds -2026-03-27T14:01:10.1588963Z 15:01:10.158 | Start importing Packages/com.unity.ugui/Editor/TMP/Unity.TextMeshPro.Editor.asmdef using Guid(6546d7765b4165b40850b3667f981c26) (AssemblyDefinitionImporter) -> (artifact id: '9560f464d4c68b2cd231f1d640031561') in 0.0091051 seconds -2026-03-27T14:01:10.1604877Z 15:01:10.159 | Start importing Packages/com.unity.ugui/Tests/Editor/TMP/Unity.TextMeshPro.Editor.Tests.asmdef using Guid(656e461844099ae43a609ff6109b0877) (AssemblyDefinitionImporter) -> (artifact id: '30072da98643a3dd2fb6cd04c1e7f82b') in 0.0116644 seconds -2026-03-27T14:01:10.1621702Z 15:01:10.161 | Start importing Packages/com.unity.ugui/Tests/Runtime/UGUI/UnityEngine.UI.Tests.asmdef using Guid(e9745f6a32442194c8dc5a43e9ab86f9) (AssemblyDefinitionImporter) -> (artifact id: '671361ac3978847d29e63ee1cf5da131') in 0.005284 seconds -2026-03-27T14:01:10.1645714Z 15:01:10.163 | Start importing Packages/com.unity.ugui/Runtime/UGUI/UnityEngine.UI.asmdef using Guid(2bafac87e7f4b9b418d9448d219b01ab) (AssemblyDefinitionImporter) -> (artifact id: '535f7aafa4dd215a60024f56978e8d8a') in 0.0062631 seconds -2026-03-27T14:01:10.1657758Z 15:01:10.165 | Start importing Packages/com.unity.ugui/Tests/Runtime/TMP/Unity.TextMeshPro.Tests.asmdef using Guid(bb05cab7d802aa5468f8f2f86840d984) (AssemblyDefinitionImporter) -> (artifact id: '89d48fa439e205f5072672939dd03b3e') in 0.0082333 seconds -2026-03-27T14:01:10.1664652Z 15:01:10.165 | Start importing Packages/com.unity.ugui/Tests/Editor/UGUI/UnityEditor.UI.EditorTests.asmdef using Guid(7c04f0dfa9243c04681a55d90d3ff3fc) (AssemblyDefinitionImporter) -> (artifact id: 'b0030b2b8f67d12eacbc22c1af1fbac4') in 0.0077054 seconds -2026-03-27T14:01:10.1680886Z 15:01:10.167 | Refreshing native plugins compatible for Editor in 0.00 ms, found 0 plugins. -2026-03-27T14:01:10.5847543Z 15:01:10.583 | Native extension for iOS target not found -2026-03-27T14:01:10.5854995Z 15:01:10.584 | Native extension for Android target not found -2026-03-27T14:01:10.5865415Z 15:01:10.585 | Native extension for WindowsStandalone target not found -2026-03-27T14:01:11.0075433Z 15:01:11.007 | Sentry Package Installation: Checking if Sentry is installed -2026-03-27T14:01:12.2482123Z 15:01:12.242 | Sentry Package Installation: Project does not contain Sentry. -2026-03-27T14:01:12.2490259Z 15:01:12.248 | Sentry Package Installation: Installing Sentry from Disk -2026-03-27T14:01:12.2495389Z 15:01:12.249 | Sentry Package Installation: Sentry package Path is file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package -2026-03-27T14:01:15.1035039Z 15:01:15.102 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:15.1043966Z 15:01:15.103 | Sentry Package Installation: SUCCESS -2026-03-27T14:01:15.1052015Z 15:01:15.104 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True -2026-03-27T14:01:15.1061002Z 15:01:15.105 | Mono: successfully reloaded assembly -2026-03-27T14:01:15.1071932Z 15:01:15.106 | - Finished resetting the current domain, in 5.026 seconds -2026-03-27T14:01:15.1089274Z 15:01:15.108 | Domain Reload Profiling: 5579ms -2026-03-27T14:01:15.1097280Z 15:01:15.109 | BeginReloadAssembly (391ms) -2026-03-27T14:01:15.1104604Z 15:01:15.109 | ExecutionOrderSort (0ms) -2026-03-27T14:01:15.1113925Z 15:01:15.110 | DisableScriptedObjects (15ms) -2026-03-27T14:01:15.1125438Z 15:01:15.111 | BackupInstance (0ms) -2026-03-27T14:01:15.1134649Z 15:01:15.112 | ReleaseScriptingObjects (0ms) -2026-03-27T14:01:15.1141229Z 15:01:15.113 | CreateAndSetChildDomain (166ms) -2026-03-27T14:01:15.1148503Z 15:01:15.114 | RebuildCommonClasses (51ms) -2026-03-27T14:01:15.1155297Z 15:01:15.115 | RebuildNativeTypeToScriptingClass (16ms) -2026-03-27T14:01:15.1161570Z 15:01:15.115 | initialDomainReloadingComplete (34ms) -2026-03-27T14:01:15.1174077Z 15:01:15.116 | LoadAllAssembliesAndSetupDomain (61ms) -2026-03-27T14:01:15.1180815Z 15:01:15.117 | LoadAssemblies (174ms) -2026-03-27T14:01:15.1188228Z 15:01:15.118 | RebuildTransferFunctionScriptingTraits (0ms) -2026-03-27T14:01:15.1193829Z 15:01:15.118 | AnalyzeDomain (42ms) -2026-03-27T14:01:15.1200348Z 15:01:15.119 | TypeCache.Refresh (31ms) -2026-03-27T14:01:15.1207070Z 15:01:15.120 | TypeCache.ScanAssembly (23ms) -2026-03-27T14:01:15.1212581Z 15:01:15.120 | BuildScriptInfoCaches (7ms) -2026-03-27T14:01:15.1218770Z 15:01:15.121 | ResolveRequiredComponents (2ms) -2026-03-27T14:01:15.1224713Z 15:01:15.122 | FinalizeReload (5026ms) -2026-03-27T14:01:15.1230410Z 15:01:15.122 | ReleaseScriptCaches (0ms) -2026-03-27T14:01:15.1235714Z 15:01:15.123 | RebuildScriptCaches (0ms) -2026-03-27T14:01:15.1240876Z 15:01:15.123 | SetupLoadedEditorAssemblies (4748ms) -2026-03-27T14:01:15.1246770Z 15:01:15.124 | LogAssemblyErrors (0ms) -2026-03-27T14:01:15.1253018Z 15:01:15.124 | InitializePlatformSupportModulesInManaged (328ms) -2026-03-27T14:01:15.1259580Z 15:01:15.125 | SetLoadedEditorAssemblies (3ms) -2026-03-27T14:01:15.1265871Z 15:01:15.126 | BeforeProcessingInitializeOnLoad (175ms) -2026-03-27T14:01:15.1271501Z 15:01:15.126 | ProcessInitializeOnLoadAttributes (139ms) -2026-03-27T14:01:15.1277660Z 15:01:15.127 | ProcessInitializeOnLoadMethodAttributes (4085ms) -2026-03-27T14:01:15.1289958Z 15:01:15.127 | AfterProcessingInitializeOnLoad (17ms) -2026-03-27T14:01:15.1296555Z 15:01:15.129 | EditorAssembliesLoaded (0ms) -2026-03-27T14:01:15.1302674Z 15:01:15.129 | ExecutionOrderSort2 (0ms) -2026-03-27T14:01:15.1308506Z 15:01:15.130 | AwakeInstancesAfterBackupRestoration (18ms) -2026-03-27T14:01:15.5372767Z 15:01:15.536 | [Package Manager] Done resolving packages in 0.15 seconds -2026-03-27T14:01:15.5379856Z 15:01:15.537 | [Package Manager] Registered 39 packages: -2026-03-27T14:01:15.5385237Z 15:01:15.538 | Built-in packages: -2026-03-27T14:01:15.5394169Z 15:01:15.538 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) -2026-03-27T14:01:15.5405413Z 15:01:15.539 | com.unity.ugui@2.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc) -2026-03-27T14:01:15.5410264Z 15:01:15.540 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) -2026-03-27T14:01:15.5416908Z 15:01:15.541 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) -2026-03-27T14:01:15.5423157Z 15:01:15.541 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) -2026-03-27T14:01:15.5428715Z 15:01:15.542 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) -2026-03-27T14:01:15.5433978Z 15:01:15.542 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) -2026-03-27T14:01:15.5439865Z 15:01:15.543 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) -2026-03-27T14:01:15.5445140Z 15:01:15.544 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) -2026-03-27T14:01:15.5452890Z 15:01:15.544 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) -2026-03-27T14:01:15.5459023Z 15:01:15.545 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) -2026-03-27T14:01:15.5466871Z 15:01:15.546 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) -2026-03-27T14:01:15.5474058Z 15:01:15.546 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) -2026-03-27T14:01:15.5479609Z 15:01:15.547 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) -2026-03-27T14:01:15.5484965Z 15:01:15.548 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) -2026-03-27T14:01:15.5490714Z 15:01:15.548 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) -2026-03-27T14:01:15.5496120Z 15:01:15.549 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) -2026-03-27T14:01:15.5501301Z 15:01:15.549 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) -2026-03-27T14:01:15.5506921Z 15:01:15.550 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) -2026-03-27T14:01:15.5512990Z 15:01:15.550 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) -2026-03-27T14:01:15.5517934Z 15:01:15.551 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) -2026-03-27T14:01:15.5523706Z 15:01:15.551 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) -2026-03-27T14:01:15.5533719Z 15:01:15.552 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) -2026-03-27T14:01:15.5541524Z 15:01:15.553 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) -2026-03-27T14:01:15.5546999Z 15:01:15.554 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) -2026-03-27T14:01:15.5552420Z 15:01:15.554 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) -2026-03-27T14:01:15.5557505Z 15:01:15.555 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) -2026-03-27T14:01:15.5562683Z 15:01:15.555 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) -2026-03-27T14:01:15.5571048Z 15:01:15.556 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) -2026-03-27T14:01:15.5577825Z 15:01:15.557 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) -2026-03-27T14:01:15.5582843Z 15:01:15.557 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) -2026-03-27T14:01:15.5588111Z 15:01:15.558 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) -2026-03-27T14:01:15.5593184Z 15:01:15.558 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) -2026-03-27T14:01:15.5599565Z 15:01:15.559 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) -2026-03-27T14:01:15.5607464Z 15:01:15.560 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) -2026-03-27T14:01:15.5616177Z 15:01:15.560 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) -2026-03-27T14:01:15.5622161Z 15:01:15.561 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) -2026-03-27T14:01:15.5631040Z 15:01:15.562 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) -2026-03-27T14:01:15.5636768Z 15:01:15.563 | Local packages: -2026-03-27T14:01:15.5643554Z 15:01:15.563 | io.sentry.unity@file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package) -2026-03-27T14:01:15.5648980Z 15:01:15.564 | [Subsystems] No new subsystems found in resolved package list. -2026-03-27T14:01:15.5654371Z 15:01:15.565 | [Package Manager] Done registering packages in 0.00 seconds -2026-03-27T14:01:15.5659666Z 15:01:15.565 | Refreshing native plugins compatible for Editor in 5.06 ms, found 1 plugins. -2026-03-27T14:01:17.1591627Z 15:01:16.805 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:17.4349227Z 15:01:17.284 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.Switch.dll" --timestamp 639102204764504749 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" -2026-03-27T14:01:17.4662812Z 15:01:17.459 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:17.5073501Z 15:01:17.468 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Editor/iOS/Sentry.Unity.Editor.iOS.dll" --timestamp 639102204759465959 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" -2026-03-27T14:01:17.5157474Z 15:01:17.510 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:17.5195779Z 15:01:17.516 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Editor/Sentry.Unity.Editor.dll" --timestamp 639102204758228259 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" -2026-03-27T14:01:17.5226416Z 15:01:17.517 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:17.5255177Z 15:01:17.518 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Android.dll" --timestamp 639102204761994715 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" -2026-03-27T14:01:17.5288996Z 15:01:17.519 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:17.5321354Z 15:01:17.520 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.PlayStation.dll" --timestamp 639102204763271162 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" -2026-03-27T14:01:17.5360247Z 15:01:17.523 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:17.5393798Z 15:01:17.523 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.dll" --timestamp 639102204756923087 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" -2026-03-27T14:01:17.5422108Z 15:01:17.524 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:17.5451059Z 15:01:17.526 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.iOS.dll" --timestamp 639102204765772180 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" -2026-03-27T14:01:17.5476387Z 15:01:17.527 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:17.5504171Z 15:01:17.533 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" checkupdaterconfigs -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.dll" --timestamp 639102204760753690 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore" -2026-03-27T14:01:17.9467962Z 15:01:17.946 | [API Updater] Processing imported assemblies took 2071 ms (8/8 assembly(ies)). -2026-03-27T14:01:19.2576285Z 15:01:18.814 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:19.6803001Z 15:01:19.370 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmpdd9b93e.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" -2026-03-27T14:01:19.9335097Z 15:01:19.775 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:20.4205577Z 15:01:20.071 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:20.9755343Z 15:01:20.576 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp5c2506d9.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" -2026-03-27T14:01:21.0290453Z 15:01:21.027 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:21.0374433Z 15:01:21.029 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Editor/Sentry.Unity.Editor.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp5c860459.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEditor.dll" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" -2026-03-27T14:01:21.0946704Z 15:01:21.046 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:21.1336045Z 15:01:21.108 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.iOS.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp3d797e5f.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" -2026-03-27T14:01:21.1444048Z 15:01:21.135 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:21.1489516Z 15:01:21.144 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Android.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp50e59810.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" -2026-03-27T14:01:21.1533079Z 15:01:21.151 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:21.1575356Z 15:01:21.153 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.Switch.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp36e64478.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" -2026-03-27T14:01:21.1682518Z 15:01:21.160 | Filename: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetCoreRuntime\dotnet.exe -2026-03-27T14:01:21.1782149Z 15:01:21.169 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Runtime/Sentry.Unity.Native.PlayStation.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp180b80ba.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" -2026-03-27T14:01:21.1871425Z 15:01:21.179 | Arguments: "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline/Compilation/ApiUpdater/AssemblyUpdater.dll" update -a "C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity-package/Editor/iOS/Sentry.Unity.Editor.iOS.dll" --output "C:/Users/GITHUB~1/AppData/Local/Temp/tmp24c2e7c8.tmp" --api-version 6000.3.8f1 -s "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\ref\2.1.0;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netstandard;C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\NetStandard\compat\2.1.0\shims\netfx;+C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems;+C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore;+C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Managed" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEditor.dll" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed/UnityEngine.dll" -2026-03-27T14:01:22.0098717Z 15:01:22.008 | [API Updater] Assemblies not requiring updates: -2026-03-27T14:01:22.0119869Z 15:01:22.010 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.dll -2026-03-27T14:01:22.0131232Z 15:01:22.012 | [API Updater] Packages/io.sentry.unity/Editor/Sentry.Unity.Editor.dll -2026-03-27T14:01:22.0139703Z 15:01:22.013 | [API Updater] Packages/io.sentry.unity/Editor/iOS/Sentry.Unity.Editor.iOS.dll -2026-03-27T14:01:22.0152735Z 15:01:22.014 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.dll -2026-03-27T14:01:22.0159305Z 15:01:22.015 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.Android.dll -2026-03-27T14:01:22.0172153Z 15:01:22.016 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.PlayStation.dll -2026-03-27T14:01:22.0179294Z 15:01:22.017 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.Switch.dll -2026-03-27T14:01:22.0185536Z 15:01:22.018 | [API Updater] Packages/io.sentry.unity/Runtime/Sentry.Unity.iOS.dll -2026-03-27T14:01:22.0194914Z 15:01:22.018 | [API Updater] Update finished with success in 4004 ms (0/8 assembly(ies) updated). -2026-03-27T14:01:22.0204284Z 15:01:22.019 | Assembly Updater Post Process Assets time: 6.082088s -2026-03-27T14:01:22.0209683Z 15:01:22.020 | [ScriptCompilation] Requested script compilation because: Assembly Definition File(s) changed -2026-03-27T14:01:22.0223734Z 15:01:22.021 | [ScriptCompilation] Requested script compilation because: Assetdatabase observed changes in script compilation related files -2026-03-27T14:01:22.0369667Z 15:01:22.027 | AssetDatabase: script compilation time: 0.000705s -2026-03-27T14:01:22.0439625Z 15:01:22.039 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies -2026-03-27T14:01:22.0533276Z 15:01:22.051 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:22.4598968Z 15:01:22.459 | ExitCode: 4 Duration: 0s136ms -2026-03-27T14:01:22.4609913Z 15:01:22.460 | Rebuilding DAG because FileSignature timestamp changed: Library/Bee/1900b0aE-inputdata.json -2026-03-27T14:01:22.4620207Z 15:01:22.461 | *** Tundra requires additional run (0.04 seconds), 0 items updated, 120 evaluated -2026-03-27T14:01:22.4630648Z 15:01:22.462 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aE.dag.json" "Library/Bee/1900b0aE-inputdata.json" "Library\Bee\buildprogram0.traceevents" -2026-03-27T14:01:22.4636551Z 15:01:22.463 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:22.8889494Z 15:01:22.879 | ExitCode: 0 Duration: 0s450ms -2026-03-27T14:01:22.8897619Z 15:01:22.889 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aE.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssemblies -2026-03-27T14:01:22.8904661Z 15:01:22.889 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:28.6207071Z 15:01:28.617 | ExitCode: 0 Duration: 5s983ms -2026-03-27T14:01:28.6243153Z 15:01:28.622 | Finished compiling graph: 252 nodes, 2367 flattened edges (2243 ToBuild, 22 ToUse), maximum node priority 113 -2026-03-27T14:01:28.6251349Z 15:01:28.624 | [175/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.rsp2 -2026-03-27T14:01:28.6259355Z 15:01:28.625 | [176/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp -2026-03-27T14:01:28.6271423Z 15:01:28.626 | [180/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp -2026-03-27T14:01:28.6281436Z 15:01:28.627 | [181/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp -2026-03-27T14:01:28.6289982Z 15:01:28.628 | [182/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.rsp -2026-03-27T14:01:28.6298151Z 15:01:28.629 | [183/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.UnityAdditionalFile.txt -2026-03-27T14:01:28.6305015Z 15:01:28.630 | [184/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.rsp -2026-03-27T14:01:28.6315099Z 15:01:28.631 | [185/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.dll.mvfrm.rsp -2026-03-27T14:01:28.6386100Z 15:01:28.632 | [186/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.rsp -2026-03-27T14:01:28.6423059Z 15:01:28.640 | [187/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp -2026-03-27T14:01:28.6459768Z 15:01:28.644 | [188/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.rsp -2026-03-27T14:01:28.6486925Z 15:01:28.646 | [189/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.rsp -2026-03-27T14:01:28.6520493Z 15:01:28.651 | [190/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.UnityAdditionalFile.txt -2026-03-27T14:01:28.6528949Z 15:01:28.652 | [194/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.rsp2 -2026-03-27T14:01:28.6536566Z 15:01:28.653 | [195/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.dll.mvfrm.rsp -2026-03-27T14:01:28.6544950Z 15:01:28.654 | [196/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.rsp -2026-03-27T14:01:28.6562601Z 15:01:28.654 | [197/249 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp -2026-03-27T14:01:28.6585146Z 15:01:28.657 | [198/249 1s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others) -2026-03-27T14:01:28.6593198Z 15:01:28.658 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6609103Z 15:01:28.659 | [201/249 0s] CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb -2026-03-27T14:01:28.6616815Z 15:01:28.661 | [202/249 0s] CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll -2026-03-27T14:01:28.6629211Z 15:01:28.661 | [203/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others) -2026-03-27T14:01:28.6640261Z 15:01:28.663 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6651646Z 15:01:28.664 | [207/249 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb -2026-03-27T14:01:28.6659604Z 15:01:28.665 | [208/249 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll -2026-03-27T14:01:28.6671068Z 15:01:28.666 | [209/249 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.dll.mvfrm -2026-03-27T14:01:28.6682224Z 15:01:28.667 | [210/249 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.dll.mvfrm -2026-03-27T14:01:28.6691783Z 15:01:28.668 | [211/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) -2026-03-27T14:01:28.6698402Z 15:01:28.669 | [212/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) -2026-03-27T14:01:28.6706374Z 15:01:28.670 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6719065Z 15:01:28.671 | [215/249 0s] CopyFiles Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.004.dll -2026-03-27T14:01:28.6727589Z 15:01:28.672 | [216/249 0s] CopyFiles Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.004.pdb -2026-03-27T14:01:28.6734400Z 15:01:28.673 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Common.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6742657Z 15:01:28.673 | [219/249 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.dll -2026-03-27T14:01:28.6752930Z 15:01:28.674 | [220/249 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Common.pdb -2026-03-27T14:01:28.6759551Z 15:01:28.675 | [221/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.dll (+2 others) -2026-03-27T14:01:28.6773123Z 15:01:28.676 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.runtime.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6789641Z 15:01:28.678 | [222/249 0s] CopyFiles Library/ScriptAssemblies/io.sentry.unity.runtime.pdb -2026-03-27T14:01:28.6796554Z 15:01:28.679 | [223/249 0s] CopyFiles Library/ScriptAssemblies/io.sentry.unity.runtime.dll -2026-03-27T14:01:28.6809583Z 15:01:28.680 | [224/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) -2026-03-27T14:01:28.6816704Z 15:01:28.681 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Multiplayer.Center.Editor.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6823013Z 15:01:28.681 | [226/249 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.pdb -2026-03-27T14:01:28.6831044Z 15:01:28.682 | [227/249 0s] CopyFiles Library/ScriptAssemblies/Unity.Multiplayer.Center.Editor.dll -2026-03-27T14:01:28.6838458Z 15:01:28.683 | [228/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.dll (+2 others) -2026-03-27T14:01:28.6845341Z 15:01:28.684 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/io.sentry.unity.editor.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6851505Z 15:01:28.684 | [229/249 0s] CopyFiles Library/ScriptAssemblies/io.sentry.unity.editor.pdb -2026-03-27T14:01:28.6859744Z 15:01:28.685 | [230/249 0s] CopyFiles Library/ScriptAssemblies/io.sentry.unity.editor.dll -2026-03-27T14:01:28.6868086Z 15:01:28.686 | [231/249 1s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others) -2026-03-27T14:01:28.6874944Z 15:01:28.687 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6883728Z 15:01:28.687 | [235/249 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb -2026-03-27T14:01:28.6889562Z 15:01:28.688 | [236/249 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll -2026-03-27T14:01:28.6896839Z 15:01:28.689 | [237/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll (+2 others) -2026-03-27T14:01:28.6904662Z 15:01:28.689 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.Analytics.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6911751Z 15:01:28.690 | [239/249 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.Analytics.pdb -2026-03-27T14:01:28.6919065Z 15:01:28.691 | [240/249 0s] CopyFiles Library/ScriptAssemblies/UnityEditor.UI.Analytics.dll -2026-03-27T14:01:28.6925638Z 15:01:28.692 | [241/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others) -2026-03-27T14:01:28.6942657Z 15:01:28.692 | [ 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:01:28.6952635Z 15:01:28.694 | [244/249 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb -2026-03-27T14:01:28.6960101Z 15:01:28.695 | [245/249 0s] CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll -2026-03-27T14:01:28.6968820Z 15:01:28.696 | [246/249 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others) -2026-03-27T14:01:28.6979798Z 15:01:28.697 | [247/249 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb -2026-03-27T14:01:28.6987773Z 15:01:28.698 | [248/249 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll -2026-03-27T14:01:28.6995097Z 15:01:28.699 | *** Tundra build success (5.90 seconds), 52 items updated, 249 evaluated -2026-03-27T14:01:28.7000803Z 15:01:28.699 | Reloading assemblies after forced synchronous recompile. -2026-03-27T14:01:28.7007078Z 15:01:28.700 | Begin MonoManager ReloadAssembly -2026-03-27T14:01:29.9495651Z 15:01:29.924 | - Loaded All Assemblies, in 1.214 seconds -2026-03-27T14:01:29.9513373Z 15:01:29.950 | Start importing Packages/io.sentry.unity using Guid(ffbfb28b43bc86bfc160c31ef4dbee72) (DefaultImporter) -> (artifact id: 'c3b4df25ed0d46f047478b363ecc217e') in 0.0198375 seconds -2026-03-27T14:01:30.0053121Z 15:01:29.962 | Start importing Packages/io.sentry.unity/Prefabs using Guid(51fe92947d3333656a0735e1a0733e7e) (DefaultImporter) -> (artifact id: 'da3533932b662fd2670fa895e6e79ae2') in 0.0011656 seconds -2026-03-27T14:01:30.0417542Z 15:01:30.016 | Start importing Packages/io.sentry.unity/Runtime using Guid(235ff351c28694b85b96cec3402537c5) (DefaultImporter) -> (artifact id: '0950db5a1b2b92224a4edc84e13a9f4a') in 0.001197 seconds -2026-03-27T14:01:30.0912162Z 15:01:30.057 | Start importing Packages/io.sentry.unity/Editor using Guid(370a7eb2c00d5e9ec826bffee981bb1d) (DefaultImporter) -> (artifact id: '298149fc3c44536cf616da833447a341') in 0.0011148 seconds -2026-03-27T14:01:30.1407804Z 15:01:30.112 | Start importing Packages/io.sentry.unity/Plugins using Guid(690efafeb9bc95f97b1171bd3246d1d0) (DefaultImporter) -> (artifact id: 'd1afe3dab59a82b5d78ca263a7a9156f') in 0.0011662 seconds -2026-03-27T14:01:30.1764013Z 15:01:30.159 | Start importing Packages/io.sentry.unity/Textures using Guid(8b787da61b571759f94b625b3dd0159a) (DefaultImporter) -> (artifact id: '1b4c1106cf2104d13da047ee8d5d6eb0') in 0.0013268 seconds -2026-03-27T14:01:30.2455180Z 15:01:30.204 | Start importing Packages/io.sentry.unity/Plugins/Switch using Guid(b12de30df69aa2562b993a4304f54337) (DefaultImporter) -> (artifact id: '7fa63d9871e382c3e5453e9001da266c') in 0.0012828 seconds -2026-03-27T14:01:30.2968858Z 15:01:30.259 | Start importing Packages/io.sentry.unity/Plugins/Windows using Guid(735fcb55e3f4de568b42bad429cb4bc9) (DefaultImporter) -> (artifact id: 'bb6deec5da95575a05dfefceb52d1422') in 0.001162 seconds -2026-03-27T14:01:30.3531158Z 15:01:30.312 | Start importing Packages/io.sentry.unity/Plugins/macOS using Guid(c3e00d44b0b82397e83dac57bac36e5a) (DefaultImporter) -> (artifact id: '4552e09eb92dcae6b326ffaf60d234e6') in 0.0011588 seconds -2026-03-27T14:01:30.3872841Z 15:01:30.362 | Start importing Packages/io.sentry.unity/Plugins/Android using Guid(64e962d9a6b927ccab1bb8fa454e1594) (DefaultImporter) -> (artifact id: '1952278358d58bacd08ce4c6c35a9c70') in 0.0011974 seconds -2026-03-27T14:01:30.4027193Z 15:01:30.396 | Start importing Packages/io.sentry.unity/Plugins/Linux using Guid(2658da86ffaa8887083aee971c512504) (DefaultImporter) -> (artifact id: '66e3d332e93d0fe53760383ce9d35798') in 0.0013335 seconds -2026-03-27T14:01:30.4335884Z 15:01:30.407 | Start importing Packages/io.sentry.unity/Editor/sentry-cli using Guid(09e1774b205d95ce5b1eb2f6d8d2d115) (DefaultImporter) -> (artifact id: 'c7dc63c47762fea8e0b66ac0717003e4') in 0.0023411 seconds -2026-03-27T14:01:30.4634279Z 15:01:30.449 | Start importing Packages/io.sentry.unity/Plugins/PS5 using Guid(9b642d893b854679c940cf1b670a3dad) (DefaultImporter) -> (artifact id: 'd681a91cebaa2a4f01c955fdf589ba69') in 0.0029894 seconds -2026-03-27T14:01:30.4688747Z 15:01:30.463 | Start importing Packages/io.sentry.unity/Plugins/iOS using Guid(5c30a880f9fe94f5f8919a9408c31603) (DefaultImporter) -> (artifact id: 'e835e66fb50c889fcc05f581cf9ebfeb') in 0.0030988 seconds -2026-03-27T14:01:30.4703991Z 15:01:30.469 | Start importing Packages/io.sentry.unity/Editor/iOS using Guid(2eed947c7b31be004a8f6343419604d3) (DefaultImporter) -> (artifact id: 'd66e5795d9c81389f27cd33e59feca01') in 0.0014709 seconds -2026-03-27T14:01:30.5088028Z 15:01:30.476 | Start importing Packages/io.sentry.unity/Plugins/Windows/Sentry using Guid(e77f31e2d39d8812093b6153cc9cf7c0) (DefaultImporter) -> (artifact id: '29b974c9e328c7d01e67b200538a607c') in 0.0011965 seconds -2026-03-27T14:01:30.5513285Z 15:01:30.518 | Start importing Packages/io.sentry.unity/Plugins/Linux/Sentry using Guid(f967294226874f3439ffb388b1b4c870) (DefaultImporter) -> (artifact id: '7c89b5ad017c1b18364d4754b8a7a60a') in 0.0014315 seconds -2026-03-27T14:01:30.5711456Z 15:01:30.560 | Start importing Packages/io.sentry.unity/Plugins/macOS/Sentry using Guid(5c763816d22d40c8084337fa1e644eb3) (DefaultImporter) -> (artifact id: '8ce4d0e09356a65bf60358ff56bc0fd0') in 0.0012162 seconds -2026-03-27T14:01:30.5779449Z 15:01:30.575 | Start importing Packages/io.sentry.unity/Runtime/io.sentry.unity.runtime.asmdef using Guid(c18c74693c5844315b1f3cd5ae87afb4) (AssemblyDefinitionImporter) -> (artifact id: '6df188ee3ced27f362a9b50d6b4c59e4') in 0.0143566 seconds -2026-03-27T14:01:30.5789076Z 15:01:30.578 | Start importing Packages/io.sentry.unity/Editor/io.sentry.unity.editor.asmdef using Guid(44d1302543d7846bfb5a312d6ccf57d8) (AssemblyDefinitionImporter) -> (artifact id: 'ffa75af808648c14e14cf5d1d28e026c') in 0.0099099 seconds -2026-03-27T14:01:30.5796491Z 15:01:30.579 | Refreshing native plugins compatible for Editor in 15.56 ms, found 1 plugins. -2026-03-27T14:01:31.0487239Z 15:01:30.987 | Native extension for iOS target not found -2026-03-27T14:01:31.0855054Z 15:01:31.056 | Native extension for Android target not found -2026-03-27T14:01:31.1287326Z 15:01:31.094 | Native extension for WindowsStandalone target not found -2026-03-27T14:01:31.5560044Z 15:01:31.550 | Sentry Package Installation: Checking if Sentry is installed -2026-03-27T14:01:32.7888986Z 15:01:32.778 | Sentry Package Installation: Project contains Sentry. -2026-03-27T14:01:32.8207560Z 15:01:32.796 | Sentry Package Installation: Installing Sentry from Disk -2026-03-27T14:01:32.8225258Z 15:01:32.821 | Sentry Package Installation: Sentry package Path is file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity-package -2026-03-27T14:01:35.6701724Z 15:01:35.669 | Sentry Package Installation: SUCCESS -2026-03-27T14:01:35.6707732Z 15:01:35.670 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True -2026-03-27T14:01:35.6713617Z 15:01:35.670 | Mono: successfully reloaded assembly -2026-03-27T14:01:35.6719224Z 15:01:35.671 | - Finished resetting the current domain, in 5.550 seconds -2026-03-27T14:01:35.6726909Z 15:01:35.672 | Domain Reload Profiling: 6740ms -2026-03-27T14:01:35.6733288Z 15:01:35.672 | BeginReloadAssembly (536ms) -2026-03-27T14:01:35.6738806Z 15:01:35.673 | ExecutionOrderSort (0ms) -2026-03-27T14:01:35.6744893Z 15:01:35.674 | DisableScriptedObjects (20ms) -2026-03-27T14:01:35.6750259Z 15:01:35.674 | BackupInstance (0ms) -2026-03-27T14:01:35.6756797Z 15:01:35.675 | ReleaseScriptingObjects (0ms) -2026-03-27T14:01:35.6761167Z 15:01:35.675 | CreateAndSetChildDomain (167ms) -2026-03-27T14:01:35.6767966Z 15:01:35.676 | RebuildCommonClasses (55ms) -2026-03-27T14:01:35.6773577Z 15:01:35.676 | RebuildNativeTypeToScriptingClass (23ms) -2026-03-27T14:01:35.6779177Z 15:01:35.677 | initialDomainReloadingComplete (108ms) -2026-03-27T14:01:35.6784588Z 15:01:35.678 | LoadAllAssembliesAndSetupDomain (467ms) -2026-03-27T14:01:35.6790534Z 15:01:35.678 | LoadAssemblies (661ms) -2026-03-27T14:01:35.6796825Z 15:01:35.679 | RebuildTransferFunctionScriptingTraits (0ms) -2026-03-27T14:01:35.6801958Z 15:01:35.679 | AnalyzeDomain (103ms) -2026-03-27T14:01:35.6807702Z 15:01:35.680 | TypeCache.Refresh (86ms) -2026-03-27T14:01:35.6813613Z 15:01:35.680 | TypeCache.ScanAssembly (77ms) -2026-03-27T14:01:35.6818758Z 15:01:35.681 | BuildScriptInfoCaches (11ms) -2026-03-27T14:01:35.6823848Z 15:01:35.682 | ResolveRequiredComponents (3ms) -2026-03-27T14:01:35.6829046Z 15:01:35.682 | FinalizeReload (5550ms) -2026-03-27T14:01:35.6835963Z 15:01:35.683 | ReleaseScriptCaches (0ms) -2026-03-27T14:01:35.6841219Z 15:01:35.683 | RebuildScriptCaches (0ms) -2026-03-27T14:01:35.6849922Z 15:01:35.684 | SetupLoadedEditorAssemblies (5270ms) -2026-03-27T14:01:35.6855348Z 15:01:35.685 | LogAssemblyErrors (0ms) -2026-03-27T14:01:35.6861565Z 15:01:35.685 | InitializePlatformSupportModulesInManaged (593ms) -2026-03-27T14:01:35.6869020Z 15:01:35.686 | SetLoadedEditorAssemblies (4ms) -2026-03-27T14:01:35.6877894Z 15:01:35.687 | BeforeProcessingInitializeOnLoad (358ms) -2026-03-27T14:01:35.6883886Z 15:01:35.687 | ProcessInitializeOnLoadAttributes (212ms) -2026-03-27T14:01:35.6891311Z 15:01:35.688 | ProcessInitializeOnLoadMethodAttributes (4084ms) -2026-03-27T14:01:35.6897954Z 15:01:35.689 | AfterProcessingInitializeOnLoad (17ms) -2026-03-27T14:01:35.6904216Z 15:01:35.689 | EditorAssembliesLoaded (0ms) -2026-03-27T14:01:35.6911509Z 15:01:35.690 | ExecutionOrderSort2 (0ms) -2026-03-27T14:01:35.6917295Z 15:01:35.691 | AwakeInstancesAfterBackupRestoration (23ms) -2026-03-27T14:01:35.6923091Z 15:01:35.691 | Start importing Assets/Scenes/Test.unity using Guid(111b0e90e6e19204eb5c7921bda41757) (DefaultImporter) -> (artifact id: '373666bb460e00c59dae36229f70664b') in 0.0179651 seconds -2026-03-27T14:01:35.6932032Z 15:01:35.692 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.Switch.pdb using Guid(657d0cd4b6ba18e2fb324a39c987d116) (DefaultImporter) -2026-03-27T14:01:36.1089946Z 15:01:36.103 | -> (artifact id: 'b9bd2fd0eb441124fc2a97036ee8f5d6') in 0.0411861 seconds -2026-03-27T14:01:36.1290153Z 15:01:36.124 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.iOS.pdb using Guid(3692fdba3858c6f898e6a6e8f188a2ed) (DefaultImporter) -> (artifact id: '45688bf50184359a303984816778e8f2') in 0.0014065 seconds -2026-03-27T14:01:36.1300874Z 15:01:36.129 | Start importing Packages/io.sentry.unity/Runtime/Sentry.pdb using Guid(97648842ca815ef60bcffa8b80998858) (DefaultImporter) -> (artifact id: '4f50cc795364e9a913680e0841724a8b') in 0.001233 seconds -2026-03-27T14:01:36.1308101Z 15:01:36.130 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.pdb using Guid(8863cec8b0af7476c8cc68ab331c6603) (DefaultImporter) -> (artifact id: 'a5708bd74363b2b895be26b254cb246a') in 0.001108 seconds -2026-03-27T14:01:36.1315474Z 15:01:36.131 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.pdb using Guid(e896c2a235545d90d8028dbb2b67b813) (DefaultImporter) -> (artifact id: 'ea4ec048c30fdd1a507bd6bd600a48fd') in 0.0012158 seconds -2026-03-27T14:01:36.1323204Z 15:01:36.131 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.Native.PlayStation.pdb using Guid(1c9e3ddd2d7cc15819d9679059aaf1f0) (DefaultImporter) -> (artifact id: '969d6dd92fbef73ffa7523015fdc9d20') in 0.0013069 seconds -2026-03-27T14:01:36.1330843Z 15:01:36.132 | Start importing Packages/io.sentry.unity/Runtime/Sentry.Unity.Android.pdb using Guid(2c8453925b682a03a9d2d686cf70f282) (DefaultImporter) -> (artifact id: 'a46e5fc4a2f01f3544ce47bfbbe3a46c') in 0.0011141 seconds -2026-03-27T14:01:36.1336689Z 15:01:36.133 | Start importing Packages/com.unity.ugui/Package Resources/TMP Examples & Extras.unitypackage using Guid(bc00e25696e4132499f56528d3fed2e3) (DefaultImporter) -> (artifact id: '36912524d77e494bff28eadb6545a86b') in 0.0197487 seconds -2026-03-27T14:01:36.1342589Z 15:01:36.133 | Start importing Packages/com.unity.ugui/Package Resources/TMP Essential Resources.unitypackage using Guid(ce4ff17ca867d2b48b5c8a4181611901) (DefaultImporter) -> (artifact id: 'c9b9d0e8e0d8a5df2fad0e13885ca7c4') in 0.0012645 seconds -2026-03-27T14:01:36.1348344Z 15:01:36.134 | Start importing Packages/io.sentry.unity/Editor/sentry-cli/sentry-cli-Windows-x86_64.exe using Guid(458578f2a4add5c07bd4f73bb827199e) (DefaultImporter) -> (artifact id: '187545e59ebd1def8701ef5979ee0aa2') in 0.0058071 seconds -2026-03-27T14:01:36.1372807Z 15:01:36.134 | Start importing Packages/io.sentry.unity/Editor/sentry-cli/sentry-cli-Linux-x86_64 using Guid(a8b351b309efd0c4db3e088be0decddb) (DefaultImporter) -> (artifact id: '97738751ba96d41e3ec70e41ff77bb89') in 0.0012501 seconds -2026-03-27T14:01:36.1384896Z 15:01:36.138 | Start importing Packages/io.sentry.unity/Plugins/Android/proguard-sentry-unity.pro using Guid(6979c20e239edd8b2bb9b2a47e5ae9c8) (DefaultImporter) -> (artifact id: 'e421db79c0792ffb6e1cc1c1ce53a3f7') in 0.0075675 seconds -2026-03-27T14:01:36.1390300Z 15:01:36.138 | Start importing Packages/io.sentry.unity/Editor/sentry-cli/sentry-cli-Darwin-universal using Guid(0aa329d55d5014f7185675f43e85e97f) (DefaultImporter) -> (artifact id: '9bd82b9599931c2d5d90972a9994b82a') in 0.0012611 seconds -2026-03-27T14:01:36.1404031Z 15:01:36.139 | Start importing Packages/io.sentry.unity/Plugins/macOS/Sentry/Sentry.dylib.dSYM using Guid(713b32144a49c1be3b86ffdd32ee534c) (DefaultImporter) -> (artifact id: 'c67724dccaf94ea96de3057afaa6bd2b') in 0.0059599 seconds -2026-03-27T14:01:36.1514114Z 15:01:36.143 | Start importing Packages/io.sentry.unity/Plugins/Windows/Sentry/crashpad_handler.exe using Guid(a37666dba90004ad1b0a84a5d133b88a) (DefaultImporter) -> (artifact id: '73ebe3a8661b89b264c6438a9b4311ad') in 0.0014963 seconds -2026-03-27T14:01:36.1541124Z 15:01:36.153 | Start importing Packages/io.sentry.unity/Plugins/Windows/Sentry/sentry.pdb using Guid(c3e1ea2e738644c3691d0ae4ba554ebd) (DefaultImporter) -> (artifact id: '5bf8947e196f111365e7839fffff47fe') in 0.0012873 seconds -2026-03-27T14:01:36.1545588Z 15:01:36.154 | Start importing Packages/io.sentry.unity/Textures/Logo.png using Guid(d0c73c7edf6ed43b698bca840264c8a4) (TextureImporter) -> (artifact id: '909711a3ce3a435fdd99931f2fe5cd05') in 0.0346791 seconds -2026-03-27T14:01:36.1557075Z 15:01:36.154 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignRight_Light.psd using Guid(e05ace3bd15740cda0bad60d89092a5b) (TextureImporter) -> (artifact id: '3ae2da72bf1686738c7601cd42aaeb24') in 0.0179429 seconds -2026-03-27T14:01:36.1563224Z 15:01:36.155 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMiddle.psd using Guid(41b96614b2e6494ba995ddcd252d11ae) (TextureImporter) -> (artifact id: '3e6a22371aae2fa8979dc9002e0c4b2d') in 0.0076289 seconds -2026-03-27T14:01:36.1570911Z 15:01:36.156 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenter.psd using Guid(81ed8c76d2bc4a4c95d092c98af4e58f) (TextureImporter) -> (artifact id: 'd580bcccf1f72402bf3514320ec9a359') in 0.0067999 seconds -2026-03-27T14:01:36.1576488Z 15:01:36.157 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignLeft_Light.psd using Guid(12736c98af174f91827a26b66d2b01b9) (TextureImporter) -> (artifact id: '5e37a4dbf8a2192d921188f40c120843') in 0.0062546 seconds -2026-03-27T14:01:36.1587307Z 15:01:36.158 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignJustified.psd using Guid(92027f7f8cfc4feaa477da0dc38d3d46) (TextureImporter) -> (artifact id: '36165dea4c57002841d731bbe900e79b') in 0.0082353 seconds -2026-03-27T14:01:36.1594047Z 15:01:36.158 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignLeft.psd using Guid(9288066c33474b94b6ee5465f4df1cc0) (TextureImporter) -> (artifact id: '6fc1c81b1e592892edc1f8e8b69f3a5e') in 0.0065843 seconds -2026-03-27T14:01:36.1599863Z 15:01:36.159 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMidLine.psd using Guid(c2f7f6a88b4c4f20a53deb72f3d9144c) (TextureImporter) -> (artifact id: '3781f0bdb3e2d0ea2607934bec2312ea') in 0.0058002 seconds -2026-03-27T14:01:36.1605340Z 15:01:36.160 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/SectionHeader_Light.psd using Guid(e3b0f810fdea84e40ab4ba20f256f7e8) (TextureImporter) -> (artifact id: 'b0f169dbaea8eb4c122911ad6cf336d4') in 0.0057109 seconds -2026-03-27T14:01:36.1611628Z 15:01:36.160 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignRight.psd using Guid(342a0f8aca7f4f0691338912faec0494) (TextureImporter) -> (artifact id: 'c9354f64110ee8e6a604bb87abb4700e') in 0.0062432 seconds -2026-03-27T14:01:36.1620664Z 15:01:36.161 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignFlush_Light.psd using Guid(64b9fad609434c489c32b1cdf2004a1c) (TextureImporter) -> (artifact id: '68e147723765e53a92f74a0f1ecac749') in 0.0105863 seconds -2026-03-27T14:01:36.1627962Z 15:01:36.162 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenterGeo_Light.psd using Guid(35ff0937876540d3bd4b6a941df62a92) (TextureImporter) -> (artifact id: 'b2dbfa2e919c523144acf4d29a4086b4') in 0.006324 seconds -2026-03-27T14:01:36.1633768Z 15:01:36.162 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMiddle_Light.psd using Guid(066619c9c9c84f89acb1b48c11a7efe2) (TextureImporter) -> (artifact id: '4f0fef57b5323515800ee9e3fd4137ca') in 0.0098815 seconds -2026-03-27T14:01:36.1654401Z 15:01:36.163 | Start importing Packages/io.sentry.unity/Textures/Megaphone.png using Guid(c68f744cc289b4ab1823c5e1159527ec) (TextureImporter) -> (artifact id: '4179c0cd1de6d42ab007201f3b3694a4') in 0.0099641 seconds -2026-03-27T14:01:36.1751747Z 15:01:36.168 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Dropdown Icon.psd using Guid(a7ec9e7ad8b847b7ae4510af83c5d868) (TextureImporter) -> (artifact id: 'badae5e6f9bcdb7a89e0b50331f66ebe') in 0.0075394 seconds -2026-03-27T14:01:36.1778522Z 15:01:36.176 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenterGeo.psd using Guid(c76700ea0062413d9f69409b4e9e151b) (TextureImporter) -> (artifact id: '661f2381c95b068549ad6120b100e68e') in 0.0056951 seconds -2026-03-27T14:01:36.1785150Z 15:01:36.177 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBaseLine_Light.psd using Guid(18775b51e3bd42299fd30bd036ea982f) (TextureImporter) -> (artifact id: '7c3898717057e66bb893aad313df4048') in 0.0061411 seconds -2026-03-27T14:01:36.1798480Z 15:01:36.179 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignTop.psd using Guid(48d034c499ee4697af9dd6e327110249) (TextureImporter) -> (artifact id: '377e2bc0c8a46a7feac89b0a868b49ea') in 0.0113603 seconds -2026-03-27T14:01:36.1808948Z 15:01:36.180 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBottom_Light.psd using Guid(585b70cb75dd43efbfead809c30a1731) (TextureImporter) -> (artifact id: 'ddd843b4cd58bf3fe5836972210b70f4') in 0.0064229 seconds -2026-03-27T14:01:36.1819173Z 15:01:36.181 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCapLine_Light.psd using Guid(49679f302ac6408697f6b9314a38985c) (TextureImporter) -> (artifact id: 'f3fa05c979b30fab1804c431895dbed5') in 0.0090703 seconds -2026-03-27T14:01:36.1830979Z 15:01:36.182 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignFlush.psd using Guid(691475c57a824010be0c6f474caeb7e1) (TextureImporter) -> (artifact id: '61800d9cc974cac89df6e246933e989c') in 0.0265042 seconds -2026-03-27T14:01:36.1865596Z 15:01:36.184 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenter_Light.psd using Guid(6ace62d30f494c948b71d5594afce11d) (TextureImporter) -> (artifact id: 'fde0c963a7583bcd13c4b52439b14f56') in 0.0110497 seconds -2026-03-27T14:01:36.2082337Z 15:01:36.188 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBottom.psd using Guid(ca51b19024094d1b87f3e07edb0a75fb) (TextureImporter) -> (artifact id: 'ee8a53f75400888e77881f338fffdb8b') in 0.0147151 seconds -2026-03-27T14:01:36.2107567Z 15:01:36.209 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignJustified_Light.psd using Guid(fa6bd40a216346b783a4cce741d277a5) (TextureImporter) -> (artifact id: '54891ceb02fa3a16455d60a5f0b33e5d') in 0.0127456 seconds -2026-03-27T14:01:36.2114736Z 15:01:36.210 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBaseLine.psd using Guid(8bc445bb79654bf496c92d0407840a92) (TextureImporter) -> (artifact id: '5eed749faac936ec4575dbb4080dbc58') in 0.0069826 seconds -2026-03-27T14:01:36.2121285Z 15:01:36.211 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMidline_Light.psd using Guid(bb42b2d967d6427983c901a4ffc8ecd9) (TextureImporter) -> (artifact id: 'c472d3099093e430e34f947338a13f87') in 0.010851 seconds -2026-03-27T14:01:36.2256920Z 15:01:36.212 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/SectionHeader_Dark.psd using Guid(fb5730e24283d0c489e5c7d0bee023d9) (TextureImporter) -> (artifact id: '3d7b0a2c1a2ff9005d4ead61e6e14280') in 0.0074494 seconds -2026-03-27T14:01:36.2278354Z 15:01:36.227 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Sprite Asset Icon.psd using Guid(ec7c645d93308c04d8840982af12101e) (TextureImporter) -> (artifact id: '3235c1058a15e38e6ca2680818755ffb') in 0.0074405 seconds -2026-03-27T14:01:36.2297145Z 15:01:36.228 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCapLine.psd using Guid(0d9a36012a224080966c7b55896aa0f9) (TextureImporter) -> (artifact id: 'd63113fc13a2580993720e317e3df39c') in 0.0094743 seconds -2026-03-27T14:01:36.2384278Z 15:01:36.230 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignTop_Light.psd using Guid(ed041e68439749a69d0efa0e3d896c2e) (TextureImporter) -> (artifact id: '3b3d28dadc602d7233d4867a9e8c1438') in 0.0198146 seconds -2026-03-27T14:01:36.2391429Z 15:01:36.238 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Input Field Icon.psd using Guid(3ee40aa79cd242a5b53b0b0ca4f13f0f) (TextureImporter) -> (artifact id: 'b65162605744e453138e152af86801d4') in 0.0098707 seconds -2026-03-27T14:01:36.2398617Z 15:01:36.239 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Font Asset Icon.psd using Guid(ee148e281f3c41c5b4ff5f8a5afe5a6c) (TextureImporter) -> (artifact id: '73ff30085a95e94327fbed6915b7a1c0') in 0.0089624 seconds -2026-03-27T14:01:36.2408136Z 15:01:36.240 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Text Component Icon.psd using Guid(2fd6421f253b4ef1a19526541f9ffc0c) (TextureImporter) -> (artifact id: '8411a3809c882ad7c8b526b6f6e00d81') in 0.0182661 seconds -2026-03-27T14:01:36.2415250Z 15:01:36.241 | Start importing Packages/com.unity.ugui/Editor Resources/Shaders/TMP_SDF_SSD.cginc using Guid(abe6991365a27d341a10580f3b7c0f44) (ShaderIncludeImporter) -> (artifact id: '6210c9b75bcff879a66d3acd3c6dd96f') in 0.0063236 seconds -2026-03-27T14:01:36.2431724Z 15:01:36.242 | Start importing Packages/com.unity.ugui/Editor Resources/Shaders/TMP_Properties.cginc using Guid(3c6c403084eacec478a1129ce20061ea) (ShaderIncludeImporter) -> (artifact id: '0b6510a7584c4ccb00079dbc08b3b282') in 0.0060127 seconds -2026-03-27T14:01:36.2439666Z 15:01:36.243 | Start importing Packages/com.unity.ugui/Editor Resources/Shaders/TMP_SDF Internal Editor.shader using Guid(9c442dc870b456e48b615cd8add0e9ef) (ShaderImporter) -2026-03-27T14:01:36.6536754Z 15:01:36.651 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds -2026-03-27T14:01:36.6544933Z 15:01:36.653 | -> (artifact id: '1d84de99b17eddc779fc1f69810430fa') in 0.4045807 seconds -2026-03-27T14:01:36.6552485Z 15:01:36.654 | Start importing Packages/com.unity.ugui/README.md using Guid(e0ae6629cc70b514889df37fccb76832) (TextScriptImporter) -> (artifact id: '44afeb028f510a9f4544ce88fd1cf112') in 0.0055287 seconds -2026-03-27T14:01:36.6559649Z 15:01:36.655 | Start importing Packages/com.unity.ugui/package.json using Guid(319b8889f363f5947acf209c17a94149) (PackageManifestImporter) -> (artifact id: '1726dd8c871d3437e8b0c3114bbdb32b') in 0.0050629 seconds -2026-03-27T14:01:36.6566434Z 15:01:36.656 | Start importing Packages/io.sentry.unity/Runtime/Sentry.xml using Guid(41902a87e842efbd4b9aa51ab056e0bc) (TextScriptImporter) -> (artifact id: 'a8f6234e3ac7baed368f8567e47ee0ad') in 0.0063816 seconds -2026-03-27T14:01:36.6575376Z 15:01:36.657 | Start importing Packages/com.unity.ugui/PackageConversionData.json using Guid(05f5bfd584002f948982a1498890f9a9) (TextScriptImporter) -> (artifact id: 'd9e43e27959cd399247c69832ab9dc4f') in 0.0056106 seconds -2026-03-27T14:01:36.6583753Z 15:01:36.657 | Start importing Packages/io.sentry.unity/package.json using Guid(1524ebfb840f4075483e213d4429e42a) (PackageManifestImporter) -> (artifact id: '90116a6eaaa05d1e7557e168bfac1dd3') in 0.0045466 seconds -2026-03-27T14:01:36.6591073Z 15:01:36.658 | Start importing Packages/com.unity.ugui/CHANGELOG.md using Guid(c851bee4305bddf438cc6ffc515991ce) (TextScriptImporter) -> (artifact id: '80aa7e1c8215b9d3824af55dd65c9c21') in 0.0045995 seconds -2026-03-27T14:01:36.6600110Z 15:01:36.659 | Start importing Packages/io.sentry.unity/README.md using Guid(4ad34b1eec706de22b2938baf2bb6255) (TextScriptImporter) -> (artifact id: '702e956347e775bdc58eb12f3a7f100c') in 0.0044189 seconds -2026-03-27T14:01:36.6611247Z 15:01:36.660 | Start importing Packages/io.sentry.unity/LICENSE.md using Guid(4adb3edb303941c0881bb6c28b005a07) (TextScriptImporter) -> (artifact id: '1477f609353968f1d8e06e0da2e297a0') in 0.0069913 seconds -2026-03-27T14:01:36.6620428Z 15:01:36.661 | Start importing Packages/io.sentry.unity/CHANGELOG.md using Guid(abe52f7254eb429ba00a02e7e937ad7a) (TextScriptImporter) -> (artifact id: '0159e4f5c68b470f52b20ca3aabcebde') in 0.0069643 seconds -2026-03-27T14:01:36.6635963Z 15:01:36.662 | Start importing Packages/com.unity.ugui/LICENSE.md using Guid(4d3d51749e989f747b2674e0b4d9b3d7) (TextScriptImporter) -> (artifact id: 'ae566241d6b201e35280c27d51ece7ee') in 0.0046638 seconds -2026-03-27T14:01:36.6637659Z 15:01:36.663 | Start importing Packages/com.unity.ugui/PackageConversionData_Assets.json using Guid(0e0afa652c0031c48896a97b424d027b) (TextScriptImporter) -> (artifact id: '804ed7b65d087f01b748fb71ecdd6f77') in 0.0060174 seconds -2026-03-27T14:01:36.6643887Z 15:01:36.663 | Start importing Packages/io.sentry.unity/Prefabs/SentryUserFeedback.prefab using Guid(fc6aa2b03d79e456baf50accbd54b55e) (PrefabImporter) -2026-03-27T14:01:37.0733883Z 15:01:37.072 | -> (artifact id: '35f50bdde8faecf92c988baa09f39ca5') in 0.040416 seconds -2026-03-27T14:01:37.0784610Z 15:01:37.074 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds -2026-03-27T14:01:37.0787738Z 15:01:37.078 | Refreshing native plugins compatible for Editor in 5.11 ms, found 1 plugins. -2026-03-27T14:01:37.0794895Z 15:01:37.079 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:01:37.0801846Z 15:01:37.079 | Asset Pipeline Refresh (id=0b6bf951f1ac3374d9a27ddd2ccd0b77): Total: 42.459 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport) -2026-03-27T14:01:37.0808743Z 15:01:37.080 | Summary: -2026-03-27T14:01:37.0814529Z 15:01:37.081 | Imports: total=171 (actual=171, local cache=0, cache server=0) -2026-03-27T14:01:37.0824647Z 15:01:37.082 | Asset DB Process Time: managed=22 ms, native=12998 ms -2026-03-27T14:01:37.0830227Z 15:01:37.082 | Asset DB Callback time: managed=79 ms, native=7651 ms -2026-03-27T14:01:37.0837417Z 15:01:37.083 | Scripting: domain reloads=2, domain reload time=1817 ms, compile time=19861 ms, other=27 ms -2026-03-27T14:01:37.0842622Z 15:01:37.083 | Project Asset Count: scripts=217, non-scripts=146 -2026-03-27T14:01:37.0849392Z 15:01:37.084 | Asset File Changes: new=563, changed=564, moved=0, deleted=0 -2026-03-27T14:01:37.0855027Z 15:01:37.085 | Scan Filter Count: 0 -2026-03-27T14:01:37.0860334Z 15:01:37.085 | InvokeCustomDependenciesCallbacks: 0.001ms -2026-03-27T14:01:37.0866316Z 15:01:37.086 | InvokePackagesCallback: 7710.823ms -2026-03-27T14:01:37.0871790Z 15:01:37.086 | ApplyChangesToAssetFolders: 1.165ms -2026-03-27T14:01:37.0880063Z 15:01:37.087 | Scan: 564.289ms -2026-03-27T14:01:37.0885748Z 15:01:37.088 | OnSourceAssetsModified: 6.410ms -2026-03-27T14:01:37.0891991Z 15:01:37.088 | CategorizeAssetsWithTransientArtifact: 7.377ms -2026-03-27T14:01:37.0897227Z 15:01:37.089 | ProcessAssetsWithTransientArtifactChanges: 42.068ms -2026-03-27T14:01:37.0903057Z 15:01:37.089 | CategorizeAssets: 3.012ms -2026-03-27T14:01:37.0909409Z 15:01:37.090 | ImportOutOfDateAssets: 11954.816ms (-9253.232ms without children) -2026-03-27T14:01:37.0914854Z 15:01:37.091 | ImportManagerImport: 1340.492ms (20.312ms without children) -2026-03-27T14:01:37.0920418Z 15:01:37.091 | ImportInProcess: 1319.561ms -2026-03-27T14:01:37.0927184Z 15:01:37.092 | UpdateCategorizedAssets: 0.619ms -2026-03-27T14:01:37.0932832Z 15:01:37.092 | CompileScripts: 19860.664ms -2026-03-27T14:01:37.0938895Z 15:01:37.093 | CollectScriptTypesHashes: 0.001ms -2026-03-27T14:01:37.0944421Z 15:01:37.094 | ReloadNativeAssets: 0.000ms -2026-03-27T14:01:37.0950050Z 15:01:37.094 | UnloadImportedAssets: 6.526ms -2026-03-27T14:01:37.0955905Z 15:01:37.095 | ReloadImportedAssets: 0.014ms -2026-03-27T14:01:37.0961498Z 15:01:37.095 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.114ms -2026-03-27T14:01:37.0967487Z 15:01:37.096 | InitializingProgressBar: 0.005ms -2026-03-27T14:01:37.0973006Z 15:01:37.096 | PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms -2026-03-27T14:01:37.0978378Z 15:01:37.097 | OnDemandSchedulerStart: 0.231ms -2026-03-27T14:01:37.0983787Z 15:01:37.097 | PostProcessAllAssets: 181.387ms -2026-03-27T14:01:37.0989259Z 15:01:37.098 | Hotreload: 6.353ms -2026-03-27T14:01:37.0994687Z 15:01:37.099 | GatherAllCurrentPrimaryArtifactRevisions: 0.002ms -2026-03-27T14:01:37.0999967Z 15:01:37.099 | UnloadStreamsBegin: 1.919ms -2026-03-27T14:01:37.1005478Z 15:01:37.100 | PersistCurrentRevisions: 0.563ms -2026-03-27T14:01:37.1011546Z 15:01:37.100 | UnloadStreamsEnd: 0.051ms -2026-03-27T14:01:37.1016728Z 15:01:37.101 | GenerateScriptTypeHashes: 0.590ms -2026-03-27T14:01:37.1021929Z 15:01:37.101 | Untracked: 21978.691ms -2026-03-27T14:01:37.1027634Z 15:01:37.102 | -2026-03-27T14:01:37.1035531Z 15:01:37.102 | Application.AssetDatabase Initial Refresh End -2026-03-27T14:01:37.5222570Z 15:01:37.521 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -2026-03-27T14:01:37.5229358Z 15:01:37.522 | Scanning for USB devices : 10.423ms -2026-03-27T14:01:37.5237561Z 15:01:37.523 | Initializing Unity extensions: -2026-03-27T14:01:37.9424440Z 15:01:37.941 | [MODES] ModeService[none].Initialize -2026-03-27T14:01:37.9430465Z 15:01:37.942 | [MODES] ModeService[none].LoadModes -2026-03-27T14:01:37.9437708Z 15:01:37.943 | [MODES] Loading mode Default (0) for mode-current-id-IntegrationTest6000.3.8f1 -2026-03-27T14:01:41.2095625Z 15:01:41.208 | Unloading 4 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:01:41.2101935Z 15:01:41.209 | Unloading 472 unused Assets / (0.5 MB). Loaded Objects now: 1052. -2026-03-27T14:01:41.2108522Z 15:01:41.210 | Memory consumption went from 100.0 MB to 99.5 MB. -2026-03-27T14:01:41.2114208Z 15:01:41.210 | Total: 7.067600 ms (FindLiveObjects: 0.089200 ms CreateObjectMapping: 0.030900 ms MarkObjects: 6.565200 ms DeleteObjects: 0.381000 ms) -2026-03-27T14:01:41.2118992Z 15:01:41.211 | -2026-03-27T14:01:41.2124048Z 15:01:41.212 | Curl error 42: Callback aborted -2026-03-27T14:01:41.2130363Z 15:01:41.212 | Request timed out while processing request "https://public-cdn.cloud.unity3d.com/config/production", HTTP error code 0 -2026-03-27T14:01:41.2134842Z 15:01:41.213 | .[UnityConnect] Request timed out. -2026-03-27T14:01:41.2139971Z 15:01:41.213 | Killing ADB server in 0.118377 seconds. -2026-03-27T14:01:41.2145308Z 15:01:41.214 | [Physics::Module] Cleanup current backend. -2026-03-27T14:01:41.2150442Z 15:01:41.214 | [Physics::Module] Id: 0xf2b8ea05 -2026-03-27T14:01:41.2155950Z 15:01:41.215 | Input System module state changed to: ShutdownInProgress. -2026-03-27T14:01:41.2161131Z 15:01:41.215 | Input System polling thread exited. -2026-03-27T14:01:41.2166559Z 15:01:41.216 | Input System module state changed to: Shutdown. -2026-03-27T14:01:41.2171955Z 15:01:41.216 | [Licensing::IpcConnector] LicenseClient-github-runner-notifications channel disconnected successfully. -2026-03-27T14:01:41.2177270Z 15:01:41.217 | [Licensing::IpcConnector] LicenseClient-github-runner channel disconnected successfully. -2026-03-27T14:01:41.2182543Z 15:01:41.217 | AcceleratorClientConnectionCallback - disconnected - :0 -2026-03-27T14:01:41.2187475Z 15:01:41.218 | Cleanup mono -2026-03-27T14:01:43.2692195Z 15:01:43.268 | Checking for leaked weakptr: -2026-03-27T14:01:43.2698715Z 15:01:43.269 | Found no leaked weakptrs. -2026-03-27T14:01:43.2709540Z 15:01:43.270 | [Package Manager] Server process was shutdown -2026-03-27T14:01:43.2720823Z 15:01:43.271 | ##utp:{"type":"MemoryLeaks","version":2,"phase":"Immediate","time":1774620102938,"processId":33660,"allocatedMemory":10888059,"memoryLabels":[{"Default":29313},{"Permanent":15236},{"NewDelete":67977},{"Thread":4230384},{"Manager":30237},{"VertexData":8},{"Geometry":816},{"Texture":160},{"Shader":79699},{"Material":24},{"GfxDevice":55257},{"Animation":392},{"Audio":3040},{"FreeType":8},{"FontEngine":736},{"Physics":2090},{"Physics2D":16},{"Serialization":848},{"Input":14984},{"JobScheduler":33024},{"TextLib":216},{"Mono":32},{"ScriptingNativeRuntime":155060},{"BaseObject":1620688},{"Resource":1336},{"Renderer":3000},{"Transform":4685},{"File":1016},{"WebCam":616},{"Culling":32},{"Terrain":11394},{"Wind":24},{"STL":40},{"String":67801},{"DynamicArray":105592},{"HashMap":77563},{"Utility":2659318},{"Curl":1712},{"PoolAlloc":2056},{"AI":80},{"TypeTree":5341},{"ScriptManager":512},{"RuntimeInitializeOnLoadManager":64},{"SpriteAtlas":112},{"GI":7792},{"Director":8240},{"CloudService":19152},{"WebRequest":845},{"VR":47994},{"SceneManager":504},{"Video":64},{"LazyScriptCache":32},{"Camera":17},{"Secure":2113},{"SerializationCache":1576},{"APIUpdating":10320},{"Subsystems":336},{"VirtualTexturing":57888},{"StaticSafetyDebugInfo":278528},{"Analytics":384},{"Hierarchy":608},{"CoreStats":13032},{"Identifiers":12960},{"Gui":96},{"EditorUtility":375044},{"VersionControl":4},{"Undo":947},{"AssetDatabase":721441},{"EditorGi":328},{"UnityConnect":29208},{"Upm":1896},{"AssetCompliance":64},{"DrivenProperties":72},{"LocalIPC":219},{"ProfilerEditor":9746},{"CoreBusinessMetrics":2878},{"Licensing":1232},{"AssetReference":32},{"IPCStream":32}]} -2026-03-27T14:01:43.6805019Z ##[endgroup] -2026-03-27T14:01:43.6820931Z Unity finished successfully. Time taken: 00:00:58.695 -2026-03-27T14:01:43.6853598Z 15:01:43.684 | -2026-03-27T14:01:43.6854251Z AddSentryPackage | SUCCESS because the following text was found: '15:01:15.103 | Sentry Package Installation: SUCCESS 15:01:35.669 | Sentry Package Installation: SUCCESS' -2026-03-27T14:01:43.6858193Z 15:01:43.685 | Copying Integration Test Files... -2026-03-27T14:01:43.7896848Z 15:01:43.789 | [OK] Sentry added -2026-03-27T14:01:43.7901448Z -2026-03-27T14:01:43.7907123Z ================================================================ -2026-03-27T14:01:43.7911905Z CONFIGURING SENTRY -2026-03-27T14:01:43.7916975Z ================================================================ -2026-03-27T14:01:43.8222674Z 15:01:43.821 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -2026-03-27T14:01:43.8229619Z 15:01:43.822 | Configuring Sentry options... -2026-03-27T14:01:43.8248454Z ##[group]Run C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -quit -batchmode -nographics -disable-assembly-updater -projectPath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -executeMethod Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation.ConfigureOptions -optionsScript IntegrationOptionsConfiguration -cliOptionsScript CliConfiguration -logfile unity.log -2026-03-27T14:01:43.8250643Z Removing Unity log unity.log -2026-03-27T14:01:43.8493042Z Waiting for Unity to finish. -2026-03-27T14:01:44.2628246Z 15:01:44.261 | [Licensing::Module] Trying to connect to existing licensing client channel... -2026-03-27T14:01:44.2641672Z 15:01:44.263 | Built from '6000.3/staging' branch; Version is '6000.3.8f1 (1c7db571dde0) revision 1867189'; Using compiler version '194234433'; Build Type 'Release' -2026-03-27T14:01:44.2665549Z 15:01:44.265 | [Licensing::IpcConnector] Channel LicenseClient-github-runner doesn't exist -2026-03-27T14:01:44.2674330Z 15:01:44.266 | OS: 'Windows 11 (10.0.26200) Professional' Language: 'en' Physical Memory: 16322 MB -2026-03-27T14:01:44.2681648Z 15:01:44.267 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1 -2026-03-27T14:01:44.2693703Z 15:01:44.268 | System architecture: x64 -2026-03-27T14:01:44.2700143Z 15:01:44.269 | Process architecture: x64 -2026-03-27T14:01:44.2705848Z 15:01:44.270 | Date: 2026-03-27T14:01:44Z -2026-03-27T14:01:44.2711893Z 15:01:44.270 | [Licensing::Module] Successfully launched the LicensingClient (PId: 41372) -2026-03-27T14:01:44.6737169Z 15:01:44.673 | -2026-03-27T14:01:44.6743492Z 15:01:44.673 | COMMAND LINE ARGUMENTS: -2026-03-27T14:01:44.6749227Z 15:01:44.674 | C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -2026-03-27T14:01:44.6754383Z 15:01:44.675 | -quit -2026-03-27T14:01:44.6759308Z 15:01:44.675 | -batchmode -2026-03-27T14:01:44.6765164Z 15:01:44.676 | -nographics -2026-03-27T14:01:44.6772836Z 15:01:44.676 | -disable-assembly-updater -2026-03-27T14:01:44.6777739Z 15:01:44.677 | -projectPath -2026-03-27T14:01:44.6786409Z 15:01:44.678 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:44.6793125Z 15:01:44.678 | -executeMethod -2026-03-27T14:01:44.6810863Z 15:01:44.680 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation.ConfigureOptions -2026-03-27T14:01:44.6830866Z 15:01:44.682 | -optionsScript -2026-03-27T14:01:44.6838927Z 15:01:44.682 | IntegrationOptionsConfiguration -2026-03-27T14:01:44.6846455Z 15:01:44.684 | -cliOptionsScript -2026-03-27T14:01:44.6864435Z 15:01:44.686 | CliConfiguration -2026-03-27T14:01:44.6870549Z 15:01:44.686 | -logfile -2026-03-27T14:01:44.6879087Z 15:01:44.687 | unity.log -2026-03-27T14:01:44.6891135Z 15:01:44.688 | Successfully changed project path to: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:44.6898217Z 15:01:44.689 | C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:44.6902278Z 15:01:44.689 | [UnityMemory] Configuration Parameters - Can be set up in boot.config -2026-03-27T14:01:44.6908996Z 15:01:44.690 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" -2026-03-27T14:01:44.6918541Z 15:01:44.691 | "memorysetup-temp-allocator-size-audio-worker=65536" -2026-03-27T14:01:44.6924129Z 15:01:44.692 | "memorysetup-temp-allocator-size-gfx=262144" -2026-03-27T14:01:44.6985672Z 15:01:44.692 | "memorysetup-allocator-temp-initial-block-size-main=262144" -2026-03-27T14:01:44.7063536Z 15:01:44.701 | "memorysetup-allocator-temp-initial-block-size-worker=262144" -2026-03-27T14:01:44.7111062Z 15:01:44.710 | "memorysetup-temp-allocator-size-background-worker=32768" -2026-03-27T14:01:44.7117475Z 15:01:44.711 | "memorysetup-temp-allocator-size-job-worker=262144" -2026-03-27T14:01:44.7126494Z 15:01:44.712 | "memorysetup-temp-allocator-size-preload-manager=33554432" -2026-03-27T14:01:44.7133843Z 15:01:44.712 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:01:44.7141413Z 15:01:44.713 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:01:44.7148469Z 15:01:44.714 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:01:44.7159799Z 15:01:44.715 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:01:44.7168071Z 15:01:44.716 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:01:44.7173118Z 15:01:44.716 | "memorysetup-bucket-allocator-granularity=16" -2026-03-27T14:01:44.7180825Z 15:01:44.717 | "memorysetup-bucket-allocator-bucket-count=8" -2026-03-27T14:01:44.7204732Z 15:01:44.718 | "memorysetup-bucket-allocator-block-size=33554432" -2026-03-27T14:01:44.7274955Z 15:01:44.724 | "memorysetup-bucket-allocator-block-count=8" -2026-03-27T14:01:44.7300971Z 15:01:44.729 | "memorysetup-main-allocator-block-size=16777216" -2026-03-27T14:01:44.7311327Z 15:01:44.730 | "memorysetup-thread-allocator-block-size=16777216" -2026-03-27T14:01:44.7333267Z 15:01:44.731 | "memorysetup-gfx-main-allocator-block-size=16777216" -2026-03-27T14:01:44.7399536Z 15:01:44.733 | "memorysetup-gfx-thread-allocator-block-size=16777216" -2026-03-27T14:01:44.7412179Z 15:01:44.740 | "memorysetup-cache-allocator-block-size=4194304" -2026-03-27T14:01:44.7434899Z 15:01:44.742 | "memorysetup-typetree-allocator-block-size=2097152" -2026-03-27T14:01:44.7447743Z 15:01:44.744 | "memorysetup-profiler-bucket-allocator-granularity=16" -2026-03-27T14:01:44.7464930Z 15:01:44.745 | "memorysetup-profiler-bucket-allocator-bucket-count=8" -2026-03-27T14:01:44.7473180Z 15:01:44.746 | "memorysetup-profiler-bucket-allocator-block-size=33554432" -2026-03-27T14:01:44.7480297Z 15:01:44.747 | "memorysetup-profiler-bucket-allocator-block-count=8" -2026-03-27T14:01:44.7487854Z 15:01:44.748 | "memorysetup-profiler-allocator-block-size=16777216" -2026-03-27T14:01:44.7517795Z 15:01:44.750 | "memorysetup-profiler-editor-allocator-block-size=1048576" -2026-03-27T14:01:44.7524342Z 15:01:44.752 | "memorysetup-temp-allocator-size-main=16777216" -2026-03-27T14:01:44.7532338Z 15:01:44.752 | "memorysetup-job-temp-allocator-block-size=2097152" -2026-03-27T14:01:44.7540240Z 15:01:44.753 | "memorysetup-job-temp-allocator-block-size-background=1048576" -2026-03-27T14:01:44.7546721Z 15:01:44.754 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" -2026-03-27T14:01:44.7551405Z 15:01:44.754 | "memorysetup-temp-allocator-size-cloud-worker=32768" -2026-03-27T14:01:44.7557584Z 15:01:44.755 | Player connection [42504] Target information: -2026-03-27T14:01:44.7568272Z 15:01:44.755 | -2026-03-27T14:01:44.7589930Z 15:01:44.758 | Player connection [42504] * "[IP] 10.2.1.51 [Port] 55504 [Flags] 2 [Guid] 2858555048 [EditorId] 2858555048 [Version] 1048832 [Id] WindowsEditor(7,GDX-T1) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" -2026-03-27T14:01:44.7594760Z 15:01:44.758 | -2026-03-27T14:01:44.7602172Z 15:01:44.759 | Player connection [42504] Host joined multi-casting on [225.0.0.222:54997]... -2026-03-27T14:01:44.7610321Z 15:01:44.760 | Player connection [42504] Host joined alternative multi-casting on [225.0.0.222:34997]... -2026-03-27T14:01:44.7628228Z 15:01:44.761 | Input System module state changed to: Initialized. -2026-03-27T14:01:44.7663955Z 15:01:44.764 | [Physics::Module] Initialized fallback backend. -2026-03-27T14:01:44.7786533Z 15:01:44.772 | [Physics::Module] Id: 0xdecafbad -2026-03-27T14:01:44.7810813Z 15:01:44.780 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner" at "2026-03-27T14:01:44.6930479Z" -2026-03-27T14:01:45.1955749Z 15:01:45.192 | [Package Manager] Connected to IPC stream "Upm-10040" after 0.5 seconds. -2026-03-27T14:01:45.1965700Z 15:01:45.195 | [Licensing::Module] Licensing is not yet initialized. -2026-03-27T14:01:47.6493669Z 15:01:47.648 | [Licensing::Client] Handshaking with LicensingClient: -2026-03-27T14:01:47.6504086Z 15:01:47.649 | Version: 1.17.4+4293ba1 -2026-03-27T14:01:47.6509167Z 15:01:47.650 | Session Id: 6d75d715b8874d87bd91d9c5be5c2341 -2026-03-27T14:01:47.6515076Z 15:01:47.651 | Correlation Id: cead49048608e2f0a1cee44e9b4e34ae -2026-03-27T14:01:47.6523113Z 15:01:47.651 | External correlation Id: 917524786545028338 -2026-03-27T14:01:47.6529181Z 15:01:47.652 | Machine Id: b5cL0vq5etg728hHCfaSnjJzEl4= -2026-03-27T14:01:47.6535243Z 15:01:47.653 | [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-github-runner" (connect: 0.57s, validation: 0.07s, handshake: 2.53s) -2026-03-27T14:01:47.6541376Z 15:01:47.653 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner-notifications" at "2026-03-27T14:01:47.2962632Z" -2026-03-27T14:01:47.6547604Z 15:01:47.654 | [Licensing::Module] Connected to LicensingClient (PId: 41372, launch time: 0.01, total connection time: 3.17s) -2026-03-27T14:01:47.6553687Z 15:01:47.654 | [Licensing::Module] Error: Access token is unavailable; failed to update -2026-03-27T14:01:47.6560056Z 15:01:47.655 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:47.6573772Z 15:01:47.656 | [Licensing::Module] License group: -2026-03-27T14:01:47.6581186Z 15:01:47.657 | Id: SC-6P43-RKFA-9PYH-ZZ9Q-XXXX -2026-03-27T14:01:47.6588016Z 15:01:47.658 | Product: Unity Pro -2026-03-27T14:01:47.6593384Z 15:01:47.658 | Type: ULF -2026-03-27T14:01:47.6599079Z 15:01:47.659 | Expiration: 2027-03-05T00:00:00Z -2026-03-27T14:01:47.6604592Z 15:01:47.660 | [Licensing::Client] Successfully updated license, isAsync: True, time: 0.01 -2026-03-27T14:01:47.6610085Z 15:01:47.660 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:47.6616952Z 15:01:47.661 | [Licensing::Module] Licensing Background thread has ended after 3.23s -2026-03-27T14:01:47.6622413Z 15:01:47.661 | [Licensing::Module] Licensing is initialized (took 2.25s). -2026-03-27T14:01:47.6640012Z 15:01:47.662 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:47.6659327Z 15:01:47.664 | Library Redirect Path: Library/ -2026-03-27T14:01:47.6669651Z 15:01:47.666 | [Physics::Module] Selected backend. -2026-03-27T14:01:47.6680797Z 15:01:47.667 | [Physics::Module] Name: PhysX -2026-03-27T14:01:47.6687703Z 15:01:47.668 | [Physics::Module] Id: 0xf2b8ea05 -2026-03-27T14:01:47.6695241Z 15:01:47.668 | [Physics::Module] SDK Version: 4.1.2 -2026-03-27T14:01:47.6709951Z 15:01:47.669 | [Physics::Module] Integration Version: 1.0.0 -2026-03-27T14:01:47.6713056Z 15:01:47.670 | [Physics::Module] Threading Mode: Multi-Threaded -2026-03-27T14:01:47.6720718Z 15:01:47.671 | Refreshing native plugins compatible for Editor in 0.89 ms, found 0 plugins. -2026-03-27T14:01:47.6729757Z 15:01:47.672 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:01:47.6737037Z 15:01:47.673 | Initialize engine version: 6000.3.8f1 (1c7db571dde0) -2026-03-27T14:01:47.6743153Z 15:01:47.673 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Resources/UnitySubsystems -2026-03-27T14:01:47.6749490Z 15:01:47.674 | [Subsystems] Discovering subsystems at path C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets -2026-03-27T14:01:47.6754669Z 15:01:47.675 | Forcing GfxDevice: Null -2026-03-27T14:01:47.6761130Z 15:01:47.675 | GfxDevice: creating device client; kGfxThreadingModeNonThreaded -2026-03-27T14:01:47.6767016Z 15:01:47.676 | NullGfxDevice: -2026-03-27T14:01:47.6777398Z 15:01:47.676 | Version: NULL 1.0 [1.0] -2026-03-27T14:01:47.6788427Z 15:01:47.677 | Renderer: Null Device -2026-03-27T14:01:47.6811181Z 15:01:47.680 | Vendor: Unity Technologies -2026-03-27T14:01:47.6824011Z 15:01:47.681 | Initialize mono -2026-03-27T14:01:47.6833223Z 15:01:47.682 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed' -2026-03-27T14:01:47.6847253Z 15:01:47.683 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -2026-03-27T14:01:47.6858071Z 15:01:47.684 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/etc' -2026-03-27T14:01:47.6863776Z 15:01:47.685 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56040 -2026-03-27T14:01:47.6869319Z 15:01:47.686 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts -2026-03-27T14:01:47.6875213Z 15:01:47.687 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts -2026-03-27T14:01:47.6880547Z 15:01:47.687 | ImportWorker Server TCP listen port: 0 -2026-03-27T14:01:47.6887485Z 15:01:47.688 | AcceleratorClientConnectionCallback - disconnected - :0 -2026-03-27T14:01:48.0946684Z 15:01:48.093 | Begin MonoManager ReloadAssembly -2026-03-27T14:01:48.0958775Z 15:01:48.094 | Registering precompiled unity dll's ... -2026-03-27T14:01:48.0967337Z 15:01:48.096 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -2026-03-27T14:01:48.0972699Z 15:01:48.096 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:48.0979256Z 15:01:48.097 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/PS5Player/UnityEditor.PS5.Extensions.dll -2026-03-27T14:01:48.0984508Z 15:01:48.098 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/UnityEditor.GameCoreScarlett.Extensions.dll -2026-03-27T14:01:48.0991115Z 15:01:48.098 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:48.0997395Z 15:01:48.099 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -2026-03-27T14:01:48.1005018Z 15:01:48.100 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreXboxOneSupport/UnityEditor.GameCoreXboxOne.Extensions.dll -2026-03-27T14:01:48.1010254Z 15:01:48.100 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:48.1017490Z 15:01:48.101 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -2026-03-27T14:01:48.1023131Z 15:01:48.101 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/Switch/UnityEditor.Switch.Extensions.dll -2026-03-27T14:01:48.1028497Z 15:01:48.102 | Registered in 0.043768 seconds. -2026-03-27T14:01:48.5177594Z 15:01:48.517 | - Loaded All Assemblies, in 0.617 seconds -2026-03-27T14:01:48.9289171Z 15:01:48.928 | Native extension for iOS target not found -2026-03-27T14:01:48.9295148Z 15:01:48.929 | Native extension for Android target not found -2026-03-27T14:01:51.7791689Z 15:01:51.778 | Android Extension - Scanning For ADB Devices 2637 ms -2026-03-27T14:01:51.7799506Z 15:01:51.779 | Native extension for WindowsStandalone target not found -2026-03-27T14:01:52.1832141Z 15:01:52.182 | ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:False -2026-03-27T14:01:52.1840102Z 15:01:52.183 | Mono: successfully reloaded assembly -2026-03-27T14:01:52.1847405Z 15:01:52.184 | - Finished resetting the current domain, in 3.521 seconds -2026-03-27T14:01:52.1853171Z 15:01:52.184 | Domain Reload Profiling: 4129ms -2026-03-27T14:01:52.1859009Z 15:01:52.185 | BeginReloadAssembly (196ms) -2026-03-27T14:01:52.1864477Z 15:01:52.186 | ExecutionOrderSort (0ms) -2026-03-27T14:01:52.1869010Z 15:01:52.186 | DisableScriptedObjects (0ms) -2026-03-27T14:01:52.1876264Z 15:01:52.187 | BackupInstance (0ms) -2026-03-27T14:01:52.1888284Z 15:01:52.187 | ReleaseScriptingObjects (0ms) -2026-03-27T14:01:52.1893451Z 15:01:52.188 | CreateAndSetChildDomain (4ms) -2026-03-27T14:01:52.1899353Z 15:01:52.189 | RebuildCommonClasses (47ms) -2026-03-27T14:01:52.1905803Z 15:01:52.190 | RebuildNativeTypeToScriptingClass (16ms) -2026-03-27T14:01:52.1910939Z 15:01:52.190 | initialDomainReloadingComplete (105ms) -2026-03-27T14:01:52.1917454Z 15:01:52.191 | LoadAllAssembliesAndSetupDomain (243ms) -2026-03-27T14:01:52.1924887Z 15:01:52.192 | LoadAssemblies (187ms) -2026-03-27T14:01:52.1930836Z 15:01:52.192 | RebuildTransferFunctionScriptingTraits (0ms) -2026-03-27T14:01:52.1936430Z 15:01:52.193 | AnalyzeDomain (235ms) -2026-03-27T14:01:52.1942181Z 15:01:52.193 | TypeCache.Refresh (234ms) -2026-03-27T14:01:52.1947395Z 15:01:52.194 | TypeCache.ScanAssembly (216ms) -2026-03-27T14:01:52.1952727Z 15:01:52.194 | BuildScriptInfoCaches (0ms) -2026-03-27T14:01:52.1957847Z 15:01:52.195 | ResolveRequiredComponents (1ms) -2026-03-27T14:01:52.1963055Z 15:01:52.195 | FinalizeReload (3522ms) -2026-03-27T14:01:52.1968633Z 15:01:52.196 | ReleaseScriptCaches (0ms) -2026-03-27T14:01:52.1974293Z 15:01:52.197 | RebuildScriptCaches (0ms) -2026-03-27T14:01:52.1983103Z 15:01:52.197 | SetupLoadedEditorAssemblies (3477ms) -2026-03-27T14:01:52.1993110Z 15:01:52.198 | LogAssemblyErrors (0ms) -2026-03-27T14:01:52.2001842Z 15:01:52.199 | InitializePlatformSupportModulesInManaged (3113ms) -2026-03-27T14:01:52.2009209Z 15:01:52.200 | SetLoadedEditorAssemblies (6ms) -2026-03-27T14:01:52.2016480Z 15:01:52.201 | BeforeProcessingInitializeOnLoad (110ms) -2026-03-27T14:01:52.2023254Z 15:01:52.201 | ProcessInitializeOnLoadAttributes (164ms) -2026-03-27T14:01:52.2028920Z 15:01:52.202 | ProcessInitializeOnLoadMethodAttributes (85ms) -2026-03-27T14:01:52.2034958Z 15:01:52.203 | AfterProcessingInitializeOnLoad (0ms) -2026-03-27T14:01:52.2040630Z 15:01:52.203 | EditorAssembliesLoaded (0ms) -2026-03-27T14:01:52.2046953Z 15:01:52.204 | ExecutionOrderSort2 (0ms) -2026-03-27T14:01:52.2053322Z 15:01:52.204 | AwakeInstancesAfterBackupRestoration (0ms) -2026-03-27T14:01:52.2059276Z 15:01:52.205 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:52.2063698Z 15:01:52.206 | Application.AssetDatabase Initial Refresh Start -2026-03-27T14:01:52.2070781Z 15:01:52.206 | Package Manager log level set to [2] -2026-03-27T14:01:52.2076283Z 15:01:52.207 | [Package Manager] Restoring resolved packages state from cache -2026-03-27T14:01:52.2081651Z 15:01:52.207 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:01:52.2087645Z 15:01:52.208 | [Package Manager] Registered 39 packages: -2026-03-27T14:01:52.2092736Z 15:01:52.208 | Built-in packages: -2026-03-27T14:01:52.2098586Z 15:01:52.209 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) -2026-03-27T14:01:52.2104037Z 15:01:52.209 | com.unity.ugui@2.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc) -2026-03-27T14:01:52.2109613Z 15:01:52.210 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) -2026-03-27T14:01:52.2116757Z 15:01:52.211 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) -2026-03-27T14:01:52.2123967Z 15:01:52.211 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) -2026-03-27T14:01:52.2128119Z 15:01:52.212 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) -2026-03-27T14:01:52.2134344Z 15:01:52.212 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) -2026-03-27T14:01:52.2143345Z 15:01:52.213 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) -2026-03-27T14:01:52.2152129Z 15:01:52.214 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) -2026-03-27T14:01:52.2157071Z 15:01:52.215 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) -2026-03-27T14:01:52.2165032Z 15:01:52.216 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) -2026-03-27T14:01:52.2173044Z 15:01:52.216 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) -2026-03-27T14:01:52.2178802Z 15:01:52.217 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) -2026-03-27T14:01:52.2187027Z 15:01:52.218 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) -2026-03-27T14:01:52.2192503Z 15:01:52.218 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) -2026-03-27T14:01:52.2198256Z 15:01:52.219 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) -2026-03-27T14:01:52.2204303Z 15:01:52.219 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) -2026-03-27T14:01:52.2210941Z 15:01:52.220 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) -2026-03-27T14:01:52.2217106Z 15:01:52.221 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) -2026-03-27T14:01:52.2232763Z 15:01:52.222 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) -2026-03-27T14:01:52.2243433Z 15:01:52.223 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) -2026-03-27T14:01:52.2252573Z 15:01:52.224 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) -2026-03-27T14:01:52.2259968Z 15:01:52.225 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) -2026-03-27T14:01:52.2265439Z 15:01:52.226 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) -2026-03-27T14:01:52.2271412Z 15:01:52.226 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) -2026-03-27T14:01:52.2364397Z 15:01:52.230 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) -2026-03-27T14:01:52.2394992Z 15:01:52.236 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) -2026-03-27T14:01:52.2492545Z 15:01:52.240 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) -2026-03-27T14:01:52.2550295Z 15:01:52.253 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) -2026-03-27T14:01:52.2667501Z 15:01:52.257 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) -2026-03-27T14:01:52.2675869Z 15:01:52.267 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) -2026-03-27T14:01:52.2685300Z 15:01:52.268 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) -2026-03-27T14:01:52.2701059Z 15:01:52.269 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) -2026-03-27T14:01:52.2753915Z 15:01:52.270 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) -2026-03-27T14:01:52.2762154Z 15:01:52.275 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) -2026-03-27T14:01:52.2823704Z 15:01:52.276 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) -2026-03-27T14:01:52.2908461Z 15:01:52.286 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) -2026-03-27T14:01:52.2969972Z 15:01:52.291 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) -2026-03-27T14:01:52.3001605Z 15:01:52.298 | Local packages: -2026-03-27T14:01:52.3010318Z 15:01:52.300 | io.sentry.unity@file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package) -2026-03-27T14:01:52.3181087Z 15:01:52.302 | [Subsystems] No new subsystems found in resolved package list. -2026-03-27T14:01:52.3191154Z 15:01:52.318 | [Package Manager] Done registering packages in 0.03 seconds -2026-03-27T14:01:52.3214148Z 15:01:52.319 | [ScriptCompilation] Requested script compilation because: Assetdatabase observed changes in script compilation related files -2026-03-27T14:01:53.1349231Z 15:01:53.132 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies -2026-03-27T14:01:53.1404365Z 15:01:53.137 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:53.1423915Z 15:01:53.141 | DisplayProgressbar: Compiling Scripts -2026-03-27T14:01:53.1430834Z 15:01:53.142 | ExitCode: 4 Duration: 0s163ms -2026-03-27T14:01:53.1440852Z 15:01:53.143 | Rebuilding DAG because FileSignature timestamp changed: Library/Bee/1900b0aE-inputdata.json -2026-03-27T14:01:53.1516867Z 15:01:53.144 | *** Tundra requires additional run (0.07 seconds), 0 items updated, 249 evaluated -2026-03-27T14:01:53.1527500Z 15:01:53.152 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aE.dag.json" "Library/Bee/1900b0aE-inputdata.json" "Library\Bee\buildprogram0.traceevents" -2026-03-27T14:01:53.1535182Z 15:01:53.153 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:53.9771001Z 15:01:53.976 | ExitCode: 0 Duration: 0s489ms -2026-03-27T14:01:53.9777633Z 15:01:53.977 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aE.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssemblies -2026-03-27T14:01:53.9782252Z 15:01:53.977 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:01:56.4327302Z 15:01:56.432 | ExitCode: 0 Duration: 2s496ms -2026-03-27T14:01:56.4343010Z 15:01:56.433 | Finished compiling graph: 260 nodes, 2571 flattened edges (2421 ToBuild, 24 ToUse), maximum node priority 128 -2026-03-27T14:01:56.4350427Z 15:01:56.434 | [197/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp -2026-03-27T14:01:56.4361067Z 15:01:56.435 | [198/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt -2026-03-27T14:01:56.4368894Z 15:01:56.436 | [199/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp2 -2026-03-27T14:01:56.4376043Z 15:01:56.437 | [200/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp -2026-03-27T14:01:56.4385042Z 15:01:56.437 | [201/257 0s] WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp -2026-03-27T14:01:56.4393064Z 15:01:56.438 | [250/257 0s] MovedFromExtractor-Combine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm -2026-03-27T14:01:56.4401029Z 15:01:56.439 | [251/257 1s] Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others) -2026-03-27T14:01:56.4410032Z 15:01:56.440 | [252/257 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb -2026-03-27T14:01:56.4415475Z 15:01:56.441 | [253/257 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll -2026-03-27T14:01:56.4421683Z 15:01:56.441 | [254/257 0s] Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others) -2026-03-27T14:01:56.4428265Z 15:01:56.442 | [255/257 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb -2026-03-27T14:01:56.4433773Z 15:01:56.442 | [256/257 0s] CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll -2026-03-27T14:01:56.4439616Z 15:01:56.443 | *** Tundra build success (2.40 seconds), 12 items updated, 257 evaluated -2026-03-27T14:01:56.4447070Z 15:01:56.444 | AssetDatabase: script compilation time: 4.033229s -2026-03-27T14:01:56.4454049Z 15:01:56.444 | Begin MonoManager ReloadAssembly -2026-03-27T14:01:57.2613968Z 15:01:57.260 | - Loaded All Assemblies, in 0.857 seconds -2026-03-27T14:01:57.2620359Z 15:01:57.261 | Start importing Assets/Scripts using Guid(7a72af10f8ada44438f8a43c46e22e9f) (DefaultImporter) -> (artifact id: '70ab1a741f982128099baf20f421879a') in 0.0180156 seconds -2026-03-27T14:01:57.2628070Z 15:01:57.262 | Refreshing native plugins compatible for Editor in 6.09 ms, found 1 plugins. -2026-03-27T14:01:57.6682740Z 15:01:57.665 | Native extension for iOS target not found -2026-03-27T14:01:57.6702242Z 15:01:57.669 | Native extension for Android target not found -2026-03-27T14:01:57.6741001Z 15:01:57.671 | Native extension for WindowsStandalone target not found -2026-03-27T14:01:58.0806737Z 15:01:58.078 | Sentry Package Installation: Sentry not requested to be installed. -2026-03-27T14:01:58.0814346Z 15:01:58.080 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True -2026-03-27T14:01:58.4954306Z 15:01:58.494 | Mono: successfully reloaded assembly -2026-03-27T14:01:58.4959205Z 15:01:58.495 | - Finished resetting the current domain, in 1.021 seconds -2026-03-27T14:01:58.4966768Z 15:01:58.496 | Domain Reload Profiling: 1866ms -2026-03-27T14:01:58.4975318Z 15:01:58.496 | BeginReloadAssembly (384ms) -2026-03-27T14:01:58.4982108Z 15:01:58.497 | ExecutionOrderSort (0ms) -2026-03-27T14:01:58.4989854Z 15:01:58.498 | DisableScriptedObjects (13ms) -2026-03-27T14:01:58.4996859Z 15:01:58.499 | BackupInstance (0ms) -2026-03-27T14:01:58.5002298Z 15:01:58.499 | ReleaseScriptingObjects (0ms) -2026-03-27T14:01:58.5007787Z 15:01:58.500 | CreateAndSetChildDomain (159ms) -2026-03-27T14:01:58.5013958Z 15:01:58.500 | RebuildCommonClasses (46ms) -2026-03-27T14:01:58.5020064Z 15:01:58.501 | RebuildNativeTypeToScriptingClass (17ms) -2026-03-27T14:01:58.5025515Z 15:01:58.502 | initialDomainReloadingComplete (52ms) -2026-03-27T14:01:58.5037048Z 15:01:58.502 | LoadAllAssembliesAndSetupDomain (347ms) -2026-03-27T14:01:58.5042622Z 15:01:58.503 | LoadAssemblies (415ms) -2026-03-27T14:01:58.5050415Z 15:01:58.504 | RebuildTransferFunctionScriptingTraits (0ms) -2026-03-27T14:01:58.5056616Z 15:01:58.505 | AnalyzeDomain (85ms) -2026-03-27T14:01:58.5063344Z 15:01:58.505 | TypeCache.Refresh (71ms) -2026-03-27T14:01:58.5069210Z 15:01:58.506 | TypeCache.ScanAssembly (61ms) -2026-03-27T14:01:58.5076976Z 15:01:58.507 | BuildScriptInfoCaches (9ms) -2026-03-27T14:01:58.5082243Z 15:01:58.507 | ResolveRequiredComponents (3ms) -2026-03-27T14:01:58.5087659Z 15:01:58.508 | FinalizeReload (1022ms) -2026-03-27T14:01:58.5096790Z 15:01:58.508 | ReleaseScriptCaches (0ms) -2026-03-27T14:01:58.5102722Z 15:01:58.509 | RebuildScriptCaches (0ms) -2026-03-27T14:01:58.5110837Z 15:01:58.510 | SetupLoadedEditorAssemblies (862ms) -2026-03-27T14:01:58.5118642Z 15:01:58.511 | LogAssemblyErrors (0ms) -2026-03-27T14:01:58.5126427Z 15:01:58.512 | InitializePlatformSupportModulesInManaged (407ms) -2026-03-27T14:01:58.5135509Z 15:01:58.512 | SetLoadedEditorAssemblies (4ms) -2026-03-27T14:01:58.5142153Z 15:01:58.513 | BeforeProcessingInitializeOnLoad (199ms) -2026-03-27T14:01:58.5150875Z 15:01:58.514 | ProcessInitializeOnLoadAttributes (179ms) -2026-03-27T14:01:58.5155611Z 15:01:58.515 | ProcessInitializeOnLoadMethodAttributes (50ms) -2026-03-27T14:01:58.5161578Z 15:01:58.515 | AfterProcessingInitializeOnLoad (23ms) -2026-03-27T14:01:58.5167345Z 15:01:58.516 | EditorAssembliesLoaded (0ms) -2026-03-27T14:01:58.5172679Z 15:01:58.516 | ExecutionOrderSort2 (0ms) -2026-03-27T14:01:58.5178475Z 15:01:58.517 | AwakeInstancesAfterBackupRestoration (20ms) -2026-03-27T14:01:58.5183848Z 15:01:58.517 | Refreshing native plugins compatible for Editor in 6.34 ms, found 1 plugins. -2026-03-27T14:01:58.5189234Z 15:01:58.518 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:01:58.5195375Z 15:01:58.519 | Asset Pipeline Refresh (id=9d111e874da6e4849acca72adfbfcfaa): Total: 6.400 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport) -2026-03-27T14:01:58.5200203Z 15:01:58.519 | Summary: -2026-03-27T14:01:58.5205598Z 15:01:58.520 | Imports: total=1 (actual=1, local cache=0, cache server=0) -2026-03-27T14:01:58.5211495Z 15:01:58.520 | Asset DB Process Time: managed=3 ms, native=1352 ms -2026-03-27T14:01:58.5216833Z 15:01:58.521 | Asset DB Callback time: managed=74 ms, native=49 ms -2026-03-27T14:01:58.5222248Z 15:01:58.521 | Scripting: domain reloads=1, domain reload time=857 ms, compile time=4035 ms, other=26 ms -2026-03-27T14:01:58.5227258Z 15:01:58.522 | Project Asset Count: scripts=218, non-scripts=146 -2026-03-27T14:01:58.5232534Z 15:01:58.522 | Asset File Changes: new=7, changed=7, moved=0, deleted=0 -2026-03-27T14:01:58.5237548Z 15:01:58.523 | Scan Filter Count: 0 -2026-03-27T14:01:58.5243130Z 15:01:58.523 | InvokeCustomDependenciesCallbacks: 0.001ms -2026-03-27T14:01:58.5254436Z 15:01:58.524 | InvokePackagesCallback: 45.052ms -2026-03-27T14:01:58.5261799Z 15:01:58.525 | ApplyChangesToAssetFolders: 1.060ms -2026-03-27T14:01:58.5269130Z 15:01:58.526 | Scan: 112.470ms -2026-03-27T14:01:58.5274520Z 15:01:58.527 | OnSourceAssetsModified: 0.866ms -2026-03-27T14:01:58.5279848Z 15:01:58.527 | CategorizeAssetsWithTransientArtifact: 16.120ms -2026-03-27T14:01:58.5284860Z 15:01:58.528 | ProcessAssetsWithTransientArtifactChanges: 19.395ms -2026-03-27T14:01:58.5291994Z 15:01:58.528 | CategorizeAssets: 3.623ms -2026-03-27T14:01:58.5298896Z 15:01:58.529 | ImportOutOfDateAssets: 1062.463ms (-2997.533ms without children) -2026-03-27T14:01:58.5306788Z 15:01:58.530 | ImportManagerImport: 23.864ms (5.017ms without children) -2026-03-27T14:01:58.5314396Z 15:01:58.530 | ImportInProcess: 18.829ms -2026-03-27T14:01:58.5322145Z 15:01:58.531 | UpdateCategorizedAssets: 0.017ms -2026-03-27T14:01:58.5327817Z 15:01:58.532 | CompileScripts: 4035.231ms -2026-03-27T14:01:58.5333024Z 15:01:58.532 | ReloadNativeAssets: 0.000ms -2026-03-27T14:01:58.5338525Z 15:01:58.533 | UnloadImportedAssets: 0.538ms -2026-03-27T14:01:58.5343914Z 15:01:58.534 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.083ms -2026-03-27T14:01:58.5349330Z 15:01:58.534 | InitializingProgressBar: 0.000ms -2026-03-27T14:01:58.5354431Z 15:01:58.535 | PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms -2026-03-27T14:01:58.5359530Z 15:01:58.535 | OnDemandSchedulerStart: 0.279ms -2026-03-27T14:01:58.5364977Z 15:01:58.536 | PostProcessAllAssets: 77.079ms -2026-03-27T14:01:58.5370558Z 15:01:58.536 | Hotreload: 7.579ms -2026-03-27T14:01:58.5375669Z 15:01:58.537 | GatherAllCurrentPrimaryArtifactRevisions: 0.002ms -2026-03-27T14:01:58.5381114Z 15:01:58.537 | UnloadStreamsBegin: 1.866ms -2026-03-27T14:01:58.5386629Z 15:01:58.538 | PersistCurrentRevisions: 0.224ms -2026-03-27T14:01:58.5391712Z 15:01:58.538 | UnloadStreamsEnd: 0.001ms -2026-03-27T14:01:58.5399632Z 15:01:58.539 | GenerateScriptTypeHashes: 1.383ms -2026-03-27T14:01:58.5408057Z 15:01:58.540 | Untracked: 5052.414ms -2026-03-27T14:01:58.5413632Z 15:01:58.540 | -2026-03-27T14:01:58.5419855Z 15:01:58.541 | Application.AssetDatabase Initial Refresh End -2026-03-27T14:01:58.5427029Z 15:01:58.542 | Scanning for USB devices : 9.081ms -2026-03-27T14:01:58.5433593Z 15:01:58.542 | Initializing Unity extensions: -2026-03-27T14:01:58.5439849Z 15:01:58.543 | [MODES] ModeService[none].Initialize -2026-03-27T14:01:58.5453592Z 15:01:58.544 | [MODES] ModeService[none].LoadModes -2026-03-27T14:01:58.5462802Z 15:01:58.545 | [MODES] Loading mode Default (0) for mode-current-id-IntegrationTest6000.3.8f1 -2026-03-27T14:02:01.8405373Z 15:02:01.839 | Unloading 3 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:02:01.8413532Z 15:02:01.840 | Unloading 477 unused Assets / (1.2 MB). Loaded Objects now: 1053. -2026-03-27T14:02:01.8420014Z 15:02:01.841 | Memory consumption went from 96.1 MB to 94.9 MB. -2026-03-27T14:02:01.8435146Z 15:02:01.842 | Total: 7.171400 ms (FindLiveObjects: 0.082500 ms CreateObjectMapping: 0.028400 ms MarkObjects: 6.423100 ms DeleteObjects: 0.636300 ms) -2026-03-27T14:02:01.8441389Z 15:02:01.843 | -2026-03-27T14:02:01.8450165Z 15:02:01.844 | ConfigureOptions: Invoking SentryOptions -2026-03-27T14:02:01.8458245Z 15:02:01.845 | DisplayDialog: Start a setup wizard? It looks like you're setting up Sentry for the first time in this project. -2026-03-27T14:02:01.8464678Z 15:02:01.845 | -2026-03-27T14:02:01.8475455Z 15:02:01.846 | Would you like to start a setup wizard to connect to sentry.io? -2026-03-27T14:02:01.8482274Z 15:02:01.847 | This should not be called in batch mode. -2026-03-27T14:02:01.8489706Z 15:02:01.848 | Start importing Assets/Resources using Guid(b18a4d3e34d011f4c91717017f1c24cd) (DefaultImporter) -> (artifact id: '83adf93a227d8b2f374c586a6227b5eb') in 0.0036072 seconds -2026-03-27T14:02:01.8497468Z 15:02:01.849 | Start importing Assets/Resources/Sentry using Guid(ae74ee54f77716f41b45ffc9d862ec84) (DefaultImporter) -> (artifact id: 'd5ea7adf547868cb3144f4447500b770') in 0.0034492 seconds -2026-03-27T14:02:01.8524583Z 15:02:01.850 | Start importing Assets/Resources/Sentry/SentryOptions.asset using Guid(c94d75111b393f54780f4d1e3b2dc0ac) (NativeFormatImporter) -> (artifact id: 'a329bccdc38d39fbafbf5eb36014f2b4') in 0.0045112 seconds -2026-03-27T14:02:01.8534444Z 15:02:01.852 | Refreshing native plugins compatible for Editor in 6.10 ms, found 1 plugins. -2026-03-27T14:02:01.8541088Z 15:02:01.853 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:02:01.8554115Z 15:02:01.854 | Asset Pipeline Refresh (id=1fedd38423e1c564eaff3c4d9a69a9e2): Total: 0.093 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) -2026-03-27T14:02:01.8563508Z 15:02:01.855 | Start importing Assets/Plugins using Guid(352a72371cc1a874e95a1a85372994ae) (DefaultImporter) -> (artifact id: 'd51ea7622a58174dfe6b4ea893c10f0d') in 0.0038846 seconds -2026-03-27T14:02:01.8570606Z 15:02:01.856 | Start importing Assets/Plugins/Sentry using Guid(38d8344f9c748c44bbae2f3605284db6) (DefaultImporter) -> (artifact id: 'f6e8aa99504a6088afd416b0124d1a14') in 0.0033323 seconds -2026-03-27T14:02:01.8578850Z 15:02:01.857 | Start importing Assets/Plugins/Sentry/SentryCliOptions.asset using Guid(e6ab428b32fd07e4da8e3ee9afae16d9) (NativeFormatImporter) -> (artifact id: '621c1fc90584125fafe10447313c6687') in 0.0047128 seconds -2026-03-27T14:02:01.8586685Z 15:02:01.858 | Refreshing native plugins compatible for Editor in 6.83 ms, found 1 plugins. -2026-03-27T14:02:01.8593247Z 15:02:01.858 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:02:01.8640748Z 15:02:01.862 | Asset Pipeline Refresh (id=ab76527bad3eafb4484e1202e1ed7c40): Total: 0.054 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) -2026-03-27T14:02:02.2727750Z 15:02:02.270 | No graphic device is available to initialize the view. -2026-03-27T14:02:02.2734496Z 15:02:02.273 | UnityEngine.Debug:ExtractStackTraceNoAlloc (byte*,int,string) -2026-03-27T14:02:02.2744277Z 15:02:02.273 | UnityEngine.StackTraceUtility:ExtractStackTrace () -2026-03-27T14:02:02.2750760Z 15:02:02.274 | UnityEditor.GUIView:Internal_Init (int,int,bool,bool) -2026-03-27T14:02:02.2757968Z 15:02:02.275 | UnityEditor.GUIView:SetWindow (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.2769069Z 15:02:02.276 | UnityEditor.HostView:SetWindow (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.2776174Z 15:02:02.277 | UnityEditor.View:SetWindowRecurse (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.2784288Z 15:02:02.278 | UnityEditor.View:AddChild (UnityEditor.View,int) -2026-03-27T14:02:02.2791957Z 15:02:02.278 | UnityEditor.SplitView:AddChild (UnityEditor.View,int) -2026-03-27T14:02:02.2814603Z 15:02:02.280 | UnityEditor.View:AddChild (UnityEditor.View) -2026-03-27T14:02:02.2824463Z 15:02:02.281 | UnityEditor.EditorWindow:CreateNewWindowForEditorWindow (UnityEditor.EditorWindow,bool,bool,bool) -2026-03-27T14:02:02.2830167Z 15:02:02.282 | UnityEditor.EditorWindow:Show (bool) -2026-03-27T14:02:02.2838982Z 15:02:02.283 | UnityEditor.EditorWindow:Show () -2026-03-27T14:02:02.2845395Z 15:02:02.284 | UnityEditor.EditorWindow:GetWindowPrivate (System.Type,bool,string,bool,bool) -2026-03-27T14:02:02.2869479Z 15:02:02.284 | UnityEditor.EditorWindow:GetWindow (System.Type,bool,string,bool) -2026-03-27T14:02:02.2887060Z 15:02:02.287 | UnityEditor.EditorWindow:GetWindow (bool,string,bool) -2026-03-27T14:02:02.2904125Z 15:02:02.288 | UnityEditor.EditorWindow:GetWindow () -2026-03-27T14:02:02.2950839Z 15:02:02.291 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OpenSentryWindow () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:37) -2026-03-27T14:02:02.2963965Z 15:02:02.295 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OnMenuClick () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:31) -2026-03-27T14:02:02.2976626Z 15:02:02.296 | UnityEditor.EditorApplication:ExecuteMenuItemInternal (string,bool) -2026-03-27T14:02:02.3016651Z 15:02:02.299 | UnityEditor.EditorApplication:ExecuteMenuItem (string) -2026-03-27T14:02:02.3033974Z 15:02:02.302 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions (System.Collections.Generic.Dictionary`2,string) (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:20) -2026-03-27T14:02:02.3063745Z 15:02:02.304 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:14) -2026-03-27T14:02:02.3071243Z 15:02:02.306 | -2026-03-27T14:02:02.3077850Z 15:02:02.307 | [/sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs line 37] -2026-03-27T14:02:02.3083143Z 15:02:02.307 | -2026-03-27T14:02:02.3089019Z 15:02:02.308 | No graphic device is available to show the window. -2026-03-27T14:02:02.3097200Z 15:02:02.309 | UnityEngine.Debug:ExtractStackTraceNoAlloc (byte*,int,string) -2026-03-27T14:02:02.3102668Z 15:02:02.309 | UnityEngine.StackTraceUtility:ExtractStackTrace () -2026-03-27T14:02:02.3108731Z 15:02:02.310 | UnityEditor.ContainerWindow:Internal_Show (UnityEngine.Rect,int,UnityEngine.Vector2,UnityEngine.Vector2) -2026-03-27T14:02:02.3114233Z 15:02:02.310 | UnityEditor.ContainerWindow:Show (UnityEditor.ShowMode,bool,bool,bool) -2026-03-27T14:02:02.3119525Z 15:02:02.311 | UnityEditor.EditorWindow:CreateNewWindowForEditorWindow (UnityEditor.EditorWindow,bool,bool,bool) -2026-03-27T14:02:02.3124521Z 15:02:02.312 | UnityEditor.EditorWindow:Show (bool) -2026-03-27T14:02:02.3129692Z 15:02:02.312 | UnityEditor.EditorWindow:Show () -2026-03-27T14:02:02.3138021Z 15:02:02.313 | UnityEditor.EditorWindow:GetWindowPrivate (System.Type,bool,string,bool,bool) -2026-03-27T14:02:02.3146821Z 15:02:02.314 | UnityEditor.EditorWindow:GetWindow (System.Type,bool,string,bool) -2026-03-27T14:02:02.3152776Z 15:02:02.314 | UnityEditor.EditorWindow:GetWindow (bool,string,bool) -2026-03-27T14:02:02.3161115Z 15:02:02.315 | UnityEditor.EditorWindow:GetWindow () -2026-03-27T14:02:02.3187525Z 15:02:02.316 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OpenSentryWindow () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:37) -2026-03-27T14:02:02.3202823Z 15:02:02.318 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OnMenuClick () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:31) -2026-03-27T14:02:02.3210638Z 15:02:02.320 | UnityEditor.EditorApplication:ExecuteMenuItemInternal (string,bool) -2026-03-27T14:02:02.3216606Z 15:02:02.321 | UnityEditor.EditorApplication:ExecuteMenuItem (string) -2026-03-27T14:02:02.3223072Z 15:02:02.321 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions (System.Collections.Generic.Dictionary`2,string) (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:20) -2026-03-27T14:02:02.3228756Z 15:02:02.322 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:14) -2026-03-27T14:02:02.3236031Z 15:02:02.322 | -2026-03-27T14:02:02.3242166Z 15:02:02.323 | [/sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs line 37] -2026-03-27T14:02:02.3250848Z 15:02:02.324 | -2026-03-27T14:02:02.3257443Z 15:02:02.325 | No graphic device is available to initialize the view. -2026-03-27T14:02:02.3264252Z 15:02:02.325 | UnityEngine.Debug:ExtractStackTraceNoAlloc (byte*,int,string) -2026-03-27T14:02:02.3270444Z 15:02:02.326 | UnityEngine.StackTraceUtility:ExtractStackTrace () -2026-03-27T14:02:02.3278437Z 15:02:02.327 | UnityEditor.GUIView:Internal_Init (int,int,bool,bool) -2026-03-27T14:02:02.3287191Z 15:02:02.327 | UnityEditor.GUIView:SetWindow (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.3292694Z 15:02:02.328 | UnityEditor.HostView:SetWindow (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.3298440Z 15:02:02.329 | UnityEditor.View:SetWindowRecurse (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.3303745Z 15:02:02.329 | UnityEditor.View:SetWindowRecurse (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.3308996Z 15:02:02.330 | UnityEditor.ContainerWindow:Show (UnityEditor.ShowMode,bool,bool,bool) -2026-03-27T14:02:02.3318176Z 15:02:02.331 | UnityEditor.EditorWindow:CreateNewWindowForEditorWindow (UnityEditor.EditorWindow,bool,bool,bool) -2026-03-27T14:02:02.3328074Z 15:02:02.332 | UnityEditor.EditorWindow:Show (bool) -2026-03-27T14:02:02.3334011Z 15:02:02.333 | UnityEditor.EditorWindow:Show () -2026-03-27T14:02:02.3342476Z 15:02:02.333 | UnityEditor.EditorWindow:GetWindowPrivate (System.Type,bool,string,bool,bool) -2026-03-27T14:02:02.3348591Z 15:02:02.334 | UnityEditor.EditorWindow:GetWindow (System.Type,bool,string,bool) -2026-03-27T14:02:02.3354325Z 15:02:02.335 | UnityEditor.EditorWindow:GetWindow (bool,string,bool) -2026-03-27T14:02:02.3360286Z 15:02:02.335 | UnityEditor.EditorWindow:GetWindow () -2026-03-27T14:02:02.3367462Z 15:02:02.336 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OpenSentryWindow () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:37) -2026-03-27T14:02:02.3376700Z 15:02:02.336 | Sentry.Unity.Editor.ConfigurationWindow.SentryWindow:OnMenuClick () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs:31) -2026-03-27T14:02:02.3381963Z 15:02:02.337 | UnityEditor.EditorApplication:ExecuteMenuItemInternal (string,bool) -2026-03-27T14:02:02.3395448Z 15:02:02.338 | UnityEditor.EditorApplication:ExecuteMenuItem (string) -2026-03-27T14:02:02.3402471Z 15:02:02.339 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions (System.Collections.Generic.Dictionary`2,string) (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:20) -2026-03-27T14:02:02.3415337Z 15:02:02.340 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:14) -2026-03-27T14:02:02.3419585Z 15:02:02.341 | -2026-03-27T14:02:02.3425174Z 15:02:02.342 | [/sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryWindow.cs line 37] -2026-03-27T14:02:02.3430189Z 15:02:02.342 | -2026-03-27T14:02:02.3435780Z 15:02:02.343 | ConfigureOptions: Found SentryOptions -2026-03-27T14:02:02.3441660Z 15:02:02.343 | ConfigureOptions: Configuring Build Time Options Script to IntegrationOptionsConfiguration -2026-03-27T14:02:02.3449050Z 15:02:02.344 | Start importing Assets/Resources/Sentry/IntegrationOptionsConfiguration.asset using Guid(9d49eb67b7ec2024cbcd8b750ee323e2) (NativeFormatImporter) -> (artifact id: 'bba165513a6b16ccd35096791e95aeed') in 0.0046953 seconds -2026-03-27T14:02:02.3457811Z 15:02:02.345 | Refreshing native plugins compatible for Editor in 6.40 ms, found 1 plugins. -2026-03-27T14:02:02.3474897Z 15:02:02.345 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:02:02.3482006Z 15:02:02.347 | Asset Pipeline Refresh (id=a0bdc79dfc65f5a40b71e693298678ab): Total: 0.041 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) -2026-03-27T14:02:02.3488109Z 15:02:02.348 | Asset Pipeline Refresh (id=4b6d4838c36bbf44cb14a537276180b5): Total: 0.027 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) -2026-03-27T14:02:02.3493479Z 15:02:02.348 | ConfigureOptions: Configuring CliOptions Script to CliConfiguration -2026-03-27T14:02:02.3499740Z 15:02:02.349 | Start importing Assets/Plugins/Sentry/CliConfiguration.asset using Guid(d69724726acef564b909f6468a8769fe) (NativeFormatImporter) -> (artifact id: '858d6d22056eecc852c49ddfdd972c0b') in 0.0042336 seconds -2026-03-27T14:02:02.3504679Z 15:02:02.350 | Refreshing native plugins compatible for Editor in 6.34 ms, found 1 plugins. -2026-03-27T14:02:02.3509903Z 15:02:02.350 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:02:02.3515971Z 15:02:02.351 | Asset Pipeline Refresh (id=3080f05289ac9c04cbc976f19e08782e): Total: 0.036 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) -2026-03-27T14:02:02.3521335Z 15:02:02.351 | Asset Pipeline Refresh (id=08a8d9aac80e12e4ba719d97e5733180): Total: 0.032 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) -2026-03-27T14:02:02.3527601Z 15:02:02.352 | Start importing Assets/Plugins/Sentry/SentryCliOptions.asset using Guid(e6ab428b32fd07e4da8e3ee9afae16d9) (NativeFormatImporter) -> (artifact id: '65dc4cfb41ef4a9cbaa2897520e2e020') in 0.004169 seconds -2026-03-27T14:02:02.3533413Z 15:02:02.352 | Start importing Assets/Resources/Sentry/SentryOptions.asset using Guid(c94d75111b393f54780f4d1e3b2dc0ac) (NativeFormatImporter) -> (artifact id: '9d4fb8c47221cbb33119d7fb7603816f') in 0.0042347 seconds -2026-03-27T14:02:02.3539215Z 15:02:02.353 | Refreshing native plugins compatible for Editor in 7.07 ms, found 1 plugins. -2026-03-27T14:02:02.3544862Z 15:02:02.354 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:02:02.3550908Z 15:02:02.354 | Asset Pipeline Refresh (id=29d45253124751549acfa748813ff2a8): Total: 0.042 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) -2026-03-27T14:02:02.3556251Z 15:02:02.355 | No graphic device is available to initialize the view. -2026-03-27T14:02:02.3592893Z 15:02:02.356 | UnityEngine.Debug:ExtractStackTraceNoAlloc (byte*,int,string) -2026-03-27T14:02:02.3599514Z 15:02:02.359 | UnityEngine.StackTraceUtility:ExtractStackTrace () -2026-03-27T14:02:02.3606490Z 15:02:02.360 | UnityEditor.GUIView:Internal_Init (int,int,bool,bool) -2026-03-27T14:02:02.3617015Z 15:02:02.361 | UnityEditor.GUIView:SetWindow (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.3832609Z 15:02:02.362 | UnityEditor.HostView:SetWindow (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.3892555Z 15:02:02.384 | UnityEditor.View:SetWindowRecurse (UnityEditor.ContainerWindow) -2026-03-27T14:02:02.4041390Z 15:02:02.390 | UnityEditor.View:RemoveChild (int) -2026-03-27T14:02:02.4060271Z 15:02:02.405 | UnityEditor.View:RemoveChild (UnityEditor.View) -2026-03-27T14:02:02.4098221Z 15:02:02.406 | UnityEditor.SplitView:RemoveChild (UnityEditor.View) -2026-03-27T14:02:02.4216977Z 15:02:02.419 | UnityEditor.SplitView:RemoveChildNice (UnityEditor.View) -2026-03-27T14:02:02.4434079Z 15:02:02.429 | UnityEditor.DockArea:KillIfEmpty () -2026-03-27T14:02:02.4461962Z 15:02:02.444 | UnityEditor.DockArea:RemoveTab (UnityEditor.EditorWindow,bool,bool) -2026-03-27T14:02:02.4702903Z 15:02:02.449 | UnityEditor.EditorWindow:Close () -2026-03-27T14:02:02.4929227Z 15:02:02.477 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions (System.Collections.Generic.Dictionary`2,string) (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:53) -2026-03-27T14:02:02.5236576Z 15:02:02.495 | Sentry.Unity.Editor.ConfigurationWindow.SentryEditorWindowInstrumentation:ConfigureOptions () (at /sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs:14) -2026-03-27T14:02:02.5362540Z 15:02:02.535 | -2026-03-27T14:02:02.5387884Z 15:02:02.538 | [/sentry-unity/src/Sentry.Unity.Editor/ConfigurationWindow/SentryEditorWindowInstrumentation.cs line 53] -2026-03-27T14:02:02.5405155Z 15:02:02.538 | -2026-03-27T14:02:02.5414033Z 15:02:02.540 | ConfigureOptions: SUCCESS -2026-03-27T14:02:02.5423727Z 15:02:02.541 | Batchmode quit successfully invoked - shutting down! -2026-03-27T14:02:02.5430231Z 15:02:02.542 | Killing ADB server in 0.17163 seconds. -2026-03-27T14:02:02.9585222Z 15:02:02.956 | [Physics::Module] Cleanup current backend. -2026-03-27T14:02:02.9597601Z 15:02:02.959 | [Physics::Module] Id: 0xf2b8ea05 -2026-03-27T14:02:02.9618118Z 15:02:02.960 | Input System module state changed to: ShutdownInProgress. -2026-03-27T14:02:02.9625412Z 15:02:02.962 | Input System polling thread exited. -2026-03-27T14:02:02.9635165Z 15:02:02.963 | Input System module state changed to: Shutdown. -2026-03-27T14:02:02.9641562Z 15:02:02.963 | [Licensing::IpcConnector] LicenseClient-github-runner-notifications channel disconnected successfully. -2026-03-27T14:02:02.9646803Z 15:02:02.964 | [Licensing::IpcConnector] LicenseClient-github-runner channel disconnected successfully. -2026-03-27T14:02:02.9654230Z 15:02:02.964 | AcceleratorClientConnectionCallback - disconnected - :0 -2026-03-27T14:02:02.9660114Z 15:02:02.965 | Cleanup mono -2026-03-27T14:02:04.1972328Z 15:02:04.196 | Exiting batchmode successfully now! -2026-03-27T14:02:04.1981321Z 15:02:04.197 | Exiting without the bug reporter. Application will terminate with return code 0 -2026-03-27T14:02:04.6113882Z ##[endgroup] -2026-03-27T14:02:04.6120079Z Unity finished successfully. Time taken: 00:00:20.787 -2026-03-27T14:02:04.6144379Z 15:02:04.614 | -2026-03-27T14:02:04.6144868Z ConfigureSentryOptions | SUCCESS because the following text was found: '15:02:02.540 | ConfigureOptions: SUCCESS' -2026-03-27T14:02:04.6162544Z 15:02:04.615 | [OK] Sentry configured -2026-03-27T14:02:04.6186058Z -2026-03-27T14:02:04.6190576Z ================================================================ -2026-03-27T14:02:04.6194606Z SETTING UP THE NATIVE PLUGIN FOR XSX -2026-03-27T14:02:04.6198491Z ================================================================ -2026-03-27T14:02:04.6493138Z 15:02:04.648 | Copying native plugins for platform 'XSX' -2026-03-27T14:02:04.6500700Z 15:02:04.649 | Source: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-native-xbox-unity -2026-03-27T14:02:04.6507423Z 15:02:04.650 | Target: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Assets/Plugins/Sentry/XSX -2026-03-27T14:02:04.6773086Z 15:02:04.676 | Copying: sentry.dll -2026-03-27T14:02:04.6936274Z 15:02:04.692 | Creating meta: sentry.dll.meta -2026-03-27T14:02:04.7063533Z 15:02:04.705 | Copying: sentry.pdb -2026-03-27T14:02:04.7183302Z 15:02:04.717 | Creating meta: sentry.pdb.meta -2026-03-27T14:02:04.7223045Z 15:02:04.721 | Copied 2 file(s) with meta files -2026-03-27T14:02:04.7228125Z 15:02:04.722 | [OK] Native plugins copied -2026-03-27T14:02:04.7234089Z -2026-03-27T14:02:04.7239572Z ================================================================ -2026-03-27T14:02:04.7243577Z BUILDING PROJECT -2026-03-27T14:02:04.7247434Z ================================================================ -2026-03-27T14:02:04.7474063Z 15:02:04.746 | Unity path: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -2026-03-27T14:02:04.7513543Z 15:02:04.750 | Build method: Builder.BuildXSXIL2CPPPlayer -2026-03-27T14:02:04.7518302Z 15:02:04.751 | Output path: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test -2026-03-27T14:02:04.7525612Z ##[group]Run C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -batchmode -projectPath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -executeMethod Builder.BuildXSXIL2CPPPlayer -buildPath C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test -quit -logfile unity.log -2026-03-27T14:02:04.7529116Z Removing Unity log unity.log -2026-03-27T14:02:04.7814855Z Waiting for Unity to finish. -2026-03-27T14:02:05.1924715Z 15:02:05.189 | [Licensing::Module] Trying to connect to existing licensing client channel... -2026-03-27T14:02:05.1976850Z 15:02:05.195 | Built from '6000.3/staging' branch; Version is '6000.3.8f1 (1c7db571dde0) revision 1867189'; Using compiler version '194234433'; Build Type 'Release' -2026-03-27T14:02:05.2002409Z 15:02:05.198 | [Licensing::IpcConnector] Channel LicenseClient-github-runner doesn't exist -2026-03-27T14:02:05.2009353Z 15:02:05.200 | OS: 'Windows 11 (10.0.26200) Professional' Language: 'en' Physical Memory: 16322 MB -2026-03-27T14:02:05.2016472Z 15:02:05.201 | BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1 -2026-03-27T14:02:05.2025934Z 15:02:05.202 | System architecture: x64 -2026-03-27T14:02:05.2132908Z 15:02:05.203 | Process architecture: x64 -2026-03-27T14:02:05.2141338Z 15:02:05.213 | Date: 2026-03-27T14:02:05Z -2026-03-27T14:02:05.2148461Z 15:02:05.214 | [Licensing::Module] Successfully launched the LicensingClient (PId: 27496) -2026-03-27T14:02:05.6889597Z 15:02:05.632 | -2026-03-27T14:02:05.7169723Z 15:02:05.694 | COMMAND LINE ARGUMENTS: -2026-03-27T14:02:05.7181750Z 15:02:05.717 | C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Unity.exe -2026-03-27T14:02:05.7271478Z 15:02:05.721 | -batchmode -2026-03-27T14:02:05.7280655Z 15:02:05.727 | -projectPath -2026-03-27T14:02:05.7289600Z 15:02:05.728 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:05.7295944Z 15:02:05.729 | -executeMethod -2026-03-27T14:02:05.7302787Z 15:02:05.729 | Builder.BuildXSXIL2CPPPlayer -2026-03-27T14:02:05.7308318Z 15:02:05.730 | -buildPath -2026-03-27T14:02:05.7314477Z 15:02:05.731 | C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test -2026-03-27T14:02:05.7319597Z 15:02:05.731 | -quit -2026-03-27T14:02:05.7324791Z 15:02:05.732 | -logfile -2026-03-27T14:02:05.7330760Z 15:02:05.732 | unity.log -2026-03-27T14:02:05.7337079Z 15:02:05.733 | Successfully changed project path to: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:05.7343155Z 15:02:05.733 | C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:05.7348390Z 15:02:05.734 | [UnityMemory] Configuration Parameters - Can be set up in boot.config -2026-03-27T14:02:05.7358458Z 15:02:05.735 | "memorysetup-temp-allocator-size-nav-mesh-worker=65536" -2026-03-27T14:02:05.7363811Z 15:02:05.735 | "memorysetup-temp-allocator-size-audio-worker=65536" -2026-03-27T14:02:05.7371387Z 15:02:05.736 | "memorysetup-temp-allocator-size-gfx=262144" -2026-03-27T14:02:05.7376384Z 15:02:05.737 | "memorysetup-allocator-temp-initial-block-size-main=262144" -2026-03-27T14:02:05.7381977Z 15:02:05.737 | "memorysetup-allocator-temp-initial-block-size-worker=262144" -2026-03-27T14:02:05.7413504Z 15:02:05.738 | "memorysetup-temp-allocator-size-background-worker=32768" -2026-03-27T14:02:05.7420680Z 15:02:05.741 | "memorysetup-temp-allocator-size-job-worker=262144" -2026-03-27T14:02:05.7427722Z 15:02:05.742 | "memorysetup-temp-allocator-size-preload-manager=33554432" -2026-03-27T14:02:05.7432580Z 15:02:05.742 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:02:05.7440703Z 15:02:05.743 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:02:05.7447670Z 15:02:05.744 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:02:05.7471399Z 15:02:05.745 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:02:05.7477780Z 15:02:05.747 | "memorysetup-temp-allocator-size-gi-baking-worker=262144" -2026-03-27T14:02:05.7484327Z 15:02:05.748 | "memorysetup-bucket-allocator-granularity=16" -2026-03-27T14:02:05.7490641Z 15:02:05.748 | "memorysetup-bucket-allocator-bucket-count=8" -2026-03-27T14:02:05.7495932Z 15:02:05.749 | "memorysetup-bucket-allocator-block-size=33554432" -2026-03-27T14:02:05.7502205Z 15:02:05.749 | "memorysetup-bucket-allocator-block-count=8" -2026-03-27T14:02:05.7506773Z 15:02:05.750 | "memorysetup-main-allocator-block-size=16777216" -2026-03-27T14:02:05.7516146Z 15:02:05.751 | "memorysetup-thread-allocator-block-size=16777216" -2026-03-27T14:02:05.7521588Z 15:02:05.751 | "memorysetup-gfx-main-allocator-block-size=16777216" -2026-03-27T14:02:05.7529928Z 15:02:05.752 | "memorysetup-gfx-thread-allocator-block-size=16777216" -2026-03-27T14:02:05.7545019Z 15:02:05.753 | "memorysetup-cache-allocator-block-size=4194304" -2026-03-27T14:02:05.7551939Z 15:02:05.754 | "memorysetup-typetree-allocator-block-size=2097152" -2026-03-27T14:02:05.7560779Z 15:02:05.755 | "memorysetup-profiler-bucket-allocator-granularity=16" -2026-03-27T14:02:05.7568115Z 15:02:05.756 | "memorysetup-profiler-bucket-allocator-bucket-count=8" -2026-03-27T14:02:05.7577952Z 15:02:05.757 | "memorysetup-profiler-bucket-allocator-block-size=33554432" -2026-03-27T14:02:05.7583225Z 15:02:05.757 | "memorysetup-profiler-bucket-allocator-block-count=8" -2026-03-27T14:02:05.7589760Z 15:02:05.758 | "memorysetup-profiler-allocator-block-size=16777216" -2026-03-27T14:02:05.7598673Z 15:02:05.759 | "memorysetup-profiler-editor-allocator-block-size=1048576" -2026-03-27T14:02:05.7606715Z 15:02:05.760 | "memorysetup-temp-allocator-size-main=16777216" -2026-03-27T14:02:05.7777057Z 15:02:05.767 | "memorysetup-job-temp-allocator-block-size=2097152" -2026-03-27T14:02:05.7787415Z 15:02:05.778 | "memorysetup-job-temp-allocator-block-size-background=1048576" -2026-03-27T14:02:05.7795242Z 15:02:05.778 | "memorysetup-job-temp-allocator-reduction-small-platforms=262144" -2026-03-27T14:02:05.7807401Z 15:02:05.779 | "memorysetup-temp-allocator-size-cloud-worker=32768" -2026-03-27T14:02:05.7813603Z 15:02:05.780 | Player connection [37204] Target information: -2026-03-27T14:02:05.7818508Z 15:02:05.781 | -2026-03-27T14:02:05.7826465Z 15:02:05.782 | Player connection [37204] * "[IP] 10.2.1.51 [Port] 55504 [Flags] 2 [Guid] 3210065026 [EditorId] 3210065026 [Version] 1048832 [Id] WindowsEditor(7,GDX-T1) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" -2026-03-27T14:02:05.7832898Z 15:02:05.782 | -2026-03-27T14:02:05.7858001Z 15:02:05.785 | Player connection [37204] Host joined multi-casting on [225.0.0.222:54997]... -2026-03-27T14:02:05.7865506Z 15:02:05.786 | Player connection [37204] Host joined alternative multi-casting on [225.0.0.222:34997]... -2026-03-27T14:02:05.7871208Z 15:02:05.786 | Input System module state changed to: Initialized. -2026-03-27T14:02:05.7884163Z 15:02:05.787 | [Physics::Module] Initialized fallback backend. -2026-03-27T14:02:05.7895710Z 15:02:05.789 | [Physics::Module] Id: 0xdecafbad -2026-03-27T14:02:06.2026801Z 15:02:06.201 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner" at "2026-03-27T14:02:05.9230683Z" -2026-03-27T14:02:06.2037659Z 15:02:06.203 | [Package Manager] Connected to IPC stream "Upm-7096" after 0.5 seconds. -2026-03-27T14:02:06.2049271Z 15:02:06.204 | [Licensing::Module] Licensing is not yet initialized. -2026-03-27T14:02:08.6345324Z 15:02:08.634 | [Licensing::Client] Handshaking with LicensingClient: -2026-03-27T14:02:08.6351612Z 15:02:08.634 | Version: 1.17.4+4293ba1 -2026-03-27T14:02:08.6358053Z 15:02:08.635 | Session Id: 42488e3cce464b13adc1359b50b87996 -2026-03-27T14:02:08.6364277Z 15:02:08.635 | Correlation Id: 9b846f402a415524480ca7b2697cf7e3 -2026-03-27T14:02:08.6369481Z 15:02:08.636 | External correlation Id: 5251156586387745817 -2026-03-27T14:02:08.6376203Z 15:02:08.637 | Machine Id: b5cL0vq5etg728hHCfaSnjJzEl4= -2026-03-27T14:02:08.6381635Z 15:02:08.637 | [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-github-runner" (connect: 0.86s, validation: 0.07s, handshake: 2.48s) -2026-03-27T14:02:08.6388163Z 15:02:08.638 | [Licensing::IpcConnector] Successfully connected to: "LicenseClient-github-runner-notifications" at "2026-03-27T14:02:08.4707652Z" -2026-03-27T14:02:08.6394595Z 15:02:08.639 | [Licensing::Module] Connected to LicensingClient (PId: 27496, launch time: 0.01, total connection time: 3.41s) -2026-03-27T14:02:08.6400257Z 15:02:08.639 | [Licensing::Module] Error: Access token is unavailable; failed to update -2026-03-27T14:02:08.6405078Z 15:02:08.640 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:02:08.6411775Z 15:02:08.640 | [Licensing::Module] License group: -2026-03-27T14:02:08.6417657Z 15:02:08.641 | Id: SC-6P43-RKFA-9PYH-ZZ9Q-XXXX -2026-03-27T14:02:08.6423826Z 15:02:08.642 | Product: Unity Pro -2026-03-27T14:02:08.6429283Z 15:02:08.642 | Type: ULF -2026-03-27T14:02:08.6435481Z 15:02:08.643 | Expiration: 2027-03-05T00:00:00Z -2026-03-27T14:02:08.6441842Z 15:02:08.643 | [Licensing::Client] Successfully updated license, isAsync: True, time: 0.01 -2026-03-27T14:02:08.6448864Z 15:02:08.644 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:02:08.6455235Z 15:02:08.645 | [Licensing::Module] Licensing Background thread has ended after 3.46s -2026-03-27T14:02:08.6461944Z 15:02:08.645 | [Licensing::Module] Licensing is initialized (took 2.43s). -2026-03-27T14:02:08.6468321Z 15:02:08.646 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:02:08.6473486Z 15:02:08.646 | Library Redirect Path: Library/ -2026-03-27T14:02:09.0534520Z 15:02:09.052 | [Physics::Module] Selected backend. -2026-03-27T14:02:09.0540647Z 15:02:09.053 | [Physics::Module] Name: PhysX -2026-03-27T14:02:09.0546835Z 15:02:09.054 | [Physics::Module] Id: 0xf2b8ea05 -2026-03-27T14:02:09.0553720Z 15:02:09.054 | [Physics::Module] SDK Version: 4.1.2 -2026-03-27T14:02:09.0560112Z 15:02:09.055 | [Physics::Module] Integration Version: 1.0.0 -2026-03-27T14:02:09.0565722Z 15:02:09.056 | [Physics::Module] Threading Mode: Multi-Threaded -2026-03-27T14:02:09.0572879Z 15:02:09.056 | Refreshing native plugins compatible for Editor in 1.77 ms, found 0 plugins. -2026-03-27T14:02:09.0584815Z 15:02:09.058 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:02:09.0590823Z 15:02:09.058 | Initialize engine version: 6000.3.8f1 (1c7db571dde0) -2026-03-27T14:02:09.0597357Z 15:02:09.059 | [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Resources/UnitySubsystems -2026-03-27T14:02:09.0603913Z 15:02:09.059 | [Subsystems] Discovering subsystems at path C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Assets -2026-03-27T14:02:09.0611396Z 15:02:09.060 | GfxDevice: creating device client; kGfxThreadingModeNonThreaded -2026-03-27T14:02:09.0616904Z 15:02:09.061 | Direct3D: -2026-03-27T14:02:09.0623362Z 15:02:09.061 | Version: Direct3D 11.0 [level 11.1] -2026-03-27T14:02:09.0629587Z 15:02:09.062 | Renderer: NVIDIA GeForce GTX 1080 (ID=0x1b80) -2026-03-27T14:02:09.0636248Z 15:02:09.063 | Vendor: NVIDIA -2026-03-27T14:02:09.0642392Z 15:02:09.063 | VRAM: 8059 MB -2026-03-27T14:02:09.0650056Z 15:02:09.064 | Driver: 32.0.15.7716 -2026-03-27T14:02:09.4744310Z 15:02:09.473 | Initialize mono -2026-03-27T14:02:09.4776326Z 15:02:09.475 | Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Managed' -2026-03-27T14:02:09.4786582Z 15:02:09.478 | Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' -2026-03-27T14:02:09.4802954Z 15:02:09.479 | Mono config path = 'C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/MonoBleedingEdge/etc' -2026-03-27T14:02:09.4811659Z 15:02:09.480 | Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56096 -2026-03-27T14:02:09.4818485Z 15:02:09.481 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts -2026-03-27T14:02:09.4829662Z 15:02:09.482 | Using cacheserver namespaces - metadata:defaultmetadata, artifacts:defaultartifacts -2026-03-27T14:02:09.4837374Z 15:02:09.483 | ImportWorker Server TCP listen port: 0 -2026-03-27T14:02:09.4844040Z 15:02:09.484 | AcceleratorClientConnectionCallback - disconnected - :0 -2026-03-27T14:02:09.4858819Z 15:02:09.484 | Begin MonoManager ReloadAssembly -2026-03-27T14:02:09.4866453Z 15:02:09.486 | Registering precompiled unity dll's ... -2026-03-27T14:02:09.4900976Z 15:02:09.487 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -2026-03-27T14:02:09.4909792Z 15:02:09.490 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:02:09.4916576Z 15:02:09.491 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/PS5Player/UnityEditor.PS5.Extensions.dll -2026-03-27T14:02:09.4924164Z 15:02:09.491 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/UnityEditor.GameCoreScarlett.Extensions.dll -2026-03-27T14:02:09.4935160Z 15:02:09.492 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:02:09.4947231Z 15:02:09.493 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll -2026-03-27T14:02:09.4954066Z 15:02:09.494 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreXboxOneSupport/UnityEditor.GameCoreXboxOne.Extensions.dll -2026-03-27T14:02:09.4960298Z 15:02:09.495 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:02:09.4967696Z 15:02:09.496 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll -2026-03-27T14:02:09.4977821Z 15:02:09.496 | Register platform support module: C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/Switch/UnityEditor.Switch.Extensions.dll -2026-03-27T14:02:09.4985367Z 15:02:09.498 | Registered in 0.025832 seconds. -2026-03-27T14:02:09.9108731Z 15:02:09.909 | - Loaded All Assemblies, in 0.615 seconds -2026-03-27T14:02:10.3153698Z 15:02:10.313 | Native extension for iOS target not found -2026-03-27T14:02:10.3163872Z 15:02:10.315 | Native extension for Android target not found -2026-03-27T14:02:13.1645539Z 15:02:13.164 | Android Extension - Scanning For ADB Devices 2616 ms -2026-03-27T14:02:13.1651668Z 15:02:13.164 | Native extension for WindowsStandalone target not found -2026-03-27T14:02:13.5719775Z 15:02:13.571 | ScheduleIndexationOnStartup MainProcess:False IndexOnStartup:False -2026-03-27T14:02:13.5727145Z 15:02:13.572 | Mono: successfully reloaded assembly -2026-03-27T14:02:13.5732915Z 15:02:13.572 | - Finished resetting the current domain, in 3.505 seconds -2026-03-27T14:02:13.5739601Z 15:02:13.573 | Domain Reload Profiling: 4111ms -2026-03-27T14:02:13.5744804Z 15:02:13.574 | BeginReloadAssembly (200ms) -2026-03-27T14:02:13.5750482Z 15:02:13.574 | ExecutionOrderSort (0ms) -2026-03-27T14:02:13.5756010Z 15:02:13.575 | DisableScriptedObjects (0ms) -2026-03-27T14:02:13.5761459Z 15:02:13.575 | BackupInstance (0ms) -2026-03-27T14:02:13.5769664Z 15:02:13.576 | ReleaseScriptingObjects (0ms) -2026-03-27T14:02:13.5775952Z 15:02:13.577 | CreateAndSetChildDomain (5ms) -2026-03-27T14:02:13.5782040Z 15:02:13.577 | RebuildCommonClasses (48ms) -2026-03-27T14:02:13.5792839Z 15:02:13.578 | RebuildNativeTypeToScriptingClass (18ms) -2026-03-27T14:02:13.5794807Z 15:02:13.579 | initialDomainReloadingComplete (92ms) -2026-03-27T14:02:13.5801353Z 15:02:13.579 | LoadAllAssembliesAndSetupDomain (247ms) -2026-03-27T14:02:13.5807306Z 15:02:13.580 | LoadAssemblies (191ms) -2026-03-27T14:02:13.5813906Z 15:02:13.581 | RebuildTransferFunctionScriptingTraits (0ms) -2026-03-27T14:02:13.5822628Z 15:02:13.581 | AnalyzeDomain (239ms) -2026-03-27T14:02:13.5829714Z 15:02:13.582 | TypeCache.Refresh (237ms) -2026-03-27T14:02:13.5837560Z 15:02:13.583 | TypeCache.ScanAssembly (218ms) -2026-03-27T14:02:13.5843050Z 15:02:13.583 | BuildScriptInfoCaches (0ms) -2026-03-27T14:02:13.5849415Z 15:02:13.584 | ResolveRequiredComponents (1ms) -2026-03-27T14:02:13.5855041Z 15:02:13.585 | FinalizeReload (3506ms) -2026-03-27T14:02:13.5860836Z 15:02:13.585 | ReleaseScriptCaches (0ms) -2026-03-27T14:02:13.5866411Z 15:02:13.586 | RebuildScriptCaches (0ms) -2026-03-27T14:02:13.5875151Z 15:02:13.586 | SetupLoadedEditorAssemblies (3460ms) -2026-03-27T14:02:13.5887956Z 15:02:13.588 | LogAssemblyErrors (0ms) -2026-03-27T14:02:13.5894453Z 15:02:13.588 | InitializePlatformSupportModulesInManaged (3078ms) -2026-03-27T14:02:13.5899878Z 15:02:13.589 | SetLoadedEditorAssemblies (5ms) -2026-03-27T14:02:13.5906406Z 15:02:13.590 | BeforeProcessingInitializeOnLoad (115ms) -2026-03-27T14:02:13.5912258Z 15:02:13.590 | ProcessInitializeOnLoadAttributes (172ms) -2026-03-27T14:02:13.5918423Z 15:02:13.591 | ProcessInitializeOnLoadMethodAttributes (90ms) -2026-03-27T14:02:13.5925245Z 15:02:13.592 | AfterProcessingInitializeOnLoad (0ms) -2026-03-27T14:02:13.5931539Z 15:02:13.592 | EditorAssembliesLoaded (0ms) -2026-03-27T14:02:13.5941066Z 15:02:13.593 | ExecutionOrderSort2 (0ms) -2026-03-27T14:02:13.5948186Z 15:02:13.594 | AwakeInstancesAfterBackupRestoration (0ms) -2026-03-27T14:02:13.5955338Z 15:02:13.594 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:02:13.5962628Z 15:02:13.595 | Application.AssetDatabase Initial Refresh Start -2026-03-27T14:02:13.5968768Z 15:02:13.596 | Package Manager log level set to [2] -2026-03-27T14:02:13.5975347Z 15:02:13.597 | [Package Manager] Restoring resolved packages state from cache -2026-03-27T14:02:13.5982219Z 15:02:13.597 | [Licensing::Client] Successfully resolved entitlement details -2026-03-27T14:02:13.5990994Z 15:02:13.598 | [Package Manager] Registered 39 packages: -2026-03-27T14:02:13.5996928Z 15:02:13.599 | Built-in packages: -2026-03-27T14:02:13.6005557Z 15:02:13.599 | com.unity.multiplayer.center@1.0.1 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.multiplayer.center@f01f4ba8d00a) -2026-03-27T14:02:13.6014664Z 15:02:13.600 | com.unity.ugui@2.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.ugui@bb329a87fcdc) -2026-03-27T14:02:13.6030010Z 15:02:13.601 | com.unity.modules.accessibility@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.accessibility) -2026-03-27T14:02:13.6048612Z 15:02:13.604 | com.unity.modules.adaptiveperformance@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.adaptiveperformance) -2026-03-27T14:02:13.6056016Z 15:02:13.604 | com.unity.modules.ai@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ai) -2026-03-27T14:02:13.6066417Z 15:02:13.605 | com.unity.modules.androidjni@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.androidjni) -2026-03-27T14:02:13.6075060Z 15:02:13.606 | com.unity.modules.animation@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.animation) -2026-03-27T14:02:13.6081084Z 15:02:13.607 | com.unity.modules.assetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.assetbundle) -2026-03-27T14:02:13.6089957Z 15:02:13.608 | com.unity.modules.audio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.audio) -2026-03-27T14:02:13.6096403Z 15:02:13.609 | com.unity.modules.cloth@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.cloth) -2026-03-27T14:02:13.6103294Z 15:02:13.609 | com.unity.modules.director@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.director) -2026-03-27T14:02:13.6110577Z 15:02:13.610 | com.unity.modules.imageconversion@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imageconversion) -2026-03-27T14:02:13.6115868Z 15:02:13.611 | com.unity.modules.imgui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.imgui) -2026-03-27T14:02:13.6122471Z 15:02:13.611 | com.unity.modules.jsonserialize@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.jsonserialize) -2026-03-27T14:02:13.6127773Z 15:02:13.612 | com.unity.modules.particlesystem@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.particlesystem) -2026-03-27T14:02:13.6133268Z 15:02:13.612 | com.unity.modules.physics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics) -2026-03-27T14:02:13.6141530Z 15:02:13.613 | com.unity.modules.physics2d@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.physics2d) -2026-03-27T14:02:13.6148040Z 15:02:13.614 | com.unity.modules.screencapture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.screencapture) -2026-03-27T14:02:13.6156211Z 15:02:13.614 | com.unity.modules.terrain@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrain) -2026-03-27T14:02:13.6161476Z 15:02:13.615 | com.unity.modules.terrainphysics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.terrainphysics) -2026-03-27T14:02:13.6167839Z 15:02:13.616 | com.unity.modules.tilemap@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.tilemap) -2026-03-27T14:02:13.6174158Z 15:02:13.616 | com.unity.modules.ui@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.ui) -2026-03-27T14:02:13.6183129Z 15:02:13.617 | com.unity.modules.uielements@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.uielements) -2026-03-27T14:02:13.6188806Z 15:02:13.618 | com.unity.modules.umbra@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.umbra) -2026-03-27T14:02:13.6194265Z 15:02:13.618 | com.unity.modules.unityanalytics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unityanalytics) -2026-03-27T14:02:13.6199904Z 15:02:13.619 | com.unity.modules.unitywebrequest@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequest) -2026-03-27T14:02:13.6205438Z 15:02:13.620 | com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle) -2026-03-27T14:02:13.6212468Z 15:02:13.620 | com.unity.modules.unitywebrequestaudio@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestaudio) -2026-03-27T14:02:13.6217738Z 15:02:13.621 | com.unity.modules.unitywebrequesttexture@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequesttexture) -2026-03-27T14:02:13.6223586Z 15:02:13.621 | com.unity.modules.unitywebrequestwww@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.unitywebrequestwww) -2026-03-27T14:02:13.6229417Z 15:02:13.622 | com.unity.modules.vectorgraphics@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vectorgraphics) -2026-03-27T14:02:13.6235612Z 15:02:13.623 | com.unity.modules.vehicles@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vehicles) -2026-03-27T14:02:13.6242158Z 15:02:13.623 | com.unity.modules.video@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.video) -2026-03-27T14:02:13.6248492Z 15:02:13.624 | com.unity.modules.vr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.vr) -2026-03-27T14:02:13.6254907Z 15:02:13.624 | com.unity.modules.wind@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.wind) -2026-03-27T14:02:13.6259866Z 15:02:13.625 | com.unity.modules.xr@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.xr) -2026-03-27T14:02:13.6266870Z 15:02:13.626 | com.unity.modules.subsystems@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.subsystems) -2026-03-27T14:02:13.6275160Z 15:02:13.626 | com.unity.modules.hierarchycore@1.0.0 (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Library\PackageCache\com.unity.modules.hierarchycore) -2026-03-27T14:02:13.6282786Z 15:02:13.627 | Local packages: -2026-03-27T14:02:13.6290518Z 15:02:13.628 | io.sentry.unity@file:C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package (location: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity-package) -2026-03-27T14:02:13.6298002Z 15:02:13.629 | [Subsystems] No new subsystems found in resolved package list. -2026-03-27T14:02:13.6304887Z 15:02:13.629 | [Package Manager] Done registering packages in 0.04 seconds -2026-03-27T14:02:14.4877610Z 15:02:14.469 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aE.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssemblies -2026-03-27T14:02:14.5171247Z 15:02:14.488 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:14.5328584Z 15:02:14.526 | DisplayProgressbar: Compiling Scripts -2026-03-27T14:02:14.5551276Z 15:02:14.539 | ExitCode: 0 Duration: 0s198ms -2026-03-27T14:02:14.5682799Z 15:02:14.561 | *** Tundra build success (0.09 seconds), 0 items updated, 257 evaluated -2026-03-27T14:02:14.5690767Z 15:02:14.568 | AssetDatabase: script compilation time: 0.976595s -2026-03-27T14:02:14.5697984Z 15:02:14.569 | Begin MonoManager ReloadAssembly -2026-03-27T14:02:15.7971454Z 15:02:15.796 | - Loaded All Assemblies, in 0.868 seconds -2026-03-27T14:02:15.7977785Z 15:02:15.797 | Start importing Assets/Plugins/Sentry/XSX using Guid(dc171cd0d7baede4c8bb5ef111d25009) (DefaultImporter) -> (artifact id: '642a92c8530fe22ded4e4b8ec27d7467') in 0.021484 seconds -2026-03-27T14:02:15.7987936Z 15:02:15.797 | Refreshing native plugins compatible for Editor in 6.10 ms, found 1 plugins. -2026-03-27T14:02:16.2003805Z 15:02:16.199 | Native extension for iOS target not found -2026-03-27T14:02:16.2010920Z 15:02:16.200 | Native extension for Android target not found -2026-03-27T14:02:16.2017913Z 15:02:16.201 | Native extension for WindowsStandalone target not found -2026-03-27T14:02:16.6059339Z 15:02:16.604 | Sentry Package Installation: Sentry not requested to be installed. -2026-03-27T14:02:16.6065402Z 15:02:16.606 | ScheduleIndexationOnStartup MainProcess:True IndexOnStartup:True -2026-03-27T14:02:16.6073287Z 15:02:16.606 | Mono: successfully reloaded assembly -2026-03-27T14:02:16.6080182Z 15:02:16.607 | - Finished resetting the current domain, in 0.838 seconds -2026-03-27T14:02:16.6085827Z 15:02:16.608 | Domain Reload Profiling: 1693ms -2026-03-27T14:02:16.6093833Z 15:02:16.608 | BeginReloadAssembly (395ms) -2026-03-27T14:02:16.6101351Z 15:02:16.609 | ExecutionOrderSort (0ms) -2026-03-27T14:02:16.6109059Z 15:02:16.610 | DisableScriptedObjects (19ms) -2026-03-27T14:02:16.6115730Z 15:02:16.611 | BackupInstance (0ms) -2026-03-27T14:02:16.6120738Z 15:02:16.611 | ReleaseScriptingObjects (0ms) -2026-03-27T14:02:16.6126305Z 15:02:16.612 | CreateAndSetChildDomain (159ms) -2026-03-27T14:02:16.6132524Z 15:02:16.612 | RebuildCommonClasses (47ms) -2026-03-27T14:02:16.6138340Z 15:02:16.613 | RebuildNativeTypeToScriptingClass (17ms) -2026-03-27T14:02:16.6144860Z 15:02:16.614 | initialDomainReloadingComplete (53ms) -2026-03-27T14:02:16.6149190Z 15:02:16.614 | LoadAllAssembliesAndSetupDomain (343ms) -2026-03-27T14:02:16.6154278Z 15:02:16.615 | LoadAssemblies (411ms) -2026-03-27T14:02:16.6159458Z 15:02:16.615 | RebuildTransferFunctionScriptingTraits (0ms) -2026-03-27T14:02:16.6164440Z 15:02:16.616 | AnalyzeDomain (85ms) -2026-03-27T14:02:16.6170112Z 15:02:16.616 | TypeCache.Refresh (70ms) -2026-03-27T14:02:16.6176731Z 15:02:16.617 | TypeCache.ScanAssembly (61ms) -2026-03-27T14:02:16.6182488Z 15:02:16.617 | BuildScriptInfoCaches (10ms) -2026-03-27T14:02:16.6188839Z 15:02:16.618 | ResolveRequiredComponents (2ms) -2026-03-27T14:02:16.6199957Z 15:02:16.619 | FinalizeReload (838ms) -2026-03-27T14:02:16.6206733Z 15:02:16.620 | ReleaseScriptCaches (0ms) -2026-03-27T14:02:16.6213934Z 15:02:16.620 | RebuildScriptCaches (0ms) -2026-03-27T14:02:16.6219936Z 15:02:16.621 | SetupLoadedEditorAssemblies (689ms) -2026-03-27T14:02:16.6226161Z 15:02:16.622 | LogAssemblyErrors (0ms) -2026-03-27T14:02:16.6231913Z 15:02:16.622 | InitializePlatformSupportModulesInManaged (319ms) -2026-03-27T14:02:16.6237188Z 15:02:16.623 | SetLoadedEditorAssemblies (3ms) -2026-03-27T14:02:16.6242479Z 15:02:16.623 | BeforeProcessingInitializeOnLoad (162ms) -2026-03-27T14:02:16.6247789Z 15:02:16.624 | ProcessInitializeOnLoadAttributes (146ms) -2026-03-27T14:02:16.6252786Z 15:02:16.624 | ProcessInitializeOnLoadMethodAttributes (43ms) -2026-03-27T14:02:16.6259913Z 15:02:16.625 | AfterProcessingInitializeOnLoad (16ms) -2026-03-27T14:02:16.6267273Z 15:02:16.626 | EditorAssembliesLoaded (0ms) -2026-03-27T14:02:16.6274789Z 15:02:16.626 | ExecutionOrderSort2 (0ms) -2026-03-27T14:02:16.6282905Z 15:02:16.627 | AwakeInstancesAfterBackupRestoration (18ms) -2026-03-27T14:02:16.6289514Z 15:02:16.628 | Start importing Assets/Plugins/Sentry/XSX/sentry.pdb using Guid(0946fd223c6c4fb7862f22b894670fd0) (DefaultImporter) -> (artifact id: 'aa8f3ec008cf2e537f28003be4fb7fe2') in 0.0327317 seconds -2026-03-27T14:02:16.6294187Z 15:02:16.629 | Refreshing native plugins compatible for Editor in 5.84 ms, found 1 plugins. -2026-03-27T14:02:16.6299259Z 15:02:16.629 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:02:16.6305148Z 15:02:16.630 | Asset Pipeline Refresh (id=494dfc0b6016457419303ec58acbb8a2): Total: 3.190 seconds - Initiated by InitialRefreshV2(ForceSynchronousImport) -2026-03-27T14:02:16.6310206Z 15:02:16.630 | Summary: -2026-03-27T14:02:16.6315679Z 15:02:16.631 | Imports: total=2 (actual=2, local cache=0, cache server=0) -2026-03-27T14:02:16.6320820Z 15:02:16.631 | Asset DB Process Time: managed=3 ms, native=1196 ms -2026-03-27T14:02:16.6325920Z 15:02:16.632 | Asset DB Callback time: managed=67 ms, native=50 ms -2026-03-27T14:02:16.6332245Z 15:02:16.632 | Scripting: domain reloads=1, domain reload time=869 ms, compile time=979 ms, other=23 ms -2026-03-27T14:02:16.6337237Z 15:02:16.633 | Project Asset Count: scripts=223, non-scripts=151 -2026-03-27T14:02:16.6344577Z 15:02:16.633 | Asset File Changes: new=3, changed=3, moved=0, deleted=0 -2026-03-27T14:02:16.6350021Z 15:02:16.634 | Scan Filter Count: 0 -2026-03-27T14:02:16.6356514Z 15:02:16.635 | InvokeCustomDependenciesCallbacks: 0.001ms -2026-03-27T14:02:16.6362281Z 15:02:16.635 | InvokePackagesCallback: 46.238ms -2026-03-27T14:02:16.6368053Z 15:02:16.636 | ApplyChangesToAssetFolders: 1.086ms -2026-03-27T14:02:16.6373729Z 15:02:16.636 | Scan: 103.749ms -2026-03-27T14:02:16.6381016Z 15:02:16.637 | OnSourceAssetsModified: 0.834ms -2026-03-27T14:02:16.6386311Z 15:02:16.638 | CategorizeAssetsWithTransientArtifact: 16.410ms -2026-03-27T14:02:16.6400915Z 15:02:16.638 | ProcessAssetsWithTransientArtifactChanges: 19.513ms -2026-03-27T14:02:16.6407205Z 15:02:16.640 | CategorizeAssets: 3.255ms -2026-03-27T14:02:16.6412449Z 15:02:16.640 | ImportOutOfDateAssets: 916.280ms (-124.702ms without children) -2026-03-27T14:02:16.6418057Z 15:02:16.641 | ImportManagerImport: 61.031ms (5.179ms without children) -2026-03-27T14:02:16.6424506Z 15:02:16.641 | ImportInProcess: 55.822ms -2026-03-27T14:02:16.6429239Z 15:02:16.642 | UpdateCategorizedAssets: 0.030ms -2026-03-27T14:02:16.6434264Z 15:02:16.643 | CompileScripts: 978.911ms -2026-03-27T14:02:16.6439496Z 15:02:16.643 | ReloadNativeAssets: 0.000ms -2026-03-27T14:02:16.6444478Z 15:02:16.644 | UnloadImportedAssets: 0.610ms -2026-03-27T14:02:16.6450584Z 15:02:16.644 | ReloadImportedAssets: 0.000ms -2026-03-27T14:02:16.6455684Z 15:02:16.645 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.070ms -2026-03-27T14:02:16.6461104Z 15:02:16.645 | InitializingProgressBar: 0.005ms -2026-03-27T14:02:16.6466926Z 15:02:16.646 | PostProcessAllAssetNotificationsAddChangedAssets: 0.001ms -2026-03-27T14:02:16.6472284Z 15:02:16.646 | OnDemandSchedulerStart: 0.354ms -2026-03-27T14:02:16.6480087Z 15:02:16.647 | PostProcessAllAssets: 70.321ms -2026-03-27T14:02:16.6485121Z 15:02:16.648 | Hotreload: 6.975ms -2026-03-27T14:02:16.6493865Z 15:02:16.648 | GatherAllCurrentPrimaryArtifactRevisions: 0.003ms -2026-03-27T14:02:16.6499916Z 15:02:16.649 | UnloadStreamsBegin: 1.836ms -2026-03-27T14:02:16.6506458Z 15:02:16.650 | PersistCurrentRevisions: 0.203ms -2026-03-27T14:02:16.6512072Z 15:02:16.650 | UnloadStreamsEnd: 0.001ms -2026-03-27T14:02:16.6517840Z 15:02:16.651 | GenerateScriptTypeHashes: 1.074ms -2026-03-27T14:02:16.6523557Z 15:02:16.651 | Untracked: 2003.051ms -2026-03-27T14:02:16.6530519Z 15:02:16.652 | -2026-03-27T14:02:16.6537857Z 15:02:16.653 | Application.AssetDatabase Initial Refresh End -2026-03-27T14:02:16.6543329Z 15:02:16.653 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -2026-03-27T14:02:17.0564819Z 15:02:17.055 | Scanning for USB devices : 7.713ms -2026-03-27T14:02:17.0572020Z 15:02:17.056 | Initializing Unity extensions: -2026-03-27T14:02:17.0579884Z 15:02:17.057 | [MODES] ModeService[none].Initialize -2026-03-27T14:02:17.0589981Z 15:02:17.058 | [MODES] ModeService[none].LoadModes -2026-03-27T14:02:17.0598308Z 15:02:17.059 | [MODES] Loading mode Default (0) for mode-current-id-IntegrationTest6000.3.8f1 -2026-03-27T14:02:20.3117727Z 15:02:20.309 | Unloading 3 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:02:20.3129862Z 15:02:20.312 | Unloading 478 unused Assets / (1.1 MB). Loaded Objects now: 1053. -2026-03-27T14:02:20.3141053Z 15:02:20.313 | Memory consumption went from 96.7 MB to 95.6 MB. -2026-03-27T14:02:20.3156014Z 15:02:20.314 | Total: 7.273300 ms (FindLiveObjects: 0.100400 ms CreateObjectMapping: 0.032800 ms MarkObjects: 6.310200 ms DeleteObjects: 0.828900 ms) -2026-03-27T14:02:20.3169382Z 15:02:20.316 | -2026-03-27T14:02:20.3187930Z 15:02:20.317 | Builder: Building Xbox Series X|S IL2CPP Player -2026-03-27T14:02:20.3202613Z 15:02:20.319 | Builder: Xbox Build Profile (BuildTarget 42) set to Master -2026-03-27T14:02:20.3214000Z 15:02:20.320 | Builder: Xbox Build Profile (BuildTarget 43) set to Master -2026-03-27T14:02:20.3229550Z 15:02:20.322 | Builder: Starting to build -2026-03-27T14:02:20.3254613Z 15:02:20.323 | Builder: Parsing command line arguments -2026-03-27T14:02:20.3268766Z 15:02:20.326 | Builder: Validating command line arguments -2026-03-27T14:02:20.3282683Z 15:02:20.327 | Builder: Starting build. Output will be 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test'. -2026-03-27T14:02:20.3294243Z 15:02:20.328 | Builder: Setting IL2CPP generation to OptimizeSpeed -2026-03-27T14:02:20.3306280Z 15:02:20.329 | Builder: Configuring code stripping level -2026-03-27T14:02:20.3317914Z 15:02:20.331 | Builder: Updating BuildPlayerOptions -2026-03-27T14:02:20.3325392Z 15:02:20.332 | Builder: Disabling optimizations to reduce build time -2026-03-27T14:02:20.3332597Z 15:02:20.332 | Builder: Checking for Test scene -2026-03-27T14:02:20.3338658Z 15:02:20.333 | Builder: Adding Test.unity to scenes -2026-03-27T14:02:20.3351125Z 15:02:20.334 | Builder: Starting build -2026-03-27T14:02:20.7513498Z 15:02:20.747 | Sentry: IntegrationOptionsConfig::Configure() called -2026-03-27T14:02:20.7523451Z 15:02:20.751 | Sentry: IntegrationOptionsConfig::Configure() finished -2026-03-27T14:02:20.7571055Z 15:02:20.755 | Sentry: (Debug) Logging enabled with 'UnityLogger' min level: Debug -2026-03-27T14:02:20.7590064Z 15:02:20.758 | Sentry: (Debug) Xbox Series X|S native support: checking for required file: -2026-03-27T14:02:20.7647272Z 15:02:20.762 | - Assets/Plugins/Sentry/XSX/sentry.dll -2026-03-27T14:02:20.7659283Z 15:02:20.765 | Sentry: (Info) Xbox Series X|S native library found at 'Assets/Plugins/Sentry/XSX/sentry.dll'. -2026-03-27T14:02:20.7666026Z 15:02:20.766 | Running Window/Nintendo Switch/SwitchMaxQueuedFramesUpgrader as a preprocess buid step... -2026-03-27T14:02:20.7675414Z 15:02:20.766 | This will run on every Player build until one of the following conditions is satisfied: -2026-03-27T14:02:20.7693173Z 15:02:20.768 | - All C# files containing occurrences of QualitySettings.maxQueuedFrames have been marked by adding #define UNITY_SWITCH_FIXED_MAX_QUEUED_FRAMES. -2026-03-27T14:02:20.7719674Z 15:02:20.770 | - UNITY_SWITCH_FIXED_MAX_QUEUED_FRAMES has been added to Player Settings -> Nintendo Switch -> Scripting Define Symbols. -2026-03-27T14:02:20.7728895Z 15:02:20.772 | - QualitySettings.maxQueuedFrames is not referenced in the project. -2026-03-27T14:02:20.7736835Z 15:02:20.773 | SwitchMaxQueuedFramesUpgrader found 0 warnings. -2026-03-27T14:02:20.7745549Z 15:02:20.773 | No warning found related to QualitySettings.maxQueuedFrames, UNITY_SWITCH_FIXED_MAX_QUEUED_FRAMES was added to Player Settings -> Nintendo Switch -> Scripting Define Symbol in order to disable this preprocess build step. -2026-03-27T14:02:20.7752378Z 15:02:20.774 | Sentry: IntegrationOptionsConfig::Configure() called -2026-03-27T14:02:20.8009593Z 15:02:20.775 | Sentry: IntegrationOptionsConfig::Configure() finished -2026-03-27T14:02:20.8025162Z 15:02:20.801 | Sentry: (Debug) Logging enabled with 'UnityLogger' min level: Debug -2026-03-27T14:02:20.8134482Z 15:02:20.808 | Sentry: (Info) IL2CPP build detected. Handling additional IL2CPP arguments. -2026-03-27T14:02:20.8171134Z 15:02:20.816 | Sentry: (Debug) IL2CPP line number support enabled - Adding additional IL2CPP arguments. -2026-03-27T14:02:20.8186148Z 15:02:20.817 | Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) (LibraryAssetImporter) -> (artifact id: '333c95692dac0aa14eb35f7fe8531261') in 0.0078907 seconds -2026-03-27T14:02:20.8192575Z 15:02:20.818 | Start importing ProjectSettings/AudioManager.asset using Guid(00000000000000006000000000000000) (LibraryAssetImporter) -> (artifact id: 'ff75e50a639c62471f82f47b504f2f0b') in 0.006907 seconds -2026-03-27T14:02:21.2297641Z 15:02:21.228 | Refreshing native plugins compatible for Editor in 6.76 ms, found 1 plugins. -2026-03-27T14:02:21.2304198Z 15:02:21.229 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:02:21.2310047Z 15:02:21.230 | Asset Pipeline Refresh (id=6becb3382a39a974eb9a5ac2b0a86e16): Total: 0.164 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions) -2026-03-27T14:02:21.2316925Z 15:02:21.231 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aESkipCompile.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssembliesAndTypeDB -2026-03-27T14:02:21.2365352Z 15:02:21.232 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:21.2374884Z 15:02:21.237 | ExitCode: 4 Duration: 0s99ms -2026-03-27T14:02:21.2381084Z 15:02:21.237 | [ ] Require frontend run. Library/Bee/1900b0aESkipCompile.dag couldn't be loaded -2026-03-27T14:02:21.2389696Z 15:02:21.238 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/1900b0aESkipCompile.dag.json" "Library/Bee/1900b0aESkipCompile-inputdata.json" "Library\Bee\buildprogram0.traceevents" -2026-03-27T14:02:21.2393757Z 15:02:21.238 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:21.6548759Z 15:02:21.653 | ExitCode: 0 Duration: 0s349ms -2026-03-27T14:02:21.6588862Z 15:02:21.655 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/1900b0aESkipCompile.dag" --continue-on-failure --dagfilejson="Library\Bee\1900b0aESkipCompile.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssembliesAndTypeDB -2026-03-27T14:02:21.6603350Z 15:02:21.659 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:22.4806898Z 15:02:22.478 | ExitCode: 0 Duration: 0s736ms -2026-03-27T14:02:22.4857392Z 15:02:22.481 | Finished compiling graph: 4 nodes, 5 flattened edges (5 ToBuild, 0 ToUse), maximum node priority 3 -2026-03-27T14:02:22.4899648Z 15:02:22.486 | [2/3 0s] BuildPlayerDataGenerator Library/BuildPlayerData/Editor/TypeDb-All.json -2026-03-27T14:02:22.4908104Z 15:02:22.490 | *** Tundra build success (0.66 seconds), 1 items updated, 3 evaluated -2026-03-27T14:02:22.4921635Z 15:02:22.491 | Asset Pipeline Refresh (id=225e416a026a8874faf8f22950b449ec): Total: 0.007 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) -2026-03-27T14:02:22.4939105Z 15:02:22.493 | [ScriptCompilation] Requested script compilation because: Recompiling scripts for player build. -2026-03-27T14:02:22.4978514Z 15:02:22.496 | BuildPlayer: start building target 42 -2026-03-27T14:02:22.9140603Z 15:02:22.913 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/4200b0aP.dag" --continue-on-failure --profile="Library/Bee/backend1.traceevents" ScriptAssembliesAndTypeDB -2026-03-27T14:02:22.9148131Z 15:02:22.914 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:22.9155890Z 15:02:22.914 | ExitCode: 4 Duration: 0s170ms -2026-03-27T14:02:22.9164307Z 15:02:22.915 | [ ] Require frontend run. Library/Bee/4200b0aP.dag couldn't be loaded -2026-03-27T14:02:22.9178452Z 15:02:22.917 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\ScriptCompilationBuildProgram.exe" "Library/Bee/4200b0aP.dag.json" "Library/Bee/4200b0aP-inputdata.json" "Library\Bee\buildprogram0.traceevents" -2026-03-27T14:02:22.9252072Z 15:02:22.917 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:23.3313587Z 15:02:23.330 | ExitCode: 0 Duration: 0s407ms -2026-03-27T14:02:23.3320600Z 15:02:23.331 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --defer-dag-verification --dagfile="Library/Bee/4200b0aP.dag" --continue-on-failure --dagfilejson="Library\Bee\4200b0aP.dag.json" --profile="Library/Bee/backend2.traceevents" ScriptAssembliesAndTypeDB -2026-03-27T14:02:23.3324935Z 15:02:23.332 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:02:28.9934725Z 15:02:28.815 | Total cache size 270699052 -2026-03-27T14:02:29.1418926Z 15:02:29.050 | Total cache size after purge 268346332, took 00:00:06.6692549 -2026-03-27T14:02:36.5633363Z 15:02:36.554 | ExitCode: 0 Duration: 13s -2026-03-27T14:02:36.5643759Z 15:02:36.563 | Finished compiling graph: 124 nodes, 740 flattened edges (688 ToBuild, 12 ToUse), maximum node priority 59 -2026-03-27T14:02:36.5663622Z 15:02:36.565 | [ 1/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputForUIModule.dll_58CE7D0461A9EA2C.mvfrm -2026-03-27T14:02:36.5676391Z 15:02:36.566 | [ 2/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_A91612AA407FEDD1.mvfrm -2026-03-27T14:02:36.5700790Z 15:02:36.568 | [ 3/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_D6D7D446301098AF.mvfrm -2026-03-27T14:02:36.5801908Z 15:02:36.570 | [ 4/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HierarchyCoreModule.dll_B082CDAC4A066EDF.mvfrm -2026-03-27T14:02:36.5817559Z 15:02:36.580 | [ 5/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_73B474D5B1C01B62.mvfrm -2026-03-27T14:02:36.5824334Z 15:02:36.582 | [ 6/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_9661C2DEFABD0C3C.mvfrm -2026-03-27T14:02:36.5831827Z 15:02:36.582 | [ 7/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GraphicsStateCollectionSerializerModule.dll_63BEC32264C57351.mvfrm -2026-03-27T14:02:36.5837834Z 15:02:36.583 | [ 8/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_734A4EDFE5B65E5B.mvfrm -2026-03-27T14:02:36.5884952Z 15:02:36.584 | [ 9/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_09D4ABBCA5EE0FF6.mvfrm -2026-03-27T14:02:36.5894756Z 15:02:36.588 | [ 10/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_561C22EB01894D70.mvfrm -2026-03-27T14:02:36.5980395Z 15:02:36.591 | [ 11/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_04834A53338D3ED5.mvfrm -2026-03-27T14:02:36.6060834Z 15:02:36.599 | [ 12/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_2696E8FDF9E29E54.mvfrm -2026-03-27T14:02:36.6162146Z 15:02:36.609 | [ 13/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_F966B85817BC02B8.mvfrm -2026-03-27T14:02:36.6241732Z 15:02:36.617 | [ 14/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_3B54D56EEB8E8781.mvfrm -2026-03-27T14:02:36.6415434Z 15:02:36.625 | [ 15/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_F37B805DF548814A.mvfrm -2026-03-27T14:02:36.6470183Z 15:02:36.644 | [ 16/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_5A65271D26C5D95D.mvfrm -2026-03-27T14:02:36.6551242Z 15:02:36.649 | [ 17/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.rsp2 -2026-03-27T14:02:36.6567541Z 15:02:36.655 | [ 18/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_A23D3269C5AB6665.mvfrm -2026-03-27T14:02:36.6592887Z 15:02:36.657 | [ 19/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.UnityAdditionalFile.txt -2026-03-27T14:02:36.6612658Z 15:02:36.659 | [ 20/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_27CD54A4654CD24F.mvfrm -2026-03-27T14:02:36.6633093Z 15:02:36.661 | [ 21/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AdaptivePerformanceModule.dll_4162EF288B9A7615.mvfrm -2026-03-27T14:02:36.6716257Z 15:02:36.665 | [ 22/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_DB0E05D24A077641.mvfrm -2026-03-27T14:02:36.6774899Z 15:02:36.675 | [ 23/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_2BCED8D03B485C7F.mvfrm -2026-03-27T14:02:36.6913533Z 15:02:36.678 | [ 24/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_5C128D89D1434EC3.mvfrm -2026-03-27T14:02:36.7087306Z 15:02:36.699 | [ 25/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_396830D1DB5915E9.mvfrm -2026-03-27T14:02:36.7144535Z 15:02:36.710 | [ 26/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_6FB59380A8F28121.mvfrm -2026-03-27T14:02:36.7169497Z 15:02:36.715 | [ 27/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_605E59D9AE20A326.mvfrm -2026-03-27T14:02:36.7195845Z 15:02:36.718 | [ 28/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_0D001809647BEA33.mvfrm -2026-03-27T14:02:36.7214101Z 15:02:36.719 | [ 29/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_A5BD3B7385A81756.mvfrm -2026-03-27T14:02:36.7244581Z 15:02:36.722 | [ 30/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VectorGraphicsModule.dll_FA624FE7969F7B27.mvfrm -2026-03-27T14:02:36.7284326Z 15:02:36.725 | [ 31/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_7C4643D2ADB70E70.mvfrm -2026-03-27T14:02:36.7320905Z 15:02:36.731 | [ 32/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_4BE1470BB80717C4.mvfrm -2026-03-27T14:02:36.7340298Z 15:02:36.733 | [ 33/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F1592E59E9A25AC0.mvfrm -2026-03-27T14:02:36.7355419Z 15:02:36.734 | [ 34/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_A800CA8905B1A6BB.mvfrm -2026-03-27T14:02:36.7365465Z 15:02:36.735 | [ 35/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_E391620194BF1A0F.mvfrm -2026-03-27T14:02:36.7374143Z 15:02:36.736 | [ 36/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_5AE9F5D5D560C43C.mvfrm -2026-03-27T14:02:36.7383504Z 15:02:36.737 | [ 37/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_3A54F747DDED0D2B.mvfrm -2026-03-27T14:02:36.7395676Z 15:02:36.739 | [ 38/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConsentModule.dll_3F5E1EBF8014A3BE.mvfrm -2026-03-27T14:02:36.7405892Z 15:02:36.739 | [ 39/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_06D3CB67283CEDD5.mvfrm -2026-03-27T14:02:36.7416083Z 15:02:36.741 | [ 40/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_B629818778B532F4.mvfrm -2026-03-27T14:02:36.7472803Z 15:02:36.742 | [ 41/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_D681A3FFA64E7BED.mvfrm -2026-03-27T14:02:36.7501721Z 15:02:36.748 | [ 42/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_AE345D44F46D06F4.mvfrm -2026-03-27T14:02:36.7519801Z 15:02:36.751 | [ 43/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_8C217F9A8E0E80C6.mvfrm -2026-03-27T14:02:36.7537296Z 15:02:36.752 | [ 44/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_61FF825CBCAEC669.mvfrm -2026-03-27T14:02:36.7556202Z 15:02:36.754 | [ 45/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_DCA6D99DA63822CA.mvfrm -2026-03-27T14:02:36.7571030Z 15:02:36.756 | [ 46/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_DBC8AFF6F9FC295D.mvfrm -2026-03-27T14:02:36.7602124Z 15:02:36.758 | [ 47/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_DEAEB28C6A5EE536.mvfrm -2026-03-27T14:02:36.7623099Z 15:02:36.761 | [ 48/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_6395C2861DDBFF6B.mvfrm -2026-03-27T14:02:36.7631076Z 15:02:36.762 | [ 49/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_C3031ADBA4F1E560.mvfrm -2026-03-27T14:02:36.7640914Z 15:02:36.763 | [ 50/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_B90D563E0027879B.mvfrm -2026-03-27T14:02:36.7661553Z 15:02:36.764 | [ 51/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_A9F5FBDCF140CAFD.mvfrm -2026-03-27T14:02:36.7695583Z 15:02:36.769 | [ 52/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_73C65477DC681167.mvfrm -2026-03-27T14:02:36.7717698Z 15:02:36.770 | [ 53/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_DC6241F4B4D4898D.mvfrm -2026-03-27T14:02:36.7738489Z 15:02:36.772 | [ 54/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_3F48957B22F8E2EA.mvfrm -2026-03-27T14:02:36.7833423Z 15:02:36.775 | [ 55/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_1A7301B471EB078C.mvfrm -2026-03-27T14:02:36.7862381Z 15:02:36.784 | [ 56/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ShaderRuntimeModule.dll_C93FDA002B5C805E.mvfrm -2026-03-27T14:02:36.7884932Z 15:02:36.787 | [ 57/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_B3676792EF00A2D5.mvfrm -2026-03-27T14:02:36.7894646Z 15:02:36.788 | [ 58/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RenderAs2DModule.dll_C48F24AF53CEFBE3.mvfrm -2026-03-27T14:02:36.7919615Z 15:02:36.789 | [ 59/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_A46D97892CF902AD.mvfrm -2026-03-27T14:02:36.7928536Z 15:02:36.792 | [ 60/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_835762297474B1AC.mvfrm -2026-03-27T14:02:36.7934396Z 15:02:36.792 | [ 61/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_A8BC9F6CCF339C72.mvfrm -2026-03-27T14:02:36.7939639Z 15:02:36.793 | [ 62/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_747344950649C9E4.mvfrm -2026-03-27T14:02:36.7947538Z 15:02:36.794 | [ 63/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsBackendPhysXModule.dll_1B76D6B56E56B8D4.mvfrm -2026-03-27T14:02:36.7956366Z 15:02:36.795 | [ 64/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_631B19B3049904DE.mvfrm -2026-03-27T14:02:36.7970928Z 15:02:36.795 | [ 65/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_02CDC5B20AEE06AF.mvfrm -2026-03-27T14:02:36.7979462Z 15:02:36.797 | [ 66/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MultiplayerModule.dll_DA0D43A9DF8D66D5.mvfrm -2026-03-27T14:02:36.7986963Z 15:02:36.798 | [ 67/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.dll.mvfrm.rsp -2026-03-27T14:02:36.7993351Z 15:02:36.798 | [ 68/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.rsp2 -2026-03-27T14:02:36.8070407Z 15:02:36.800 | [ 69/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.rsp -2026-03-27T14:02:36.8142862Z 15:02:36.812 | [ 70/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.UnityAdditionalFile.txt -2026-03-27T14:02:36.8205412Z 15:02:36.815 | [ 71/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.dll.mvfrm.rsp -2026-03-27T14:02:36.8229162Z 15:02:36.822 | [ 72/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.rsp2 -2026-03-27T14:02:36.8249103Z 15:02:36.823 | [ 73/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.rsp -2026-03-27T14:02:36.8257503Z 15:02:36.825 | [ 74/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.rsp2 -2026-03-27T14:02:36.8265038Z 15:02:36.826 | [ 75/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.UnityAdditionalFile.txt -2026-03-27T14:02:36.8274306Z 15:02:36.826 | [ 76/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.UnityAdditionalFile.txt -2026-03-27T14:02:36.8295400Z 15:02:36.827 | [ 77/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.dll.mvfrm.rsp -2026-03-27T14:02:36.8317145Z 15:02:36.830 | [ 78/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.dll.mvfrm.rsp -2026-03-27T14:02:36.8337640Z 15:02:36.832 | [ 79/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.rsp -2026-03-27T14:02:36.8344010Z 15:02:36.834 | [ 80/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.rsp -2026-03-27T14:02:36.8353129Z 15:02:36.834 | [ 81/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.rsp2 -2026-03-27T14:02:36.8362234Z 15:02:36.835 | [ 82/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.UnityAdditionalFile.txt -2026-03-27T14:02:36.8427825Z 15:02:36.836 | [ 83/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.dll.mvfrm.rsp -2026-03-27T14:02:36.8469827Z 15:02:36.843 | [ 84/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.rsp2 -2026-03-27T14:02:36.8488863Z 15:02:36.847 | [ 85/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.rsp -2026-03-27T14:02:36.8522368Z 15:02:36.850 | [ 86/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.UnityAdditionalFile.txt -2026-03-27T14:02:36.8565321Z 15:02:36.852 | [ 87/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.dll.mvfrm.rsp -2026-03-27T14:02:36.8582507Z 15:02:36.857 | [ 88/123 0s] WriteText Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.rsp -2026-03-27T14:02:36.8591140Z 15:02:36.858 | [ 89/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_A1CA9D1F61C6AC25.mvfrm -2026-03-27T14:02:36.8613519Z 15:02:36.859 | [ 90/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_3E4242ECC185D282.mvfrm -2026-03-27T14:02:36.8630978Z 15:02:36.862 | [ 91/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_997FBA0DDA947673.mvfrm -2026-03-27T14:02:36.8644300Z 15:02:36.863 | [ 92/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_EBAA423BBEB78F4E.mvfrm -2026-03-27T14:02:36.8660615Z 15:02:36.865 | [ 93/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.dll.mvfrm -2026-03-27T14:02:36.8669372Z 15:02:36.866 | [ 94/123 1s] Csc Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.dll (+2 others) -2026-03-27T14:02:36.8682188Z 15:02:36.867 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/UnityEngine.UI.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:02:36.8725054Z 15:02:36.868 | [ 95/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/UnityEngine.UI.pdb -2026-03-27T14:02:36.8753903Z 15:02:36.873 | [ 96/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/UnityEngine.UI.dll -2026-03-27T14:02:36.8769429Z 15:02:36.875 | [ 97/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_F38624DBC6150D7F.mvfrm -2026-03-27T14:02:36.8796608Z 15:02:36.878 | [ 98/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.dll.mvfrm -2026-03-27T14:02:36.8814272Z 15:02:36.880 | [ 99/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.dll.mvfrm -2026-03-27T14:02:36.8843877Z 15:02:36.881 | [100/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.dll.mvfrm -2026-03-27T14:02:36.8882708Z 15:02:36.885 | [101/123 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) -2026-03-27T14:02:36.8914690Z 15:02:36.889 | [102/123 0s] Csc Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.dll (+2 others) -2026-03-27T14:02:36.8923148Z 15:02:36.891 | [103/123 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.dll (+2 others) -2026-03-27T14:02:36.8932258Z 15:02:36.892 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/io.sentry.unity.runtime.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:02:36.8946830Z 15:02:36.893 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.InternalAPIEngineBridge.004.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:02:36.8960821Z 15:02:36.894 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.Multiplayer.Center.Common.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:02:36.8974638Z 15:02:36.896 | [104/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/io.sentry.unity.runtime.pdb -2026-03-27T14:02:36.9047443Z 15:02:36.898 | [105/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/io.sentry.unity.runtime.dll -2026-03-27T14:02:36.9056989Z 15:02:36.905 | [106/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.004.pdb -2026-03-27T14:02:36.9069947Z 15:02:36.906 | [107/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.Multiplayer.Center.Common.pdb -2026-03-27T14:02:36.9087869Z 15:02:36.907 | [108/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.004.dll -2026-03-27T14:02:36.9104879Z 15:02:36.909 | [109/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.Multiplayer.Center.Common.dll -2026-03-27T14:02:36.9124987Z 15:02:36.910 | [110/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.InternalAPIEngineBridge.004.ref.dll_4650A87F6EC3B9B7.mvfrm -2026-03-27T14:02:36.9165347Z 15:02:36.913 | [111/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Multiplayer.Center.Common.ref.dll_9B93ACF4F442A639.mvfrm -2026-03-27T14:02:36.9251392Z 15:02:36.916 | [112/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.dll.mvfrm -2026-03-27T14:02:36.9331931Z 15:02:36.926 | [113/123 1s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.dll (+2 others) -2026-03-27T14:02:36.9404028Z 15:02:36.937 | [ 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Unity.TextMeshPro.dll (+2 others) [CacheWrite 00000000000000000000000000000005] -2026-03-27T14:02:36.9413500Z 15:02:36.941 | [114/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.TextMeshPro.pdb -2026-03-27T14:02:36.9426380Z 15:02:36.941 | [115/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Unity.TextMeshPro.dll -2026-03-27T14:02:36.9450618Z 15:02:36.943 | [116/123 0s] MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_792D1FDDCD965D6C.mvfrm -2026-03-27T14:02:36.9469439Z 15:02:36.945 | [117/123 0s] MovedFromExtractor-Combine Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.dll.mvfrm -2026-03-27T14:02:36.9482002Z 15:02:36.947 | [118/123 0s] Csc Library/Bee/artifacts/4200b0aP.dag/Assembly-CSharp.dll (+2 others) -2026-03-27T14:02:36.9504207Z 15:02:36.949 | [119/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.dll -2026-03-27T14:02:36.9514538Z 15:02:36.950 | [120/123 0s] CopyFiles Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.pdb -2026-03-27T14:02:36.9524017Z 15:02:36.951 | [122/123 0s] BuildPlayerDataGenerator Library/BuildPlayerData/Player/RuntimeInitializeOnLoads.json (+1 other) -2026-03-27T14:02:36.9535124Z 15:02:36.953 | *** Tundra build success (13.16 seconds), 121 items updated, 123 evaluated -2026-03-27T14:02:36.9543106Z 15:02:36.953 | Start importing Packages/io.sentry.unity/Textures/Logo.png using Guid(d0c73c7edf6ed43b698bca840264c8a4) (TextureImporter) -> (artifact id: '71d585f04b8d9133d58c7abe7baca250') in 0.0158471 seconds -2026-03-27T14:02:36.9572161Z 15:02:36.954 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignRight_Light.psd using Guid(e05ace3bd15740cda0bad60d89092a5b) (TextureImporter) -> (artifact id: 'ddfbc51f93b7fc1ddf336dd389df1d34') in 0.0062855 seconds -2026-03-27T14:02:36.9579172Z 15:02:36.957 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageInstalled@2x.png using Guid(318df756abab5463e9aa361360784865) (TextureImporter) -> (artifact id: 'd23e46c24a6316b5c22d6fc112c4bd03') in 0.007322 seconds -2026-03-27T14:02:36.9602911Z 15:02:36.958 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMiddle.psd using Guid(41b96614b2e6494ba995ddcd252d11ae) (TextureImporter) -> (artifact id: '58767caa070046e6b0abc99e9d670ea3') in 0.0066789 seconds -2026-03-27T14:02:36.9624337Z 15:02:36.961 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenter.psd using Guid(81ed8c76d2bc4a4c95d092c98af4e58f) (TextureImporter) -> (artifact id: 'aa69e8c7ce2c58191ffa34464f1f981a') in 0.0073315 seconds -2026-03-27T14:02:36.9672897Z 15:02:36.964 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignLeft_Light.psd using Guid(12736c98af174f91827a26b66d2b01b9) (TextureImporter) -> (artifact id: '7bd2ed10a5b544f2ef1c93395803bb78') in 0.0085572 seconds -2026-03-27T14:02:36.9750187Z 15:02:36.969 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Loading.png using Guid(424a8de5def3b46dcb08edd00ad1c7bd) (TextureImporter) -> (artifact id: '9ab0b6e0b69716ffe72a24824f85b18f') in 0.0092967 seconds -2026-03-27T14:02:36.9794471Z 15:02:36.975 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Package.png using Guid(525a6cca8dd9a4d28875a8fe824710d9) (TextureImporter) -> (artifact id: '8a2df3d0bbfa4e51dfb795efc7f87404') in 0.0103061 seconds -2026-03-27T14:02:36.9839458Z 15:02:36.982 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignJustified.psd using Guid(92027f7f8cfc4feaa477da0dc38d3d46) (TextureImporter) -> (artifact id: 'cd86364e1c2fba7721e884688d2725fb') in 0.0056639 seconds -2026-03-27T14:02:36.9853731Z 15:02:36.984 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignLeft.psd using Guid(9288066c33474b94b6ee5465f4df1cc0) (TextureImporter) -> (artifact id: '01762a5647f0d81e682f34c8f123b2f5') in 0.0055481 seconds -2026-03-27T14:02:36.9865313Z 15:02:36.985 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CloudCode@2x.png using Guid(a23c0dd570fd44b57a03a8880002fcca) (TextureImporter) -> (artifact id: '64efb5b4e15853372052fc4c36c457b8') in 0.0072647 seconds -2026-03-27T14:02:36.9889010Z 15:02:36.987 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/ClientHosted.png using Guid(b2ce704e56cc84fb3b347499263c6244) (TextureImporter) -> (artifact id: '74438893554a85aa758650d3a98243d5') in 0.0067706 seconds -2026-03-27T14:02:36.9900155Z 15:02:36.989 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMidLine.psd using Guid(c2f7f6a88b4c4f20a53deb72f3d9144c) (TextureImporter) -> (artifact id: 'a9df641fc5ee6742b082301165b8a9e9') in 0.0060402 seconds -2026-03-27T14:02:36.9915632Z 15:02:36.990 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DistributedAuthority@2x.png using Guid(0354877031b64465ea7e5cafea1a2653) (TextureImporter) -> (artifact id: 'a3d3318ded2aa6ae7905198f84486361') in 0.0076677 seconds -2026-03-27T14:02:36.9932116Z 15:02:36.992 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NGO@2x.png using Guid(83b28bcaaf34b4fd580114fb05d9f160) (TextureImporter) -> (artifact id: 'e806547cc700328c8b4cbb4977fbd7dd') in 0.0076754 seconds -2026-03-27T14:02:37.0014202Z 15:02:36.994 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/SectionHeader_Light.psd using Guid(e3b0f810fdea84e40ab4ba20f256f7e8) (TextureImporter) -> (artifact id: 'e86c4ffdf88416de3331f204138e3727') in 0.0058398 seconds -2026-03-27T14:02:37.0024611Z 15:02:37.001 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageInstalled@2x.png using Guid(0423146d9f51c4563a0f2a8200b6cd38) (TextureImporter) -> (artifact id: '952d9d0253a43f8c1ae0af2f9d1a6517') in 0.0064565 seconds -2026-03-27T14:02:37.0081384Z 15:02:37.006 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignRight.psd using Guid(342a0f8aca7f4f0691338912faec0494) (TextureImporter) -> (artifact id: 'a812b5aa7dfa9728d8cd32333d00f869') in 0.0056102 seconds -2026-03-27T14:02:37.0094040Z 15:02:37.008 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignFlush_Light.psd using Guid(64b9fad609434c489c32b1cdf2004a1c) (TextureImporter) -> (artifact id: '2a4fa51c2e638d3a145da522c5342d99') in 0.0054042 seconds -2026-03-27T14:02:37.0109685Z 15:02:37.010 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Questionnaire.png using Guid(741761e72e6f24446bd8ba03ea3d0261) (TextureImporter) -> (artifact id: 'ccd2b951d4b06ae346af8f495ff6e8d3') in 0.0122081 seconds -2026-03-27T14:02:37.0123687Z 15:02:37.011 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/EmptyViewIcon.png using Guid(84e4bbd00035e4671bf14e0380a89001) (TextureImporter) -> (artifact id: '15b8a10f9f5c3efd1e1781fcc68fe9ae') in 0.0118067 seconds -2026-03-27T14:02:37.0151196Z 15:02:37.013 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageManager@2x.png using Guid(9431e8221045c4af189b2fa7174b9e9f) (TextureImporter) -> (artifact id: 'f49805ba1559bb142aedcc8b1aa11b4f') in 0.0088245 seconds -2026-03-27T14:02:37.0159415Z 15:02:37.015 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenterGeo_Light.psd using Guid(35ff0937876540d3bd4b6a941df62a92) (TextureImporter) -> (artifact id: '7eaa830202474940807399c4ab6e148a') in 0.0060877 seconds -2026-03-27T14:02:37.0187989Z 15:02:37.016 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NoNetcode@2x.png using Guid(b58a826ca804e4c67bab4283ad5a6102) (TextureImporter) -> (artifact id: 'bee2b4b3ad8e047538ad76772a45f5f8') in 0.0068871 seconds -2026-03-27T14:02:37.0204108Z 15:02:37.019 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMiddle_Light.psd using Guid(066619c9c9c84f89acb1b48c11a7efe2) (TextureImporter) -> (artifact id: 'bbbf431048a19f9dd8ebe7656e89045e') in 0.0057998 seconds -2026-03-27T14:02:37.0248516Z 15:02:37.021 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageInstalled.png using Guid(4616b2fa4acd1429e931835b80966c2a) (TextureImporter) -> (artifact id: '7b506ef958c004753f0c935d3b8d41fd') in 0.0065112 seconds -2026-03-27T14:02:37.0326527Z 15:02:37.026 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageManager@2x.png using Guid(a6fd0c627f5aa48fa81512221e70a11e) (TextureImporter) -> (artifact id: '49c9690ffda9f754eb1afd498a083599') in 0.0060431 seconds -2026-03-27T14:02:37.0348997Z 15:02:37.033 | Start importing Packages/io.sentry.unity/Textures/Megaphone.png using Guid(c68f744cc289b4ab1823c5e1159527ec) (TextureImporter) -> (artifact id: '25b1e7abd587243ed1a5cb9b12fc35bd') in 0.0059278 seconds -2026-03-27T14:02:37.0377828Z 15:02:37.035 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DistributedAuthority.png using Guid(d63245ece6d8f476c8c7ca24da9937f6) (TextureImporter) -> (artifact id: 'c01625e3275e023647b242447a1679e1') in 0.0074247 seconds -2026-03-27T14:02:37.0394840Z 15:02:37.038 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/PackageManager.png using Guid(679f9999c6f8f497e806a2d5d0511879) (TextureImporter) -> (artifact id: '253cc19a1e7474bbe71adcfceeafc25e') in 0.0067904 seconds -2026-03-27T14:02:37.0410395Z 15:02:37.039 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageInstalled.png using Guid(77be953cf28de42a4ad8532539fef3f5) (TextureImporter) -> (artifact id: '14258019ae339570f3ea88ce5d5230a6') in 0.0065994 seconds -2026-03-27T14:02:37.0442088Z 15:02:37.041 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Dropdown Icon.psd using Guid(a7ec9e7ad8b847b7ae4510af83c5d868) (TextureImporter) -> (artifact id: 'fd4926603719fccce4722b6d4d90bc91') in 0.0074234 seconds -2026-03-27T14:02:37.0466776Z 15:02:37.045 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/ClientHosted@2x.png using Guid(c7a38e6eccbfc49778cb8b77f594a971) (TextureImporter) -> (artifact id: 'c141e00a9794988efaeb74a7c953fa75') in 0.0077966 seconds -2026-03-27T14:02:37.0477331Z 15:02:37.047 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenterGeo.psd using Guid(c76700ea0062413d9f69409b4e9e151b) (TextureImporter) -> (artifact id: '13bd0691fdf9dcb6f46371908466fc57') in 0.0061838 seconds -2026-03-27T14:02:37.0485633Z 15:02:37.048 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CustomNetcode@2x.png using Guid(d7711b0cc806d430b8a95f1e33ec3649) (TextureImporter) -> (artifact id: '18c16f5c9c055e2684094b77f4a67091') in 0.008195 seconds -2026-03-27T14:02:37.0494832Z 15:02:37.048 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBaseLine_Light.psd using Guid(18775b51e3bd42299fd30bd036ea982f) (TextureImporter) -> (artifact id: '61c21e2628cf621b9aaef075481aeece') in 0.006961 seconds -2026-03-27T14:02:37.0514564Z 15:02:37.049 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DedicatedServer@2x.png using Guid(38b78df4a34c94fa6a52c90239606ff1) (TextureImporter) -> (artifact id: '9d0283c90dca5df7e54b38703a66fecb') in 0.0097985 seconds -2026-03-27T14:02:37.0565749Z 15:02:37.053 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignTop.psd using Guid(48d034c499ee4697af9dd6e327110249) (TextureImporter) -> (artifact id: '98d4ae8c24b00fc2c5cd588553de8633') in 0.0064368 seconds -2026-03-27T14:02:37.0679639Z 15:02:37.058 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBottom_Light.psd using Guid(585b70cb75dd43efbfead809c30a1731) (TextureImporter) -> (artifact id: '29fcb8ff65619fc8857d4338a6d3b83a') in 0.0068199 seconds -2026-03-27T14:02:37.0722407Z 15:02:37.070 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Check.png using Guid(29395f0639574c1fbc8b729aa257fb84) (TextureImporter) -> (artifact id: '5364321af75cf853db1715b5da087d2e') in 0.0060922 seconds -2026-03-27T14:02:37.0804338Z 15:02:37.074 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCapLine_Light.psd using Guid(49679f302ac6408697f6b9314a38985c) (TextureImporter) -> (artifact id: '7abf577325374a6fd8cc076f65b00de8') in 0.0063597 seconds -2026-03-27T14:02:37.0864533Z 15:02:37.081 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignFlush.psd using Guid(691475c57a824010be0c6f474caeb7e1) (TextureImporter) -> (artifact id: '941c61e8d42bc40b8118cc5da2b267ff') in 0.0059924 seconds -2026-03-27T14:02:37.0986531Z 15:02:37.088 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NGO.png using Guid(99da7b3894f364efdb5fa1443952a55d) (TextureImporter) -> (artifact id: 'a822ecddf1a08f614df0972f36bde461') in 0.0076617 seconds -2026-03-27T14:02:37.1084186Z 15:02:37.102 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/N4E.png using Guid(e9669051ff70449b5923861e0e0b8838) (TextureImporter) -> (artifact id: 'c9ae61f635f30fff249c6005fe36e453') in 0.0067711 seconds -2026-03-27T14:02:37.1146940Z 15:02:37.112 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/EmptyViewIcon@2x.png using Guid(2adffcc506285402aa795dee6f3166d0) (TextureImporter) -> (artifact id: '08bd35c9a8ee3bcbd80069bef2b4b3f3') in 0.0246434 seconds -2026-03-27T14:02:37.1161640Z 15:02:37.115 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCenter_Light.psd using Guid(6ace62d30f494c948b71d5594afce11d) (TextureImporter) -> (artifact id: 'ef355fab0f252a523289ab28c74d152a') in 0.0058124 seconds -2026-03-27T14:02:37.1175856Z 15:02:37.117 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBottom.psd using Guid(ca51b19024094d1b87f3e07edb0a75fb) (TextureImporter) -> (artifact id: '0632cb7217e4a501f75a37aa3a668758') in 0.0055629 seconds -2026-03-27T14:02:37.1226557Z 15:02:37.120 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_Loading.png using Guid(dab91f148d99946e7b3c3a87ecf4b973) (TextureImporter) -> (artifact id: 'a8ca8559ae8b5b52cb663fa83f28e3a6') in 0.0079896 seconds -2026-03-27T14:02:37.1243609Z 15:02:37.123 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignJustified_Light.psd using Guid(fa6bd40a216346b783a4cce741d277a5) (TextureImporter) -> (artifact id: '6758de326f04ce5c435f0612c74b3475') in 0.0063185 seconds -2026-03-27T14:02:37.1273695Z 15:02:37.126 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/d_PackageManager.png using Guid(1b4c88814ec6241eb8e327515399c006) (TextureImporter) -> (artifact id: 'a4b79d1fa81b2ca074942f7f4cda52f8') in 0.0061849 seconds -2026-03-27T14:02:37.1294666Z 15:02:37.128 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignBaseLine.psd using Guid(8bc445bb79654bf496c92d0407840a92) (TextureImporter) -> (artifact id: '7c6860ab3204dc8d2acba899bfe09a92') in 0.0066274 seconds -2026-03-27T14:02:37.1308465Z 15:02:37.130 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignMidline_Light.psd using Guid(bb42b2d967d6427983c901a4ffc8ecd9) (TextureImporter) -> (artifact id: 'f1a8ebe8143dcdcfc4b84ac95b6a0517') in 0.0076236 seconds -2026-03-27T14:02:37.1343707Z 15:02:37.131 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/SectionHeader_Dark.psd using Guid(fb5730e24283d0c489e5c7d0bee023d9) (TextureImporter) -> (artifact id: 'bbb9cc530d6f3cfa07b4cc03d26b1cdf') in 0.0070442 seconds -2026-03-27T14:02:37.1355121Z 15:02:37.134 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/N4E@2x.png using Guid(2cb589d4e01184d928bb698f06e77561) (TextureImporter) -> (artifact id: 'c5e319ef60177d1969dd4c5c80aa1b48') in 0.0079049 seconds -2026-03-27T14:02:37.1362487Z 15:02:37.135 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CustomNetcode.png using Guid(dce12af736e0a4a1ba35d6424f897dc9) (TextureImporter) -> (artifact id: 'b466ab8b55ce3c841b4632e2539f4022') in 0.0071928 seconds -2026-03-27T14:02:37.1388857Z 15:02:37.136 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Sprite Asset Icon.psd using Guid(ec7c645d93308c04d8840982af12101e) (TextureImporter) -> (artifact id: '65aa86a4b5deca378b7f5167ee4958b5') in 0.0083191 seconds -2026-03-27T14:02:37.1445710Z 15:02:37.141 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignCapLine.psd using Guid(0d9a36012a224080966c7b55896aa0f9) (TextureImporter) -> (artifact id: '9e826a23a26355d38995b095b964f44d') in 0.0062699 seconds -2026-03-27T14:02:37.1513535Z 15:02:37.147 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/NoNetcode.png using Guid(1daed49eec0f94f7ebb36dfef6159884) (TextureImporter) -> (artifact id: '2be54765fb31efd4fb21bbfa3f82bdd8') in 0.006977 seconds -2026-03-27T14:02:37.1539255Z 15:02:37.152 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Package.png using Guid(9d9689eab72c8480c90679f4dcf18820) (TextureImporter) -> (artifact id: '39172785cf7b4048236e2d04bd2fbc74') in 0.0067371 seconds -2026-03-27T14:02:37.1547698Z 15:02:37.154 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/CloudCode.png using Guid(ad1d29f4654194951a3c8bf507914d05) (TextureImporter) -> (artifact id: '1387b4758ec4b8b4590762d052044344') in 0.0078504 seconds -2026-03-27T14:02:37.1562333Z 15:02:37.155 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Questionnaire.png using Guid(dd70cd654275d47db807e918055e004f) (TextureImporter) -> (artifact id: 'f2d1caa176bb8bbbd192439a2b2172c2') in 0.0065404 seconds -2026-03-27T14:02:37.1572174Z 15:02:37.156 | Start importing Packages/com.unity.ugui/Editor Resources/Textures/btn_AlignTop_Light.psd using Guid(ed041e68439749a69d0efa0e3d896c2e) (TextureImporter) -> (artifact id: '8b603a07da54e1072bd04293154e7ba5') in 0.0080526 seconds -2026-03-27T14:02:37.1586025Z 15:02:37.158 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Input Field Icon.psd using Guid(3ee40aa79cd242a5b53b0b0ca4f13f0f) (TextureImporter) -> (artifact id: '1cf353fa14dd01a80ff680d060d2792a') in 0.0067051 seconds -2026-03-27T14:02:37.1595605Z 15:02:37.159 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Font Asset Icon.psd using Guid(ee148e281f3c41c5b4ff5f8a5afe5a6c) (TextureImporter) -> (artifact id: 'ce3191934df1d5f2ec47e9b86ad004bc') in 0.0076279 seconds -2026-03-27T14:02:37.1612790Z 15:02:37.159 | Start importing Packages/com.unity.ugui/Editor Resources/Gizmos/TMP - Text Component Icon.psd using Guid(2fd6421f253b4ef1a19526541f9ffc0c) (TextureImporter) -2026-03-27T14:02:37.5759965Z 15:02:37.573 | -> (artifact id: 'fbaa9c05a2d9b973c9b84f7ad1d0d9dd') in 0.0064178 seconds -2026-03-27T14:02:37.5778854Z 15:02:37.576 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/DedicatedServer.png using Guid(3fe892784421e47f5aa40c2784a6cb3e) (TextureImporter) -> (artifact id: '1889836135d12e7c1f74c81bfba10c4f') in 0.0075786 seconds -2026-03-27T14:02:37.5800693Z 15:02:37.578 | Start importing Packages/com.unity.multiplayer.center/Editor/MultiplayerCenterWindow/UI/Icons/Check.png using Guid(4f78a544322c742b89e63fb68557b1d2) (TextureImporter) -> (artifact id: 'f64131f71a9cef4946dc973621f0a4be') in 0.0060541 seconds -2026-03-27T14:02:37.5811191Z 15:02:37.580 | Refreshing native plugins compatible for Editor in 8.36 ms, found 1 plugins. -2026-03-27T14:02:37.5823752Z 15:02:37.582 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:02:37.5834880Z 15:02:37.582 | Asset Pipeline Refresh (id=5dd063d12b47c6d4fa6b7816c66812fe): Total: 0.599 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) -2026-03-27T14:02:37.5842221Z 15:02:37.583 | Summary: -2026-03-27T14:02:37.5859219Z 15:02:37.584 | Imports: total=67 (actual=67, local cache=0, cache server=0) -2026-03-27T14:02:37.5865811Z 15:02:37.586 | Asset DB Process Time: managed=9 ms, native=572 ms -2026-03-27T14:02:37.5873822Z 15:02:37.586 | Asset DB Callback time: managed=6 ms, native=11 ms -2026-03-27T14:02:37.5892698Z 15:02:37.588 | Scripting: domain reloads=0, domain reload time=0 ms, compile time=0 ms, other=0 ms -2026-03-27T14:02:37.5902180Z 15:02:37.589 | Project Asset Count: scripts=223, non-scripts=151 -2026-03-27T14:02:37.5907901Z 15:02:37.590 | Asset File Changes: new=0, changed=0, moved=0, deleted=0 -2026-03-27T14:02:37.5913897Z 15:02:37.591 | Scan Filter Count: 0 -2026-03-27T14:02:37.5921455Z 15:02:37.591 | InvokeCustomDependenciesCallbacks: 0.001ms -2026-03-27T14:02:37.5928005Z 15:02:37.592 | InvokePackagesCallback: 0.001ms -2026-03-27T14:02:37.5934760Z 15:02:37.593 | ApplyChangesToAssetFolders: 0.149ms -2026-03-27T14:02:37.5941272Z 15:02:37.593 | Scan: 0.000ms -2026-03-27T14:02:37.5946880Z 15:02:37.594 | OnSourceAssetsModified: 0.001ms -2026-03-27T14:02:37.5979078Z 15:02:37.594 | CategorizeAssetsWithTransientArtifact: 0.002ms -2026-03-27T14:02:37.5986772Z 15:02:37.598 | ProcessAssetsWithTransientArtifactChanges: 0.014ms -2026-03-27T14:02:37.5992250Z 15:02:37.598 | CategorizeAssets: 1.229ms -2026-03-27T14:02:37.5998126Z 15:02:37.599 | ImportOutOfDateAssets: 548.613ms (2.538ms without children) -2026-03-27T14:02:37.6004156Z 15:02:37.599 | ImportManagerImport: 545.789ms (2.449ms without children) -2026-03-27T14:02:37.6011143Z 15:02:37.600 | ImportInProcess: 543.031ms -2026-03-27T14:02:37.6018292Z 15:02:37.601 | UpdateCategorizedAssets: 0.309ms -2026-03-27T14:02:37.6022497Z 15:02:37.601 | ReloadNativeAssets: 0.005ms -2026-03-27T14:02:37.6027979Z 15:02:37.602 | UnloadImportedAssets: 0.005ms -2026-03-27T14:02:37.6042960Z 15:02:37.602 | ReloadImportedAssets: 0.005ms -2026-03-27T14:02:37.6053820Z 15:02:37.605 | EnsureUptoDateAssetsAreRegisteredWithGuidPM: 0.042ms -2026-03-27T14:02:37.6058878Z 15:02:37.605 | InitializingProgressBar: 0.005ms -2026-03-27T14:02:37.6065388Z 15:02:37.606 | PostProcessAllAssetNotificationsAddChangedAssets: 0.003ms -2026-03-27T14:02:37.6072679Z 15:02:37.606 | OnDemandSchedulerStart: 0.221ms -2026-03-27T14:02:37.6080284Z 15:02:37.607 | PostProcessAllAssets: 9.069ms -2026-03-27T14:02:37.6089057Z 15:02:37.608 | Hotreload: 8.619ms -2026-03-27T14:02:37.6094591Z 15:02:37.609 | GatherAllCurrentPrimaryArtifactRevisions: 0.021ms -2026-03-27T14:02:37.6103474Z 15:02:37.609 | UnloadStreamsBegin: 0.162ms -2026-03-27T14:02:37.6110563Z 15:02:37.610 | PersistCurrentRevisions: 0.521ms -2026-03-27T14:02:37.6117471Z 15:02:37.611 | UnloadStreamsEnd: 0.001ms -2026-03-27T14:02:37.6122504Z 15:02:37.611 | Untracked: 30.994ms -2026-03-27T14:02:37.6130413Z 15:02:37.612 | -2026-03-27T14:02:37.6137576Z 15:02:37.613 | Asset Pipeline Refresh (id=83db5f0270133704083f4ff3252888de): Total: 0.010 seconds - Initiated by RefreshV2(NoUpdateAssetOptions) -2026-03-27T14:02:37.6143791Z 15:02:37.614 | Total cache size 269715860 -2026-03-27T14:02:37.6149184Z 15:02:37.614 | Total cache size after purge 268013192, took 00:00:01.0169213 -2026-03-27T14:02:38.0218977Z 15:02:38.021 | Opening scene 'Assets/Scenes/Test.unity' -2026-03-27T14:02:38.0225924Z 15:02:38.022 | Unloading 1 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:02:38.0231268Z 15:02:38.022 | LightingSettings: switching bake backend from 2 to 1. -2026-03-27T14:02:38.0237326Z 15:02:38.023 | Loaded scene 'Assets/Scenes/Test.unity' -2026-03-27T14:02:38.0243407Z 15:02:38.023 | Deserialize: 7.170 ms -2026-03-27T14:02:38.0251056Z 15:02:38.024 | Integration: 31.884 ms -2026-03-27T14:02:38.0257712Z 15:02:38.025 | Integration of assets: 0.003 ms -2026-03-27T14:02:38.0264226Z 15:02:38.025 | Thread Wait Time: 0.018 ms -2026-03-27T14:02:38.0270232Z 15:02:38.026 | Total Operation Time: 39.075 ms -2026-03-27T14:02:38.0276865Z 15:02:38.027 | Unloading 70 unused Assets / (0.8 MB). Loaded Objects now: 1141. -2026-03-27T14:02:38.0282909Z 15:02:38.027 | Memory consumption went from 111.3 MB to 110.5 MB. -2026-03-27T14:02:38.0289482Z 15:02:38.028 | Total: 7.769600 ms (FindLiveObjects: 0.072800 ms CreateObjectMapping: 0.017600 ms MarkObjects: 7.239300 ms DeleteObjects: 0.438800 ms) -2026-03-27T14:02:38.0295698Z 15:02:38.029 | -2026-03-27T14:02:38.4449237Z 15:02:38.443 | Created GICache directory at C:/Users/github-runner/AppData/LocalLow/Unity/Caches/GiCache. Took: 0.077s, timestamps: [33.264 - 33.342] -2026-03-27T14:02:40.4842609Z 15:02:40.483 | -2026-03-27T14:02:40.4849607Z 15:02:40.484 | -2026-03-27T14:02:40.4856620Z 15:02:40.485 | Mono dependencies included in the build -2026-03-27T14:02:40.4862973Z 15:02:40.485 | Dependency assembly - I18N.MidEast.dll -2026-03-27T14:02:40.4870277Z 15:02:40.486 | Dependency assembly - System.Net.dll -2026-03-27T14:02:40.4877910Z 15:02:40.487 | Dependency assembly - System.Runtime.Serialization.Xml.dll -2026-03-27T14:02:40.4885098Z 15:02:40.487 | Dependency assembly - System.Security.Cryptography.Encoding.dll -2026-03-27T14:02:40.4892941Z 15:02:40.488 | Dependency assembly - System.Net.Primitives.dll -2026-03-27T14:02:40.4898513Z 15:02:40.489 | Dependency assembly - System.Threading.Overlapped.dll -2026-03-27T14:02:40.4905572Z 15:02:40.489 | Dependency assembly - System.Runtime.Serialization.Primitives.dll -2026-03-27T14:02:40.4913425Z 15:02:40.490 | Dependency assembly - Unity.InternalAPIEngineBridge.004.dll -2026-03-27T14:02:40.4920823Z 15:02:40.491 | Dependency assembly - System.Threading.ThreadPool.dll -2026-03-27T14:02:40.4929246Z 15:02:40.492 | Dependency assembly - System.Collections.NonGeneric.dll -2026-03-27T14:02:40.4935531Z 15:02:40.493 | Dependency assembly - System.ComponentModel.DataAnnotations.dll -2026-03-27T14:02:40.4944133Z 15:02:40.493 | Dependency assembly - Mono.Data.Tds.dll -2026-03-27T14:02:40.4950178Z 15:02:40.494 | Dependency assembly - System.IdentityModel.Selectors.dll -2026-03-27T14:02:40.4956773Z 15:02:40.495 | Dependency assembly - System.Runtime.Handles.dll -2026-03-27T14:02:40.4962485Z 15:02:40.495 | Dependency assembly - System.Collections.Specialized.dll -2026-03-27T14:02:40.4968239Z 15:02:40.496 | Dependency assembly - System.Drawing.dll -2026-03-27T14:02:40.4974324Z 15:02:40.497 | Dependency assembly - System.DirectoryServices.dll -2026-03-27T14:02:40.4980373Z 15:02:40.497 | Dependency assembly - System.Net.WebSockets.dll -2026-03-27T14:02:40.4992360Z 15:02:40.498 | Dependency assembly - System.Security.Cryptography.Hashing.Algorithms.dll -2026-03-27T14:02:40.4998507Z 15:02:40.499 | Dependency assembly - System.Messaging.dll -2026-03-27T14:02:40.5004677Z 15:02:40.500 | Dependency assembly - System.Json.dll -2026-03-27T14:02:40.5013684Z 15:02:40.500 | Dependency assembly - System.Web.RegularExpressions.dll -2026-03-27T14:02:40.5023061Z 15:02:40.501 | Dependency assembly - System.Security.Cryptography.Encryption.ECDsa.dll -2026-03-27T14:02:40.5028982Z 15:02:40.502 | Dependency assembly - Sentry.System.Numerics.Vectors.dll -2026-03-27T14:02:40.5033855Z 15:02:40.502 | Dependency assembly - System.Drawing.Primitives.dll -2026-03-27T14:02:40.5040697Z 15:02:40.503 | Dependency assembly - System.Reflection.Emit.Lightweight.dll -2026-03-27T14:02:40.5048258Z 15:02:40.504 | Dependency assembly - Mono.Data.Sqlite.dll -2026-03-27T14:02:40.5055085Z 15:02:40.504 | Dependency assembly - Sentry.System.Runtime.CompilerServices.Unsafe.dll -2026-03-27T14:02:40.5062546Z 15:02:40.505 | Dependency assembly - System.Xml.XPath.XmlDocument.dll -2026-03-27T14:02:40.5069920Z 15:02:40.506 | Dependency assembly - System.ServiceModel.Internals.dll -2026-03-27T14:02:40.5075428Z 15:02:40.507 | Dependency assembly - System.ServiceModel.Discovery.dll -2026-03-27T14:02:40.5081470Z 15:02:40.507 | Dependency assembly - System.Data.Services.dll -2026-03-27T14:02:40.5087218Z 15:02:40.508 | Dependency assembly - System.dll -2026-03-27T14:02:40.5093682Z 15:02:40.508 | Dependency assembly - Assembly-CSharp.dll -2026-03-27T14:02:40.5098586Z 15:02:40.509 | Dependency assembly - I18N.dll -2026-03-27T14:02:40.5104264Z 15:02:40.510 | Dependency assembly - System.ServiceModel.NetTcp.dll -2026-03-27T14:02:40.5109442Z 15:02:40.510 | Dependency assembly - mscorlib.dll -2026-03-27T14:02:40.5116000Z 15:02:40.511 | Dependency assembly - System.Console.dll -2026-03-27T14:02:40.5123575Z 15:02:40.511 | Dependency assembly - Mono.Security.dll -2026-03-27T14:02:40.5130216Z 15:02:40.512 | Dependency assembly - System.Net.NameResolution.dll -2026-03-27T14:02:40.5136492Z 15:02:40.513 | Dependency assembly - System.Resources.ResourceManager.dll -2026-03-27T14:02:40.5143231Z 15:02:40.513 | Dependency assembly - System.Security.Cryptography.Cng.dll -2026-03-27T14:02:40.5157823Z 15:02:40.515 | Dependency assembly - System.Threading.AccessControl.dll -2026-03-27T14:02:40.5164988Z 15:02:40.516 | Dependency assembly - System.Runtime.Numerics.dll -2026-03-27T14:02:40.5171851Z 15:02:40.516 | Dependency assembly - System.Runtime.CompilerServices.VisualC.dll -2026-03-27T14:02:40.5179097Z 15:02:40.517 | Dependency assembly - System.Security.Cryptography.Algorithms.dll -2026-03-27T14:02:40.5187162Z 15:02:40.518 | Dependency assembly - System.Web.Extensions.dll -2026-03-27T14:02:40.5196680Z 15:02:40.518 | Dependency assembly - System.Diagnostics.Debug.dll -2026-03-27T14:02:40.5204227Z 15:02:40.520 | Dependency assembly - System.Diagnostics.FileVersionInfo.dll -2026-03-27T14:02:40.5211304Z 15:02:40.520 | Dependency assembly - Sentry.System.Memory.dll -2026-03-27T14:02:40.5218821Z 15:02:40.521 | Dependency assembly - System.Xml.XPath.dll -2026-03-27T14:02:40.5226216Z 15:02:40.522 | Dependency assembly - System.Net.Ping.dll -2026-03-27T14:02:40.5232889Z 15:02:40.522 | Dependency assembly - System.Text.Encoding.CodePages.dll -2026-03-27T14:02:40.5238637Z 15:02:40.523 | Dependency assembly - System.Security.Cryptography.Encryption.dll -2026-03-27T14:02:40.5245281Z 15:02:40.524 | Dependency assembly - System.Windows.Forms.DataVisualization.dll -2026-03-27T14:02:40.5252195Z 15:02:40.524 | Dependency assembly - System.Globalization.Extensions.dll -2026-03-27T14:02:40.5261492Z 15:02:40.525 | Dependency assembly - System.Security.Cryptography.Primitives.dll -2026-03-27T14:02:40.5267629Z 15:02:40.526 | Dependency assembly - Sentry.System.Text.Encodings.Web.dll -2026-03-27T14:02:40.5272737Z 15:02:40.526 | Dependency assembly - System.Reflection.Primitives.dll -2026-03-27T14:02:40.5278056Z 15:02:40.527 | Dependency assembly - System.ServiceModel.dll -2026-03-27T14:02:40.5283275Z 15:02:40.527 | Dependency assembly - System.Security.SecureString.dll -2026-03-27T14:02:40.5288833Z 15:02:40.528 | Dependency assembly - System.Threading.Tasks.Extensions.dll -2026-03-27T14:02:40.5295331Z 15:02:40.529 | Dependency assembly - System.IO.FileSystem.AccessControl.dll -2026-03-27T14:02:40.5301541Z 15:02:40.529 | Dependency assembly - System.ObjectModel.dll -2026-03-27T14:02:40.5318921Z 15:02:40.530 | Dependency assembly - I18N.Other.dll -2026-03-27T14:02:40.5326618Z 15:02:40.532 | Dependency assembly - System.AppContext.dll -2026-03-27T14:02:40.5333699Z 15:02:40.533 | Dependency assembly - System.Data.OracleClient.dll -2026-03-27T14:02:40.5342698Z 15:02:40.533 | Dependency assembly - System.Diagnostics.Tracing.dll -2026-03-27T14:02:40.5349792Z 15:02:40.534 | Dependency assembly - System.ServiceModel.Routing.dll -2026-03-27T14:02:40.5355362Z 15:02:40.535 | Dependency assembly - System.Windows.Forms.dll -2026-03-27T14:02:40.5361540Z 15:02:40.535 | Dependency assembly - Microsoft.Win32.Registry.dll -2026-03-27T14:02:40.5368623Z 15:02:40.536 | Dependency assembly - System.Runtime.Remoting.dll -2026-03-27T14:02:40.5375141Z 15:02:40.537 | Dependency assembly - System.Security.Cryptography.Csp.dll -2026-03-27T14:02:40.5381823Z 15:02:40.537 | Dependency assembly - System.Windows.dll -2026-03-27T14:02:40.5387705Z 15:02:40.538 | Dependency assembly - System.Security.Cryptography.DeriveBytes.dll -2026-03-27T14:02:40.5394184Z 15:02:40.538 | Dependency assembly - System.Net.Cache.dll -2026-03-27T14:02:40.5403115Z 15:02:40.539 | Dependency assembly - System.Threading.Tasks.dll -2026-03-27T14:02:40.5409617Z 15:02:40.540 | Dependency assembly - System.Security.Cryptography.Hashing.dll -2026-03-27T14:02:40.5415822Z 15:02:40.541 | Dependency assembly - System.Net.Sockets.dll -2026-03-27T14:02:40.5421511Z 15:02:40.541 | Dependency assembly - System.Text.Encoding.Extensions.dll -2026-03-27T14:02:40.5429543Z 15:02:40.542 | Dependency assembly - System.Drawing.Design.dll -2026-03-27T14:02:40.5437544Z 15:02:40.543 | Dependency assembly - System.Security.Claims.dll -2026-03-27T14:02:40.5443027Z 15:02:40.543 | Dependency assembly - System.Linq.Queryable.dll -2026-03-27T14:02:40.5448791Z 15:02:40.544 | Dependency assembly - System.Xml.ReaderWriter.dll -2026-03-27T14:02:40.5457043Z 15:02:40.545 | Dependency assembly - System.DirectoryServices.Protocols.dll -2026-03-27T14:02:40.5468485Z 15:02:40.545 | Dependency assembly - System.ServiceProcess.dll -2026-03-27T14:02:40.5480799Z 15:02:40.547 | Dependency assembly - System.Linq.dll -2026-03-27T14:02:40.5487996Z 15:02:40.548 | Dependency assembly - System.Reflection.TypeExtensions.dll -2026-03-27T14:02:40.5494126Z 15:02:40.548 | Dependency assembly - Sentry.System.Text.Json.dll -2026-03-27T14:02:40.5502044Z 15:02:40.549 | Dependency assembly - System.Runtime.InteropServices.WindowsRuntime.dll -2026-03-27T14:02:40.5506966Z 15:02:40.550 | Dependency assembly - System.Xaml.dll -2026-03-27T14:02:40.5514469Z 15:02:40.551 | Dependency assembly - System.Resources.ReaderWriter.dll -2026-03-27T14:02:40.5519543Z 15:02:40.551 | Dependency assembly - System.Numerics.dll -2026-03-27T14:02:40.5525102Z 15:02:40.552 | Dependency assembly - System.Data.Services.Client.dll -2026-03-27T14:02:40.5532052Z 15:02:40.552 | Dependency assembly - Accessibility.dll -2026-03-27T14:02:40.5537905Z 15:02:40.553 | Dependency assembly - I18N.Rare.dll -2026-03-27T14:02:40.5544495Z 15:02:40.554 | Dependency assembly - System.EnterpriseServices.dll -2026-03-27T14:02:40.5552193Z 15:02:40.554 | Dependency assembly - System.ComponentModel.Annotations.dll -2026-03-27T14:02:40.5558609Z 15:02:40.555 | Dependency assembly - System.Net.AuthenticationManager.dll -2026-03-27T14:02:40.5563748Z 15:02:40.555 | Dependency assembly - System.Runtime.InteropServices.RuntimeInformation.dll -2026-03-27T14:02:40.5569203Z 15:02:40.556 | Dependency assembly - System.Reflection.Context.dll -2026-03-27T14:02:40.5574892Z 15:02:40.557 | Dependency assembly - System.Resources.Writer.dll -2026-03-27T14:02:40.5580014Z 15:02:40.557 | Dependency assembly - System.Reflection.Extensions.dll -2026-03-27T14:02:40.5585123Z 15:02:40.558 | Dependency assembly - System.Security.Cryptography.Pkcs.dll -2026-03-27T14:02:40.5590188Z 15:02:40.558 | Dependency assembly - System.Resources.Reader.dll -2026-03-27T14:02:40.5595895Z 15:02:40.559 | Dependency assembly - System.Configuration.dll -2026-03-27T14:02:40.5601839Z 15:02:40.559 | Dependency assembly - System.ServiceModel.Web.dll -2026-03-27T14:02:40.5607853Z 15:02:40.560 | Dependency assembly - I18N.CJK.dll -2026-03-27T14:02:40.5618731Z 15:02:40.561 | Dependency assembly - System.ServiceProcess.ServiceController.dll -2026-03-27T14:02:40.5628364Z 15:02:40.562 | Dependency assembly - System.Collections.dll -2026-03-27T14:02:40.5633899Z 15:02:40.562 | Dependency assembly - System.Security.Cryptography.OpenSsl.dll -2026-03-27T14:02:40.5639121Z 15:02:40.563 | Dependency assembly - System.IO.FileSystem.Primitives.dll -2026-03-27T14:02:40.5644821Z 15:02:40.564 | Dependency assembly - System.Net.NetworkInformation.dll -2026-03-27T14:02:40.5650863Z 15:02:40.564 | Dependency assembly - Unity.Multiplayer.Center.Common.dll -2026-03-27T14:02:40.5656249Z 15:02:40.565 | Dependency assembly - System.Security.Principal.dll -2026-03-27T14:02:40.5661779Z 15:02:40.565 | Dependency assembly - System.IO.FileSystem.dll -2026-03-27T14:02:40.5667612Z 15:02:40.566 | Dependency assembly - System.Runtime.InteropServices.dll -2026-03-27T14:02:40.5672968Z 15:02:40.566 | Dependency assembly - System.Net.WebHeaderCollection.dll -2026-03-27T14:02:40.5678829Z 15:02:40.567 | Dependency assembly - System.Runtime.Serialization.Formatters.Soap.dll -2026-03-27T14:02:40.5685819Z 15:02:40.568 | Dependency assembly - System.Security.Cryptography.ProtectedData.dll -2026-03-27T14:02:40.5691076Z 15:02:40.568 | Dependency assembly - System.Linq.Expressions.dll -2026-03-27T14:02:40.5696392Z 15:02:40.569 | Dependency assembly - System.Linq.Parallel.dll -2026-03-27T14:02:40.5701388Z 15:02:40.569 | Dependency assembly - System.Diagnostics.Tools.dll -2026-03-27T14:02:40.5706405Z 15:02:40.570 | Dependency assembly - System.Security.Principal.Windows.dll -2026-03-27T14:02:40.5711490Z 15:02:40.570 | Dependency assembly - System.Web.Services.dll -2026-03-27T14:02:40.5716669Z 15:02:40.571 | Dependency assembly - Microsoft.Win32.Registry.AccessControl.dll -2026-03-27T14:02:40.5722322Z 15:02:40.571 | Dependency assembly - System.Runtime.Serialization.Json.dll -2026-03-27T14:02:40.5730192Z 15:02:40.572 | Dependency assembly - System.Data.Linq.dll -2026-03-27T14:02:40.5735887Z 15:02:40.573 | Dependency assembly - System.ComponentModel.EventBasedAsync.dll -2026-03-27T14:02:40.5741333Z 15:02:40.573 | Dependency assembly - UnityEngine.UI.dll -2026-03-27T14:02:40.5746396Z 15:02:40.574 | Dependency assembly - System.Memory.dll -2026-03-27T14:02:40.5752366Z 15:02:40.574 | Dependency assembly - Sentry.System.Threading.Tasks.Extensions.dll -2026-03-27T14:02:40.5757985Z 15:02:40.575 | Dependency assembly - System.Web.dll -2026-03-27T14:02:40.5763202Z 15:02:40.575 | Dependency assembly - System.Security.Cryptography.Encryption.Aes.dll -2026-03-27T14:02:40.5772002Z 15:02:40.576 | Dependency assembly - System.ValueTuple.dll -2026-03-27T14:02:40.5777614Z 15:02:40.577 | Dependency assembly - System.Net.Http.dll -2026-03-27T14:02:40.5783953Z 15:02:40.577 | Dependency assembly - System.ComponentModel.Primitives.dll -2026-03-27T14:02:40.5790326Z 15:02:40.578 | Dependency assembly - System.Diagnostics.Process.dll -2026-03-27T14:02:40.5797582Z 15:02:40.579 | Dependency assembly - System.Reflection.dll -2026-03-27T14:02:40.5803871Z 15:02:40.579 | Dependency assembly - System.Net.HttpListener.dll -2026-03-27T14:02:40.5812158Z 15:02:40.580 | Dependency assembly - System.Text.Encoding.dll -2026-03-27T14:02:40.5818589Z 15:02:40.581 | Dependency assembly - System.Xml.dll -2026-03-27T14:02:40.5823910Z 15:02:40.582 | Dependency assembly - System.Data.SqlClient.dll -2026-03-27T14:02:40.5828774Z 15:02:40.582 | Dependency assembly - Sentry.Unity.dll -2026-03-27T14:02:40.5834616Z 15:02:40.583 | Dependency assembly - System.Web.Extensions.Design.dll -2026-03-27T14:02:40.5840076Z 15:02:40.583 | Dependency assembly - I18N.West.dll -2026-03-27T14:02:40.5845318Z 15:02:40.584 | Dependency assembly - System.IO.Pipes.dll -2026-03-27T14:02:40.5851495Z 15:02:40.584 | Dependency assembly - Sentry.System.Collections.Immutable.dll -2026-03-27T14:02:40.5856971Z 15:02:40.585 | Dependency assembly - System.Security.AccessControl.dll -2026-03-27T14:02:40.5862627Z 15:02:40.585 | Dependency assembly - System.Xml.Serialization.dll -2026-03-27T14:02:40.5873280Z 15:02:40.586 | Dependency assembly - Unity.TextMeshPro.dll -2026-03-27T14:02:40.5879197Z 15:02:40.587 | Dependency assembly - System.Runtime.Caching.dll -2026-03-27T14:02:40.5884312Z 15:02:40.588 | Dependency assembly - System.IO.FileSystem.Watcher.dll -2026-03-27T14:02:40.5889402Z 15:02:40.588 | Dependency assembly - System.Xml.Linq.dll -2026-03-27T14:02:40.5895113Z 15:02:40.589 | Dependency assembly - Sentry.Microsoft.Bcl.AsyncInterfaces.dll -2026-03-27T14:02:40.5900214Z 15:02:40.589 | Dependency assembly - System.IO.UnmanagedMemoryStream.dll -2026-03-27T14:02:40.5905720Z 15:02:40.590 | Dependency assembly - System.Xml.XmlSerializer.dll -2026-03-27T14:02:40.5911314Z 15:02:40.590 | Dependency assembly - System.Text.RegularExpressions.dll -2026-03-27T14:02:40.5916205Z 15:02:40.591 | Dependency assembly - System.Core.dll -2026-03-27T14:02:40.5921321Z 15:02:40.591 | Dependency assembly - System.IO.dll -2026-03-27T14:02:40.5931977Z 15:02:40.592 | Dependency assembly - System.Collections.Concurrent.dll -2026-03-27T14:02:40.5938036Z 15:02:40.593 | Dependency assembly - System.Security.Cryptography.Encryption.ECDiffieHellman.dll -2026-03-27T14:02:40.5943036Z 15:02:40.593 | Dependency assembly - System.Web.ApplicationServices.dll -2026-03-27T14:02:40.5948383Z 15:02:40.594 | Dependency assembly - System.Data.Entity.dll -2026-03-27T14:02:40.5952346Z 15:02:40.594 | Dependency assembly - System.Security.Cryptography.X509Certificates.dll -2026-03-27T14:02:40.5957656Z 15:02:40.595 | Dependency assembly - System.Diagnostics.TraceSource.dll -2026-03-27T14:02:40.5962699Z 15:02:40.595 | Dependency assembly - System.Diagnostics.TextWriterTraceListener.dll -2026-03-27T14:02:40.5970641Z 15:02:40.596 | Dependency assembly - System.Xml.Xsl.Primitives.dll -2026-03-27T14:02:40.5975414Z 15:02:40.597 | Dependency assembly - System.Runtime.Serialization.Formatters.dll -2026-03-27T14:02:40.5984258Z 15:02:40.597 | Dependency assembly - System.ServiceModel.Primitives.dll -2026-03-27T14:02:40.5990605Z 15:02:40.598 | Dependency assembly - System.Net.ServicePoint.dll -2026-03-27T14:02:40.5996438Z 15:02:40.599 | Dependency assembly - System.Reflection.Emit.dll -2026-03-27T14:02:40.6003764Z 15:02:40.599 | Dependency assembly - System.IdentityModel.dll -2026-03-27T14:02:40.6024083Z 15:02:40.600 | Dependency assembly - System.Diagnostics.Contracts.dll -2026-03-27T14:02:40.6038024Z 15:02:40.603 | Dependency assembly - System.Net.Security.dll -2026-03-27T14:02:40.6044190Z 15:02:40.604 | Dependency assembly - System.ComponentModel.Composition.dll -2026-03-27T14:02:40.6050283Z 15:02:40.604 | Dependency assembly - System.Xml.XPath.XDocument.dll -2026-03-27T14:02:40.6055832Z 15:02:40.605 | Dependency assembly - System.ComponentModel.TypeConverter.dll -2026-03-27T14:02:40.6062003Z 15:02:40.605 | Dependency assembly - System.Globalization.Calendars.dll -2026-03-27T14:02:40.6066351Z 15:02:40.606 | Dependency assembly - System.ServiceModel.Security.dll -2026-03-27T14:02:40.6071732Z 15:02:40.606 | Dependency assembly - System.Configuration.Install.dll -2026-03-27T14:02:40.6077046Z 15:02:40.607 | Dependency assembly - System.Threading.Timer.dll -2026-03-27T14:02:40.6089742Z 15:02:40.608 | Dependency assembly - System.Security.Cryptography.RSA.dll -2026-03-27T14:02:40.6095034Z 15:02:40.609 | Dependency assembly - System.Runtime.DurableInstancing.dll -2026-03-27T14:02:40.6100185Z 15:02:40.609 | Dependency assembly - System.Runtime.Extensions.dll -2026-03-27T14:02:40.6106299Z 15:02:40.610 | Dependency assembly - Sentry.System.Reflection.Metadata.dll -2026-03-27T14:02:40.6115027Z 15:02:40.611 | Dependency assembly - io.sentry.unity.runtime.dll -2026-03-27T14:02:40.6121108Z 15:02:40.611 | Dependency assembly - System.Reflection.Emit.ILGeneration.dll -2026-03-27T14:02:40.6126001Z 15:02:40.612 | Dependency assembly - Sentry.Unity.Native.dll -2026-03-27T14:02:40.6132370Z 15:02:40.612 | Dependency assembly - System.Runtime.Serialization.dll -2026-03-27T14:02:40.6137602Z 15:02:40.613 | Dependency assembly - System.Dynamic.Runtime.dll -2026-03-27T14:02:40.6143162Z 15:02:40.613 | Dependency assembly - System.Data.DataSetExtensions.dll -2026-03-27T14:02:40.6148332Z 15:02:40.614 | Dependency assembly - System.IO.Compression.dll -2026-03-27T14:02:40.6153437Z 15:02:40.614 | Dependency assembly - System.Management.dll -2026-03-27T14:02:40.6158570Z 15:02:40.615 | Dependency assembly - System.ComponentModel.dll -2026-03-27T14:02:40.6163786Z 15:02:40.616 | Dependency assembly - System.IO.Compression.ZipFile.dll -2026-03-27T14:02:40.6169014Z 15:02:40.616 | Dependency assembly - Sentry.System.Buffers.dll -2026-03-27T14:02:40.6174224Z 15:02:40.617 | Dependency assembly - System.Security.Cryptography.RandomNumberGenerator.dll -2026-03-27T14:02:40.6179238Z 15:02:40.617 | Dependency assembly - System.Globalization.dll -2026-03-27T14:02:40.6184518Z 15:02:40.618 | Dependency assembly - System.Xml.XmlDocument.dll -2026-03-27T14:02:40.6189799Z 15:02:40.618 | Dependency assembly - System.IO.MemoryMappedFiles.dll -2026-03-27T14:02:40.6195548Z 15:02:40.619 | Dependency assembly - System.Runtime.Loader.dll -2026-03-27T14:02:40.6200589Z 15:02:40.619 | Dependency assembly - System.Net.Http.WebRequest.dll -2026-03-27T14:02:40.6205641Z 15:02:40.620 | Dependency assembly - System.ServiceModel.Duplex.dll -2026-03-27T14:02:40.6211431Z 15:02:40.620 | Dependency assembly - System.Data.Common.dll -2026-03-27T14:02:40.6216331Z 15:02:40.621 | Dependency assembly - System.IO.IsolatedStorage.dll -2026-03-27T14:02:40.6221570Z 15:02:40.621 | Dependency assembly - System.Reflection.DispatchProxy.dll -2026-03-27T14:02:40.6226557Z 15:02:40.622 | Dependency assembly - System.Buffers.dll -2026-03-27T14:02:40.6231577Z 15:02:40.622 | Dependency assembly - netstandard.dll -2026-03-27T14:02:40.6237063Z 15:02:40.623 | Dependency assembly - System.Net.Utilities.dll -2026-03-27T14:02:40.6247821Z 15:02:40.623 | Dependency assembly - Microsoft.CSharp.dll -2026-03-27T14:02:40.6254021Z 15:02:40.624 | Dependency assembly - System.IO.FileSystem.DriveInfo.dll -2026-03-27T14:02:40.6259320Z 15:02:40.625 | Dependency assembly - System.Design.dll -2026-03-27T14:02:40.6264435Z 15:02:40.626 | Dependency assembly - System.Data.dll -2026-03-27T14:02:40.6273838Z 15:02:40.626 | Dependency assembly - System.Runtime.dll -2026-03-27T14:02:40.6279727Z 15:02:40.627 | Dependency assembly - System.Web.DynamicData.dll -2026-03-27T14:02:40.6285068Z 15:02:40.628 | Dependency assembly - System.Net.Mail.dll -2026-03-27T14:02:40.6290566Z 15:02:40.628 | Dependency assembly - System.Threading.Tasks.Parallel.dll -2026-03-27T14:02:40.6295644Z 15:02:40.629 | Dependency assembly - Sentry.dll -2026-03-27T14:02:40.6300737Z 15:02:40.629 | Dependency assembly - System.Net.Requests.dll -2026-03-27T14:02:40.6306979Z 15:02:40.630 | Dependency assembly - System.Diagnostics.StackTrace.dll -2026-03-27T14:02:40.6311124Z 15:02:40.630 | Dependency assembly - System.Threading.Thread.dll -2026-03-27T14:02:40.6316118Z 15:02:40.631 | Dependency assembly - Microsoft.Win32.Primitives.dll -2026-03-27T14:02:40.6321122Z 15:02:40.631 | Dependency assembly - System.ServiceModel.Http.dll -2026-03-27T14:02:40.6326556Z 15:02:40.632 | Dependency assembly - System.Threading.dll -2026-03-27T14:02:40.6332165Z 15:02:40.632 | Dependency assembly - System.Transactions.dll -2026-03-27T14:02:40.6337444Z 15:02:40.633 | Dependency assembly - System.Diagnostics.TraceEvent.dll -2026-03-27T14:02:40.6342466Z 15:02:40.633 | Dependency assembly - System.Numerics.Vectors.dll -2026-03-27T14:02:40.6347569Z 15:02:40.634 | Dependency assembly - System.Net.WebSockets.Client.dll -2026-03-27T14:02:40.6352577Z 15:02:40.634 | Dependency assembly - System.Xml.XDocument.dll -2026-03-27T14:02:40.6357994Z 15:02:40.635 | Dependency assembly - System.ServiceModel.Activation.dll -2026-03-27T14:02:40.6363333Z 15:02:40.635 | Dependency assembly - System.IO.Compression.FileSystem.dll -2026-03-27T14:02:40.6368340Z 15:02:40.636 | Dependency assembly - System.Security.dll -2026-03-27T14:02:40.6373206Z 15:02:40.636 | -2026-03-27T14:02:40.6379100Z 15:02:40.637 | Calling OnPostBuildPlayerScriptDLLs callbacks. For faster build speeds, consider not using this callback, as we don't need to copy assemblies to the staging area for the incremental player build otherwise. -2026-03-27T14:02:40.6383690Z 15:02:40.638 | Sentry: IntegrationOptionsConfig::Configure() called -2026-03-27T14:02:40.6388710Z 15:02:40.638 | Sentry: IntegrationOptionsConfig::Configure() finished -2026-03-27T14:02:40.6396327Z 15:02:40.639 | Sentry: (Debug) Logging enabled with 'UnityLogger' min level: Debug -2026-03-27T14:02:40.6402441Z 15:02:40.639 | Sentry: (Warning) No Sentry DSN configured. Sentry will be disabled. -2026-03-27T14:02:40.6407782Z 15:02:40.640 | Sentry: (Debug) Performance Auto Instrumentation disabled. -2026-03-27T14:02:40.6413102Z 15:02:40.640 | Unloading 5 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:02:40.6418678Z 15:02:40.641 | Unloading 23 unused Assets / (0.8 MB). Loaded Objects now: 1129. -2026-03-27T14:02:40.6423578Z 15:02:40.641 | Memory consumption went from 99.6 MB to 98.9 MB. -2026-03-27T14:02:40.6429278Z 15:02:40.642 | Total: 7.776100 ms (FindLiveObjects: 0.079500 ms CreateObjectMapping: 0.016100 ms MarkObjects: 7.336400 ms DeleteObjects: 0.343200 ms) -2026-03-27T14:02:40.6434215Z 15:02:40.643 | -2026-03-27T14:02:40.6439753Z 15:02:40.643 | Unloading 1 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:02:40.6444773Z 15:02:40.644 | Unloading 0 unused Assets / (2.2 KB). Loaded Objects now: 1131. -2026-03-27T14:02:40.6450538Z 15:02:40.644 | Memory consumption went from 98.9 MB to 98.9 MB. -2026-03-27T14:02:40.6456360Z 15:02:40.645 | Total: 7.675900 ms (FindLiveObjects: 0.067400 ms CreateObjectMapping: 0.014200 ms MarkObjects: 7.587500 ms DeleteObjects: 0.005800 ms) -2026-03-27T14:02:40.6461233Z 15:02:40.645 | -2026-03-27T14:02:41.0625095Z 15:02:41.060 | Unloading 1 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:02:41.0638732Z 15:02:41.063 | Unloading 179 unused Assets / (150.3 MB). Loaded Objects now: 1131. -2026-03-27T14:02:41.0644610Z 15:02:41.063 | Memory consumption went from 250.4 MB to 100.0 MB. -2026-03-27T14:02:41.0655121Z 15:02:41.064 | Total: 30.220600 ms (FindLiveObjects: 0.053800 ms CreateObjectMapping: 0.014600 ms MarkObjects: 7.954500 ms DeleteObjects: 22.196500 ms) -2026-03-27T14:02:41.0663433Z 15:02:41.065 | -2026-03-27T14:02:41.0745638Z 15:02:41.066 | Compiling shader "Skybox/Procedural" -2026-03-27T14:02:41.0758368Z 15:02:41.074 | Pass "" (vp) -2026-03-27T14:02:41.0771710Z 15:02:41.076 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:41.0779326Z 15:02:41.077 | Full variant space: 3 -2026-03-27T14:02:41.0784687Z 15:02:41.078 | After settings filtering: 3 -2026-03-27T14:02:41.0792303Z 15:02:41.078 | After built-in stripping: 3 -2026-03-27T14:02:41.0802830Z 15:02:41.079 | After scriptable stripping: 3 -2026-03-27T14:02:41.0811165Z 15:02:41.080 | Processed in 0.01 seconds -2026-03-27T14:02:41.0817093Z 15:02:41.081 | Pass "" (fp) -2026-03-27T14:02:41.0824735Z 15:02:41.081 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:41.0830149Z 15:02:41.082 | Full variant space: 3 -2026-03-27T14:02:41.0836774Z 15:02:41.083 | After settings filtering: 3 -2026-03-27T14:02:41.0842267Z 15:02:41.083 | After built-in stripping: 3 -2026-03-27T14:02:41.0853772Z 15:02:41.084 | After scriptable stripping: 3 -2026-03-27T14:02:41.0860526Z 15:02:41.085 | Processed in 0.00 seconds -2026-03-27T14:02:41.5030122Z 15:02:41.502 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds -2026-03-27T14:02:41.5037128Z 15:02:41.503 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -2026-03-27T14:02:41.9115197Z 15:02:41.911 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds -2026-03-27T14:02:42.3159673Z 15:02:42.315 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds -2026-03-27T14:02:42.3174895Z 15:02:42.316 | Pass (vp, gamecore_scarlett) finished in 1.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (2.46s CPU time), skipped 0 variants. -2026-03-27T14:02:42.3181898Z 15:02:42.317 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:42.7200745Z 15:02:42.719 | Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds -2026-03-27T14:02:43.1499008Z 15:02:43.124 | Pass (fp, gamecore_scarlett) finished in 1.83 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (3.36s CPU time), skipped 0 variants. -2026-03-27T14:02:43.1754002Z 15:02:43.163 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:43.1814084Z 15:02:43.180 | Compiling shader "Skybox/Procedural" -2026-03-27T14:02:43.1820358Z 15:02:43.181 | Pass "" (vp) -2026-03-27T14:02:43.1827305Z 15:02:43.182 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:43.1833189Z 15:02:43.182 | Full variant space: 3 -2026-03-27T14:02:43.1842976Z 15:02:43.183 | After settings filtering: 3 -2026-03-27T14:02:43.1851125Z 15:02:43.184 | After built-in stripping: 3 -2026-03-27T14:02:43.1857646Z 15:02:43.185 | After scriptable stripping: 3 -2026-03-27T14:02:43.1885250Z 15:02:43.186 | Processed in 0.00 seconds -2026-03-27T14:02:43.1892684Z 15:02:43.188 | Pass "" (fp) -2026-03-27T14:02:43.1899232Z 15:02:43.189 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:43.1905651Z 15:02:43.190 | Full variant space: 3 -2026-03-27T14:02:43.1911275Z 15:02:43.190 | After settings filtering: 3 -2026-03-27T14:02:43.1916065Z 15:02:43.191 | After built-in stripping: 3 -2026-03-27T14:02:43.1922177Z 15:02:43.191 | After scriptable stripping: 3 -2026-03-27T14:02:43.1939383Z 15:02:43.192 | Processed in 0.00 seconds -2026-03-27T14:02:43.9134677Z 15:02:43.633 | Pass (vp, gamecore_scarlett) finished in 0.32 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.95s CPU time), skipped 0 variants. -2026-03-27T14:02:43.9166835Z 15:02:43.915 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:43.9188141Z 15:02:43.918 | Pass (fp, gamecore_scarlett) finished in 0.32 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.51s CPU time), skipped 0 variants. -2026-03-27T14:02:43.9213327Z 15:02:43.920 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:43.9223228Z 15:02:43.921 | Serialized binary data for shader Skybox/Procedural in 0.00s -2026-03-27T14:02:43.9232365Z 15:02:43.922 | gamecore_scarlett (total internal programs: 6, unique: 6) -2026-03-27T14:02:43.9238041Z 15:02:43.923 | Compiling shader "Legacy Shaders/VertexLit" -2026-03-27T14:02:43.9245135Z 15:02:43.924 | Pass "" (vp) -2026-03-27T14:02:43.9252702Z 15:02:43.924 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:43.9259181Z 15:02:43.925 | Full variant space: 12 -2026-03-27T14:02:43.9264693Z 15:02:43.926 | After settings filtering: 12 -2026-03-27T14:02:43.9271031Z 15:02:43.926 | After built-in stripping: 3 -2026-03-27T14:02:43.9277562Z 15:02:43.927 | After scriptable stripping: 3 -2026-03-27T14:02:43.9283290Z 15:02:43.927 | Processed in 0.00 seconds -2026-03-27T14:02:43.9290175Z 15:02:43.928 | Pass "" (fp) -2026-03-27T14:02:43.9297088Z 15:02:43.929 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:43.9304116Z 15:02:43.929 | Full variant space: 12 -2026-03-27T14:02:43.9310571Z 15:02:43.930 | After settings filtering: 12 -2026-03-27T14:02:43.9317309Z 15:02:43.931 | After built-in stripping: 3 -2026-03-27T14:02:43.9323625Z 15:02:43.931 | After scriptable stripping: 3 -2026-03-27T14:02:43.9329395Z 15:02:43.932 | Processed in 0.00 seconds -2026-03-27T14:02:43.9334974Z 15:02:43.933 | Pass "" (vp) -2026-03-27T14:02:43.9344909Z 15:02:43.933 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:43.9345336Z 15:02:43.934 | Full variant space: 4 -2026-03-27T14:02:43.9351407Z 15:02:43.934 | After settings filtering: 4 -2026-03-27T14:02:43.9362222Z 15:02:43.935 | After built-in stripping: 1 -2026-03-27T14:02:43.9368050Z 15:02:43.936 | After scriptable stripping: 1 -2026-03-27T14:02:43.9373129Z 15:02:43.936 | Processed in 0.00 seconds -2026-03-27T14:02:43.9379065Z 15:02:43.937 | Pass "" (fp) -2026-03-27T14:02:43.9385336Z 15:02:43.938 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:43.9390985Z 15:02:43.938 | Full variant space: 4 -2026-03-27T14:02:43.9397211Z 15:02:43.939 | After settings filtering: 4 -2026-03-27T14:02:43.9403981Z 15:02:43.939 | After built-in stripping: 1 -2026-03-27T14:02:43.9409954Z 15:02:43.940 | After scriptable stripping: 1 -2026-03-27T14:02:44.1368806Z 15:02:43.941 | Processed in 0.00 seconds -2026-03-27T14:02:44.2352982Z 15:02:44.152 | Pass "ShadowCaster" (vp) -2026-03-27T14:02:44.3660743Z 15:02:44.244 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.4738365Z 15:02:44.401 | Full variant space: 4 -2026-03-27T14:02:44.5879642Z 15:02:44.480 | After settings filtering: 4 -2026-03-27T14:02:44.5926281Z 15:02:44.591 | After built-in stripping: 2 -2026-03-27T14:02:44.5955619Z 15:02:44.594 | After scriptable stripping: 2 -2026-03-27T14:02:44.6051133Z 15:02:44.596 | Processed in 0.00 seconds -2026-03-27T14:02:44.6097217Z 15:02:44.608 | Pass "ShadowCaster" (fp) -2026-03-27T14:02:44.6112785Z 15:02:44.610 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6120715Z 15:02:44.611 | Full variant space: 4 -2026-03-27T14:02:44.6129383Z 15:02:44.612 | After settings filtering: 4 -2026-03-27T14:02:44.6135224Z 15:02:44.613 | After built-in stripping: 2 -2026-03-27T14:02:44.6145894Z 15:02:44.613 | After scriptable stripping: 2 -2026-03-27T14:02:44.6158120Z 15:02:44.615 | Processed in 0.00 seconds -2026-03-27T14:02:44.6164131Z 15:02:44.615 | Pass (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.17s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6170438Z 15:02:44.616 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6176872Z 15:02:44.617 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.12s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6182498Z 15:02:44.617 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6189392Z 15:02:44.618 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6194453Z 15:02:44.619 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6200765Z 15:02:44.619 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6207626Z 15:02:44.620 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6214074Z 15:02:44.620 | Pass ShadowCaster (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6220359Z 15:02:44.621 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6226987Z 15:02:44.622 | Pass ShadowCaster (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6231878Z 15:02:44.622 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6237781Z 15:02:44.623 | Compiling shader "Legacy Shaders/VertexLit" -2026-03-27T14:02:44.6243367Z 15:02:44.623 | Pass "" (vp) -2026-03-27T14:02:44.6249177Z 15:02:44.624 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6255186Z 15:02:44.625 | Full variant space: 12 -2026-03-27T14:02:44.6260712Z 15:02:44.625 | After settings filtering: 12 -2026-03-27T14:02:44.6266174Z 15:02:44.626 | After built-in stripping: 3 -2026-03-27T14:02:44.6271745Z 15:02:44.626 | After scriptable stripping: 3 -2026-03-27T14:02:44.6277102Z 15:02:44.627 | Processed in 0.00 seconds -2026-03-27T14:02:44.6283101Z 15:02:44.627 | Pass "" (fp) -2026-03-27T14:02:44.6288930Z 15:02:44.628 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6294734Z 15:02:44.629 | Full variant space: 12 -2026-03-27T14:02:44.6311497Z 15:02:44.629 | After settings filtering: 12 -2026-03-27T14:02:44.6319064Z 15:02:44.631 | After built-in stripping: 3 -2026-03-27T14:02:44.6329859Z 15:02:44.632 | After scriptable stripping: 3 -2026-03-27T14:02:44.6335008Z 15:02:44.633 | Processed in 0.00 seconds -2026-03-27T14:02:44.6341712Z 15:02:44.633 | Pass "" (vp) -2026-03-27T14:02:44.6348551Z 15:02:44.634 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6357773Z 15:02:44.635 | Full variant space: 4 -2026-03-27T14:02:44.6364457Z 15:02:44.636 | After settings filtering: 4 -2026-03-27T14:02:44.6373158Z 15:02:44.636 | After built-in stripping: 1 -2026-03-27T14:02:44.6380138Z 15:02:44.637 | After scriptable stripping: 1 -2026-03-27T14:02:44.6389351Z 15:02:44.638 | Processed in 0.00 seconds -2026-03-27T14:02:44.6394835Z 15:02:44.639 | Pass "" (fp) -2026-03-27T14:02:44.6400707Z 15:02:44.639 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6407785Z 15:02:44.640 | Full variant space: 4 -2026-03-27T14:02:44.6413487Z 15:02:44.640 | After settings filtering: 4 -2026-03-27T14:02:44.6419618Z 15:02:44.641 | After built-in stripping: 1 -2026-03-27T14:02:44.6425630Z 15:02:44.642 | After scriptable stripping: 1 -2026-03-27T14:02:44.6431347Z 15:02:44.642 | Processed in 0.00 seconds -2026-03-27T14:02:44.6437117Z 15:02:44.643 | Pass "ShadowCaster" (vp) -2026-03-27T14:02:44.6442660Z 15:02:44.643 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6448408Z 15:02:44.644 | Full variant space: 4 -2026-03-27T14:02:44.6453883Z 15:02:44.644 | After settings filtering: 4 -2026-03-27T14:02:44.6462676Z 15:02:44.645 | After built-in stripping: 2 -2026-03-27T14:02:44.6471368Z 15:02:44.646 | After scriptable stripping: 2 -2026-03-27T14:02:44.6485522Z 15:02:44.648 | Processed in 0.00 seconds -2026-03-27T14:02:44.6504057Z 15:02:44.648 | Pass "ShadowCaster" (fp) -2026-03-27T14:02:44.6519758Z 15:02:44.651 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6527849Z 15:02:44.652 | Full variant space: 4 -2026-03-27T14:02:44.6534636Z 15:02:44.653 | After settings filtering: 4 -2026-03-27T14:02:44.6541006Z 15:02:44.653 | After built-in stripping: 2 -2026-03-27T14:02:44.6546762Z 15:02:44.654 | After scriptable stripping: 2 -2026-03-27T14:02:44.6551946Z 15:02:44.654 | Processed in 0.00 seconds -2026-03-27T14:02:44.6558747Z 15:02:44.655 | Pass (vp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.56s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6566283Z 15:02:44.656 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6573229Z 15:02:44.656 | Pass (fp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 3 variants (0.14s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6578888Z 15:02:44.657 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6585397Z 15:02:44.658 | Pass (vp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6592427Z 15:02:44.658 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6599674Z 15:02:44.659 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6612292Z 15:02:44.660 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6627690Z 15:02:44.662 | Pass ShadowCaster (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.19s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6634481Z 15:02:44.663 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6639886Z 15:02:44.663 | Pass ShadowCaster (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6649229Z 15:02:44.664 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.6656065Z 15:02:44.665 | Serialized binary data for shader Legacy Shaders/VertexLit in 0.00s -2026-03-27T14:02:44.6661518Z 15:02:44.665 | gamecore_scarlett (total internal programs: 12, unique: 12) -2026-03-27T14:02:44.6668128Z 15:02:44.666 | Compiling shader "Legacy Shaders/Diffuse" -2026-03-27T14:02:44.6675261Z 15:02:44.667 | Pass "FORWARD" (vp) -2026-03-27T14:02:44.6682297Z 15:02:44.667 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6688956Z 15:02:44.668 | Full variant space: 664 -2026-03-27T14:02:44.6695483Z 15:02:44.669 | After settings filtering: 664 -2026-03-27T14:02:44.6701728Z 15:02:44.669 | After built-in stripping: 8 -2026-03-27T14:02:44.6708105Z 15:02:44.670 | After scriptable stripping: 8 -2026-03-27T14:02:44.6714382Z 15:02:44.671 | Processed in 0.00 seconds -2026-03-27T14:02:44.6721371Z 15:02:44.671 | Pass "FORWARD" (fp) -2026-03-27T14:02:44.6731343Z 15:02:44.672 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6738145Z 15:02:44.673 | Full variant space: 504 -2026-03-27T14:02:44.6744243Z 15:02:44.674 | After settings filtering: 504 -2026-03-27T14:02:44.6750229Z 15:02:44.674 | After built-in stripping: 4 -2026-03-27T14:02:44.6756685Z 15:02:44.675 | After scriptable stripping: 4 -2026-03-27T14:02:44.6768558Z 15:02:44.676 | Processed in 0.00 seconds -2026-03-27T14:02:44.6775244Z 15:02:44.677 | Pass "FORWARD" (vp) -2026-03-27T14:02:44.6784516Z 15:02:44.678 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6792379Z 15:02:44.678 | Full variant space: 20 -2026-03-27T14:02:44.6800985Z 15:02:44.679 | After settings filtering: 20 -2026-03-27T14:02:44.6809560Z 15:02:44.680 | After built-in stripping: 5 -2026-03-27T14:02:44.6815333Z 15:02:44.681 | After scriptable stripping: 5 -2026-03-27T14:02:44.6821248Z 15:02:44.681 | Processed in 0.00 seconds -2026-03-27T14:02:44.6828515Z 15:02:44.682 | Pass "FORWARD" (fp) -2026-03-27T14:02:44.6833997Z 15:02:44.683 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6839628Z 15:02:44.683 | Full variant space: 20 -2026-03-27T14:02:44.6847869Z 15:02:44.684 | After settings filtering: 20 -2026-03-27T14:02:44.6854218Z 15:02:44.685 | After built-in stripping: 5 -2026-03-27T14:02:44.6861440Z 15:02:44.685 | After scriptable stripping: 5 -2026-03-27T14:02:44.6867118Z 15:02:44.686 | Processed in 0.00 seconds -2026-03-27T14:02:44.6872724Z 15:02:44.686 | Pass "DEFERRED" (vp) -2026-03-27T14:02:44.6880277Z 15:02:44.687 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6885912Z 15:02:44.688 | Full variant space: 76 -2026-03-27T14:02:44.6892561Z 15:02:44.688 | After settings filtering: 76 -2026-03-27T14:02:44.6898496Z 15:02:44.689 | After built-in stripping: 4 -2026-03-27T14:02:44.6904196Z 15:02:44.690 | After scriptable stripping: 4 -2026-03-27T14:02:44.6909974Z 15:02:44.690 | Processed in 0.00 seconds -2026-03-27T14:02:44.6924435Z 15:02:44.691 | Pass "DEFERRED" (fp) -2026-03-27T14:02:44.6933488Z 15:02:44.692 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.6941565Z 15:02:44.693 | Full variant space: 76 -2026-03-27T14:02:44.6948837Z 15:02:44.694 | After settings filtering: 76 -2026-03-27T14:02:44.6955413Z 15:02:44.695 | After built-in stripping: 4 -2026-03-27T14:02:44.6962108Z 15:02:44.695 | After scriptable stripping: 4 -2026-03-27T14:02:44.6970766Z 15:02:44.696 | Processed in 0.00 seconds -2026-03-27T14:02:44.6978922Z 15:02:44.697 | Pass FORWARD (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 8 variants (0.57s CPU time), skipped 0 variants. -2026-03-27T14:02:44.6996013Z 15:02:44.698 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7001711Z 15:02:44.699 | Pass FORWARD (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.23s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7007341Z 15:02:44.700 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7013046Z 15:02:44.700 | Pass FORWARD (vp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 5 variants (0.29s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7021101Z 15:02:44.701 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7028887Z 15:02:44.702 | Pass FORWARD (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 5 variants (0.27s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7036868Z 15:02:44.703 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7044146Z 15:02:44.704 | Pass DEFERRED (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.21s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7051362Z 15:02:44.704 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7060761Z 15:02:44.705 | Pass DEFERRED (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.20s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7068178Z 15:02:44.706 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7092374Z 15:02:44.708 | Compiling shader "Legacy Shaders/Diffuse" -2026-03-27T14:02:44.7098150Z 15:02:44.709 | Pass "FORWARD" (vp) -2026-03-27T14:02:44.7105673Z 15:02:44.710 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.7119461Z 15:02:44.711 | Full variant space: 664 -2026-03-27T14:02:44.7126515Z 15:02:44.712 | After settings filtering: 664 -2026-03-27T14:02:44.7133839Z 15:02:44.712 | After built-in stripping: 8 -2026-03-27T14:02:44.7139089Z 15:02:44.713 | After scriptable stripping: 8 -2026-03-27T14:02:44.7145395Z 15:02:44.714 | Processed in 0.00 seconds -2026-03-27T14:02:44.7151420Z 15:02:44.714 | Pass "FORWARD" (fp) -2026-03-27T14:02:44.7156962Z 15:02:44.715 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.7162995Z 15:02:44.715 | Full variant space: 504 -2026-03-27T14:02:44.7170003Z 15:02:44.716 | After settings filtering: 504 -2026-03-27T14:02:44.7175230Z 15:02:44.717 | After built-in stripping: 4 -2026-03-27T14:02:44.7180568Z 15:02:44.717 | After scriptable stripping: 4 -2026-03-27T14:02:44.7185728Z 15:02:44.718 | Processed in 0.00 seconds -2026-03-27T14:02:44.7191633Z 15:02:44.718 | Pass "FORWARD" (vp) -2026-03-27T14:02:44.7197260Z 15:02:44.719 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.7202785Z 15:02:44.719 | Full variant space: 20 -2026-03-27T14:02:44.7208042Z 15:02:44.720 | After settings filtering: 20 -2026-03-27T14:02:44.7213419Z 15:02:44.720 | After built-in stripping: 5 -2026-03-27T14:02:44.7223893Z 15:02:44.721 | After scriptable stripping: 5 -2026-03-27T14:02:44.7232115Z 15:02:44.722 | Processed in 0.00 seconds -2026-03-27T14:02:44.7238465Z 15:02:44.723 | Pass "FORWARD" (fp) -2026-03-27T14:02:44.7243937Z 15:02:44.724 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.7252082Z 15:02:44.724 | Full variant space: 20 -2026-03-27T14:02:44.7257885Z 15:02:44.725 | After settings filtering: 20 -2026-03-27T14:02:44.7263204Z 15:02:44.725 | After built-in stripping: 5 -2026-03-27T14:02:44.7268601Z 15:02:44.726 | After scriptable stripping: 5 -2026-03-27T14:02:44.7274448Z 15:02:44.727 | Processed in 0.00 seconds -2026-03-27T14:02:44.7281183Z 15:02:44.727 | Pass "DEFERRED" (vp) -2026-03-27T14:02:44.7287614Z 15:02:44.728 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.7293446Z 15:02:44.728 | Full variant space: 76 -2026-03-27T14:02:44.7298872Z 15:02:44.729 | After settings filtering: 76 -2026-03-27T14:02:44.7304194Z 15:02:44.730 | After built-in stripping: 4 -2026-03-27T14:02:44.7309598Z 15:02:44.730 | After scriptable stripping: 4 -2026-03-27T14:02:44.7315379Z 15:02:44.731 | Processed in 0.00 seconds -2026-03-27T14:02:44.7321147Z 15:02:44.731 | Pass "DEFERRED" (fp) -2026-03-27T14:02:44.7328775Z 15:02:44.732 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.7334001Z 15:02:44.733 | Full variant space: 76 -2026-03-27T14:02:44.7340077Z 15:02:44.733 | After settings filtering: 76 -2026-03-27T14:02:44.7345805Z 15:02:44.734 | After built-in stripping: 4 -2026-03-27T14:02:44.7351399Z 15:02:44.734 | After scriptable stripping: 4 -2026-03-27T14:02:44.7356912Z 15:02:44.735 | Processed in 0.00 seconds -2026-03-27T14:02:44.7363072Z 15:02:44.735 | Pass FORWARD (vp, gamecore_scarlett) finished in 0.30 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 8 variants (1.21s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7369109Z 15:02:44.736 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7380537Z 15:02:44.737 | Pass FORWARD (fp, gamecore_scarlett) finished in 0.18 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.42s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7389192Z 15:02:44.738 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7395991Z 15:02:44.739 | Pass FORWARD (vp, gamecore_scarlett) finished in 0.24 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 5 variants (0.68s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7403724Z 15:02:44.739 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7414250Z 15:02:44.740 | Pass FORWARD (fp, gamecore_scarlett) finished in 0.18 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 5 variants (0.41s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7415352Z 15:02:44.741 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7420160Z 15:02:44.741 | Pass DEFERRED (vp, gamecore_scarlett) finished in 0.20 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.52s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7425140Z 15:02:44.742 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7430900Z 15:02:44.742 | Pass DEFERRED (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.25s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7436536Z 15:02:44.743 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.7442091Z 15:02:44.743 | Serialized binary data for shader Legacy Shaders/Diffuse in 0.00s -2026-03-27T14:02:44.7448297Z 15:02:44.744 | gamecore_scarlett (total internal programs: 30, unique: 30) -2026-03-27T14:02:44.7454349Z 15:02:44.745 | Compiling shader "Hidden/Internal-StencilWrite" -2026-03-27T14:02:44.7460386Z 15:02:44.745 | Pass "" (vp) -2026-03-27T14:02:44.7466195Z 15:02:44.746 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.7472054Z 15:02:44.746 | Full variant space: 1 -2026-03-27T14:02:44.7477498Z 15:02:44.747 | After settings filtering: 1 -2026-03-27T14:02:44.7483388Z 15:02:44.747 | After built-in stripping: 1 -2026-03-27T14:02:44.7489764Z 15:02:44.748 | After scriptable stripping: 1 -2026-03-27T14:02:44.7495254Z 15:02:44.749 | Processed in 0.00 seconds -2026-03-27T14:02:44.7500530Z 15:02:44.749 | Pass "" (fp) -2026-03-27T14:02:44.7506033Z 15:02:44.750 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.7516676Z 15:02:44.750 | Full variant space: 1 -2026-03-27T14:02:44.7522040Z 15:02:44.751 | After settings filtering: 1 -2026-03-27T14:02:44.7527629Z 15:02:44.752 | After built-in stripping: 1 -2026-03-27T14:02:44.7538595Z 15:02:44.752 | After scriptable stripping: 1 -2026-03-27T14:02:44.7545501Z 15:02:44.754 | Processed in 0.00 seconds -2026-03-27T14:02:44.7553713Z 15:02:44.754 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:44.7559834Z 15:02:44.755 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.8064128Z 15:02:44.756 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:44.8489512Z 15:02:44.816 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.8870566Z 15:02:44.860 | Compiling shader "Hidden/Internal-StencilWrite" -2026-03-27T14:02:44.9271825Z 15:02:44.892 | Pass "" (vp) -2026-03-27T14:02:44.9672471Z 15:02:44.938 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.9755066Z 15:02:44.969 | Full variant space: 1 -2026-03-27T14:02:44.9789751Z 15:02:44.976 | After settings filtering: 1 -2026-03-27T14:02:44.9796993Z 15:02:44.979 | After built-in stripping: 1 -2026-03-27T14:02:44.9860017Z 15:02:44.980 | After scriptable stripping: 1 -2026-03-27T14:02:44.9867474Z 15:02:44.986 | Processed in 0.00 seconds -2026-03-27T14:02:44.9876768Z 15:02:44.987 | Pass "" (fp) -2026-03-27T14:02:44.9883267Z 15:02:44.987 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:44.9890036Z 15:02:44.988 | Full variant space: 1 -2026-03-27T14:02:44.9898132Z 15:02:44.989 | After settings filtering: 1 -2026-03-27T14:02:44.9904301Z 15:02:44.990 | After built-in stripping: 1 -2026-03-27T14:02:44.9909466Z 15:02:44.990 | After scriptable stripping: 1 -2026-03-27T14:02:44.9916429Z 15:02:44.991 | Processed in 0.00 seconds -2026-03-27T14:02:44.9923821Z 15:02:44.991 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:44.9931654Z 15:02:44.992 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.9938064Z 15:02:44.993 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:44.9944744Z 15:02:44.994 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:44.9951443Z 15:02:44.994 | Serialized binary data for shader Hidden/Internal-StencilWrite in 0.00s -2026-03-27T14:02:44.9957773Z 15:02:44.995 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:45.0059915Z 15:02:44.996 | Compiling shader "Hidden/Internal-DepthNormalsTexture" -2026-03-27T14:02:45.0665227Z 15:02:45.023 | Pass "" (vp) -2026-03-27T14:02:45.1261062Z 15:02:45.085 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.1713215Z 15:02:45.138 | Full variant space: 1 -2026-03-27T14:02:45.2043565Z 15:02:45.177 | After settings filtering: 1 -2026-03-27T14:02:45.2561931Z 15:02:45.215 | After built-in stripping: 1 -2026-03-27T14:02:45.2993510Z 15:02:45.269 | After scriptable stripping: 1 -2026-03-27T14:02:45.3563357Z 15:02:45.314 | Processed in 0.00 seconds -2026-03-27T14:02:45.3896866Z 15:02:45.366 | Pass "" (fp) -2026-03-27T14:02:45.4029541Z 15:02:45.396 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4107975Z 15:02:45.403 | Full variant space: 1 -2026-03-27T14:02:45.4123145Z 15:02:45.411 | After settings filtering: 1 -2026-03-27T14:02:45.4129969Z 15:02:45.412 | After built-in stripping: 1 -2026-03-27T14:02:45.4136505Z 15:02:45.413 | After scriptable stripping: 1 -2026-03-27T14:02:45.4163270Z 15:02:45.414 | Processed in 0.00 seconds -2026-03-27T14:02:45.4174038Z 15:02:45.416 | Pass "" (vp) -2026-03-27T14:02:45.4186860Z 15:02:45.418 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4193433Z 15:02:45.419 | Full variant space: 1 -2026-03-27T14:02:45.4225220Z 15:02:45.419 | After settings filtering: 1 -2026-03-27T14:02:45.4255974Z 15:02:45.423 | After built-in stripping: 1 -2026-03-27T14:02:45.4262814Z 15:02:45.425 | After scriptable stripping: 1 -2026-03-27T14:02:45.4281566Z 15:02:45.426 | Processed in 0.00 seconds -2026-03-27T14:02:45.4307613Z 15:02:45.428 | Pass "" (fp) -2026-03-27T14:02:45.4343256Z 15:02:45.433 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4349372Z 15:02:45.434 | Full variant space: 1 -2026-03-27T14:02:45.4355972Z 15:02:45.435 | After settings filtering: 1 -2026-03-27T14:02:45.4362818Z 15:02:45.435 | After built-in stripping: 1 -2026-03-27T14:02:45.4370928Z 15:02:45.436 | After scriptable stripping: 1 -2026-03-27T14:02:45.4380273Z 15:02:45.437 | Processed in 0.00 seconds -2026-03-27T14:02:45.4388112Z 15:02:45.438 | Pass "" (vp) -2026-03-27T14:02:45.4395016Z 15:02:45.439 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4401948Z 15:02:45.439 | Full variant space: 1 -2026-03-27T14:02:45.4409997Z 15:02:45.440 | After settings filtering: 1 -2026-03-27T14:02:45.4416007Z 15:02:45.441 | After built-in stripping: 1 -2026-03-27T14:02:45.4429110Z 15:02:45.441 | After scriptable stripping: 1 -2026-03-27T14:02:45.4435632Z 15:02:45.443 | Processed in 0.00 seconds -2026-03-27T14:02:45.4442280Z 15:02:45.443 | Pass "" (fp) -2026-03-27T14:02:45.4448246Z 15:02:45.444 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4459076Z 15:02:45.445 | Full variant space: 1 -2026-03-27T14:02:45.4509811Z 15:02:45.446 | After settings filtering: 1 -2026-03-27T14:02:45.4525500Z 15:02:45.451 | After built-in stripping: 1 -2026-03-27T14:02:45.4537752Z 15:02:45.453 | After scriptable stripping: 1 -2026-03-27T14:02:45.4556689Z 15:02:45.454 | Processed in 0.00 seconds -2026-03-27T14:02:45.4573008Z 15:02:45.456 | Pass "" (vp) -2026-03-27T14:02:45.4587209Z 15:02:45.457 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4599390Z 15:02:45.459 | Full variant space: 1 -2026-03-27T14:02:45.4608292Z 15:02:45.460 | After settings filtering: 1 -2026-03-27T14:02:45.4631942Z 15:02:45.461 | After built-in stripping: 1 -2026-03-27T14:02:45.4642974Z 15:02:45.463 | After scriptable stripping: 1 -2026-03-27T14:02:45.4649048Z 15:02:45.464 | Processed in 0.00 seconds -2026-03-27T14:02:45.4654417Z 15:02:45.465 | Pass "" (fp) -2026-03-27T14:02:45.4659679Z 15:02:45.465 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4664889Z 15:02:45.466 | Full variant space: 1 -2026-03-27T14:02:45.4670164Z 15:02:45.466 | After settings filtering: 1 -2026-03-27T14:02:45.4675805Z 15:02:45.467 | After built-in stripping: 1 -2026-03-27T14:02:45.4681401Z 15:02:45.467 | After scriptable stripping: 1 -2026-03-27T14:02:45.4686808Z 15:02:45.468 | Processed in 0.00 seconds -2026-03-27T14:02:45.4692017Z 15:02:45.468 | Pass "" (vp) -2026-03-27T14:02:45.4698461Z 15:02:45.469 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4704149Z 15:02:45.470 | Full variant space: 1 -2026-03-27T14:02:45.4710038Z 15:02:45.470 | After settings filtering: 1 -2026-03-27T14:02:45.4715663Z 15:02:45.471 | After built-in stripping: 1 -2026-03-27T14:02:45.4721656Z 15:02:45.471 | After scriptable stripping: 1 -2026-03-27T14:02:45.4727871Z 15:02:45.472 | Processed in 0.00 seconds -2026-03-27T14:02:45.4733553Z 15:02:45.472 | Pass "" (fp) -2026-03-27T14:02:45.4739030Z 15:02:45.473 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4744733Z 15:02:45.474 | Full variant space: 1 -2026-03-27T14:02:45.4750108Z 15:02:45.474 | After settings filtering: 1 -2026-03-27T14:02:45.4755297Z 15:02:45.475 | After built-in stripping: 1 -2026-03-27T14:02:45.4760661Z 15:02:45.475 | After scriptable stripping: 1 -2026-03-27T14:02:45.4765705Z 15:02:45.476 | Processed in 0.00 seconds -2026-03-27T14:02:45.4795093Z 15:02:45.476 | Pass "" (vp) -2026-03-27T14:02:45.4800545Z 15:02:45.479 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4806876Z 15:02:45.480 | Full variant space: 1 -2026-03-27T14:02:45.4812532Z 15:02:45.480 | After settings filtering: 1 -2026-03-27T14:02:45.4820902Z 15:02:45.481 | After built-in stripping: 1 -2026-03-27T14:02:45.4830044Z 15:02:45.482 | After scriptable stripping: 1 -2026-03-27T14:02:45.4837662Z 15:02:45.483 | Processed in 0.00 seconds -2026-03-27T14:02:45.4844054Z 15:02:45.483 | Pass "" (fp) -2026-03-27T14:02:45.4851506Z 15:02:45.484 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4856966Z 15:02:45.485 | Full variant space: 1 -2026-03-27T14:02:45.4862579Z 15:02:45.485 | After settings filtering: 1 -2026-03-27T14:02:45.4868011Z 15:02:45.486 | After built-in stripping: 1 -2026-03-27T14:02:45.4873304Z 15:02:45.486 | After scriptable stripping: 1 -2026-03-27T14:02:45.4878736Z 15:02:45.487 | Processed in 0.00 seconds -2026-03-27T14:02:45.4883808Z 15:02:45.487 | Pass "" (vp) -2026-03-27T14:02:45.4890527Z 15:02:45.488 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4896430Z 15:02:45.489 | Full variant space: 1 -2026-03-27T14:02:45.4901937Z 15:02:45.489 | After settings filtering: 1 -2026-03-27T14:02:45.4907775Z 15:02:45.490 | After built-in stripping: 1 -2026-03-27T14:02:45.4913410Z 15:02:45.490 | After scriptable stripping: 1 -2026-03-27T14:02:45.4919099Z 15:02:45.491 | Processed in 0.00 seconds -2026-03-27T14:02:45.4927656Z 15:02:45.492 | Pass "" (fp) -2026-03-27T14:02:45.4937718Z 15:02:45.493 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4943466Z 15:02:45.493 | Full variant space: 1 -2026-03-27T14:02:45.4949123Z 15:02:45.494 | After settings filtering: 1 -2026-03-27T14:02:45.4955084Z 15:02:45.495 | After built-in stripping: 1 -2026-03-27T14:02:45.4960907Z 15:02:45.495 | After scriptable stripping: 1 -2026-03-27T14:02:45.4974412Z 15:02:45.496 | Processed in 0.00 seconds -2026-03-27T14:02:45.4980271Z 15:02:45.497 | Pass "" (vp) -2026-03-27T14:02:45.4985888Z 15:02:45.498 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.4991325Z 15:02:45.498 | Full variant space: 1 -2026-03-27T14:02:45.4996672Z 15:02:45.499 | After settings filtering: 1 -2026-03-27T14:02:45.5002105Z 15:02:45.499 | After built-in stripping: 1 -2026-03-27T14:02:45.5007638Z 15:02:45.500 | After scriptable stripping: 1 -2026-03-27T14:02:45.5013581Z 15:02:45.500 | Processed in 0.00 seconds -2026-03-27T14:02:45.5018890Z 15:02:45.501 | Pass "" (fp) -2026-03-27T14:02:45.5024156Z 15:02:45.502 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.5029556Z 15:02:45.502 | Full variant space: 1 -2026-03-27T14:02:45.5035059Z 15:02:45.503 | After settings filtering: 1 -2026-03-27T14:02:45.5040534Z 15:02:45.503 | After built-in stripping: 1 -2026-03-27T14:02:45.5047064Z 15:02:45.504 | After scriptable stripping: 1 -2026-03-27T14:02:45.5052976Z 15:02:45.504 | Processed in 0.00 seconds -2026-03-27T14:02:45.5058332Z 15:02:45.505 | Pass "" (vp) -2026-03-27T14:02:45.5063761Z 15:02:45.505 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.5069405Z 15:02:45.506 | Full variant space: 1 -2026-03-27T14:02:45.5074928Z 15:02:45.507 | After settings filtering: 1 -2026-03-27T14:02:45.5088334Z 15:02:45.507 | After built-in stripping: 1 -2026-03-27T14:02:45.5107799Z 15:02:45.510 | After scriptable stripping: 1 -2026-03-27T14:02:45.5113473Z 15:02:45.511 | Processed in 0.00 seconds -2026-03-27T14:02:45.5123578Z 15:02:45.511 | Pass "" (fp) -2026-03-27T14:02:45.5129981Z 15:02:45.512 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.5137973Z 15:02:45.513 | Full variant space: 1 -2026-03-27T14:02:45.5143336Z 15:02:45.513 | After settings filtering: 1 -2026-03-27T14:02:45.5149124Z 15:02:45.514 | After built-in stripping: 1 -2026-03-27T14:02:45.5154602Z 15:02:45.515 | After scriptable stripping: 1 -2026-03-27T14:02:45.5160002Z 15:02:45.515 | Processed in 0.00 seconds -2026-03-27T14:02:45.5165820Z 15:02:45.516 | Pass "" (vp) -2026-03-27T14:02:45.5171910Z 15:02:45.516 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.5176878Z 15:02:45.517 | Full variant space: 1 -2026-03-27T14:02:45.5182411Z 15:02:45.517 | After settings filtering: 1 -2026-03-27T14:02:45.5187497Z 15:02:45.518 | After built-in stripping: 1 -2026-03-27T14:02:45.5192839Z 15:02:45.518 | After scriptable stripping: 1 -2026-03-27T14:02:45.5197933Z 15:02:45.519 | Processed in 0.00 seconds -2026-03-27T14:02:45.5203537Z 15:02:45.519 | Pass "" (fp) -2026-03-27T14:02:45.5746784Z 15:02:45.520 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:45.5986423Z 15:02:45.582 | Full variant space: 1 -2026-03-27T14:02:45.6254593Z 15:02:45.603 | After settings filtering: 1 -2026-03-27T14:02:45.6354040Z 15:02:45.633 | After built-in stripping: 1 -2026-03-27T14:02:45.6374440Z 15:02:45.635 | After scriptable stripping: 1 -2026-03-27T14:02:45.6396415Z 15:02:45.638 | Processed in 0.00 seconds -2026-03-27T14:02:45.6529677Z 15:02:45.641 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:45.7517571Z 15:02:45.667 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:45.8347094Z 15:02:45.770 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:45.9017218Z 15:02:45.853 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:45.9560200Z 15:02:45.919 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:46.0232853Z 15:02:45.989 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.0636309Z 15:02:46.041 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:46.0842827Z 15:02:46.070 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.0927622Z 15:02:46.087 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:46.0979820Z 15:02:46.094 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.0987971Z 15:02:46.098 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:46.0999110Z 15:02:46.099 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1006805Z 15:02:46.100 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1014170Z 15:02:46.101 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1021909Z 15:02:46.101 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1033400Z 15:02:46.102 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1050435Z 15:02:46.103 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1055811Z 15:02:46.105 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1064513Z 15:02:46.105 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1072062Z 15:02:46.106 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1078304Z 15:02:46.107 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1092982Z 15:02:46.108 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1100438Z 15:02:46.109 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1104757Z 15:02:46.110 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1111372Z 15:02:46.110 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1116970Z 15:02:46.111 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1124882Z 15:02:46.111 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1130225Z 15:02:46.112 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1136763Z 15:02:46.113 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1142928Z 15:02:46.113 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1149354Z 15:02:46.114 | Pass (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1154580Z 15:02:46.115 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1160410Z 15:02:46.115 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1165572Z 15:02:46.116 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1172837Z 15:02:46.116 | Pass (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1177755Z 15:02:46.117 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1185734Z 15:02:46.118 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1199618Z 15:02:46.119 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1207296Z 15:02:46.120 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:46.1212958Z 15:02:46.120 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.1218870Z 15:02:46.121 | Compiling shader "Hidden/Internal-DepthNormalsTexture" -2026-03-27T14:02:46.1225911Z 15:02:46.122 | Pass "" (vp) -2026-03-27T14:02:46.1232072Z 15:02:46.122 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.1238399Z 15:02:46.123 | Full variant space: 1 -2026-03-27T14:02:46.1244139Z 15:02:46.124 | After settings filtering: 1 -2026-03-27T14:02:46.1251352Z 15:02:46.124 | After built-in stripping: 1 -2026-03-27T14:02:46.1256973Z 15:02:46.125 | After scriptable stripping: 1 -2026-03-27T14:02:46.1262484Z 15:02:46.125 | Processed in 0.00 seconds -2026-03-27T14:02:46.1268244Z 15:02:46.126 | Pass "" (fp) -2026-03-27T14:02:46.1274204Z 15:02:46.127 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.1280120Z 15:02:46.127 | Full variant space: 1 -2026-03-27T14:02:46.1285674Z 15:02:46.128 | After settings filtering: 1 -2026-03-27T14:02:46.1292493Z 15:02:46.128 | After built-in stripping: 1 -2026-03-27T14:02:46.1298133Z 15:02:46.129 | After scriptable stripping: 1 -2026-03-27T14:02:46.1303517Z 15:02:46.129 | Processed in 0.00 seconds -2026-03-27T14:02:46.1309439Z 15:02:46.130 | Pass "" (vp) -2026-03-27T14:02:46.1314665Z 15:02:46.131 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.1320467Z 15:02:46.131 | Full variant space: 1 -2026-03-27T14:02:46.1327419Z 15:02:46.132 | After settings filtering: 1 -2026-03-27T14:02:46.1763864Z 15:02:46.132 | After built-in stripping: 1 -2026-03-27T14:02:46.1944035Z 15:02:46.181 | After scriptable stripping: 1 -2026-03-27T14:02:46.2153693Z 15:02:46.195 | Processed in 0.00 seconds -2026-03-27T14:02:46.2354394Z 15:02:46.217 | Pass "" (fp) -2026-03-27T14:02:46.2477786Z 15:02:46.242 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.2686847Z 15:02:46.249 | Full variant space: 1 -2026-03-27T14:02:46.2907914Z 15:02:46.275 | After settings filtering: 1 -2026-03-27T14:02:46.3132814Z 15:02:46.297 | After built-in stripping: 1 -2026-03-27T14:02:46.3270148Z 15:02:46.314 | After scriptable stripping: 1 -2026-03-27T14:02:46.3518033Z 15:02:46.331 | Processed in 0.00 seconds -2026-03-27T14:02:46.3820079Z 15:02:46.362 | Pass "" (vp) -2026-03-27T14:02:46.4108352Z 15:02:46.391 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.4589685Z 15:02:46.424 | Full variant space: 1 -2026-03-27T14:02:46.4882165Z 15:02:46.468 | After settings filtering: 1 -2026-03-27T14:02:46.5124259Z 15:02:46.494 | After built-in stripping: 1 -2026-03-27T14:02:46.5444148Z 15:02:46.522 | After scriptable stripping: 1 -2026-03-27T14:02:46.5644421Z 15:02:46.552 | Processed in 0.00 seconds -2026-03-27T14:02:46.5848705Z 15:02:46.569 | Pass "" (fp) -2026-03-27T14:02:46.6154907Z 15:02:46.593 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.6513680Z 15:02:46.629 | Full variant space: 1 -2026-03-27T14:02:46.6828603Z 15:02:46.662 | After settings filtering: 1 -2026-03-27T14:02:46.7057672Z 15:02:46.689 | After built-in stripping: 1 -2026-03-27T14:02:46.7350217Z 15:02:46.715 | After scriptable stripping: 1 -2026-03-27T14:02:46.7431253Z 15:02:46.737 | Processed in 0.00 seconds -2026-03-27T14:02:46.7719736Z 15:02:46.751 | Pass "" (vp) -2026-03-27T14:02:46.8002600Z 15:02:46.779 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.8221467Z 15:02:46.808 | Full variant space: 1 -2026-03-27T14:02:46.8462841Z 15:02:46.829 | After settings filtering: 1 -2026-03-27T14:02:46.8704704Z 15:02:46.851 | After built-in stripping: 1 -2026-03-27T14:02:46.8753006Z 15:02:46.873 | After scriptable stripping: 1 -2026-03-27T14:02:46.8788901Z 15:02:46.877 | Processed in 0.00 seconds -2026-03-27T14:02:46.8809007Z 15:02:46.879 | Pass "" (fp) -2026-03-27T14:02:46.8861022Z 15:02:46.882 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.8880477Z 15:02:46.886 | Full variant space: 1 -2026-03-27T14:02:46.8891617Z 15:02:46.888 | After settings filtering: 1 -2026-03-27T14:02:46.8900285Z 15:02:46.889 | After built-in stripping: 1 -2026-03-27T14:02:46.8910719Z 15:02:46.890 | After scriptable stripping: 1 -2026-03-27T14:02:46.8918682Z 15:02:46.891 | Processed in 0.00 seconds -2026-03-27T14:02:46.8926424Z 15:02:46.892 | Pass "" (vp) -2026-03-27T14:02:46.8933340Z 15:02:46.892 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.8939780Z 15:02:46.893 | Full variant space: 1 -2026-03-27T14:02:46.8947362Z 15:02:46.894 | After settings filtering: 1 -2026-03-27T14:02:46.8954642Z 15:02:46.895 | After built-in stripping: 1 -2026-03-27T14:02:46.8962789Z 15:02:46.895 | After scriptable stripping: 1 -2026-03-27T14:02:46.8970288Z 15:02:46.896 | Processed in 0.00 seconds -2026-03-27T14:02:46.8976765Z 15:02:46.897 | Pass "" (fp) -2026-03-27T14:02:46.8987876Z 15:02:46.898 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.8993453Z 15:02:46.898 | Full variant space: 1 -2026-03-27T14:02:46.9002626Z 15:02:46.899 | After settings filtering: 1 -2026-03-27T14:02:46.9010378Z 15:02:46.900 | After built-in stripping: 1 -2026-03-27T14:02:46.9028675Z 15:02:46.901 | After scriptable stripping: 1 -2026-03-27T14:02:46.9035905Z 15:02:46.903 | Processed in 0.00 seconds -2026-03-27T14:02:46.9042334Z 15:02:46.903 | Pass "" (vp) -2026-03-27T14:02:46.9050757Z 15:02:46.904 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9059098Z 15:02:46.905 | Full variant space: 1 -2026-03-27T14:02:46.9067072Z 15:02:46.906 | After settings filtering: 1 -2026-03-27T14:02:46.9075282Z 15:02:46.907 | After built-in stripping: 1 -2026-03-27T14:02:46.9084266Z 15:02:46.907 | After scriptable stripping: 1 -2026-03-27T14:02:46.9091967Z 15:02:46.908 | Processed in 0.00 seconds -2026-03-27T14:02:46.9099884Z 15:02:46.909 | Pass "" (fp) -2026-03-27T14:02:46.9106788Z 15:02:46.910 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9111008Z 15:02:46.910 | Full variant space: 1 -2026-03-27T14:02:46.9116266Z 15:02:46.911 | After settings filtering: 1 -2026-03-27T14:02:46.9121603Z 15:02:46.911 | After built-in stripping: 1 -2026-03-27T14:02:46.9127104Z 15:02:46.912 | After scriptable stripping: 1 -2026-03-27T14:02:46.9132773Z 15:02:46.912 | Processed in 0.00 seconds -2026-03-27T14:02:46.9138023Z 15:02:46.913 | Pass "" (vp) -2026-03-27T14:02:46.9143485Z 15:02:46.913 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9148682Z 15:02:46.914 | Full variant space: 1 -2026-03-27T14:02:46.9153715Z 15:02:46.915 | After settings filtering: 1 -2026-03-27T14:02:46.9158627Z 15:02:46.915 | After built-in stripping: 1 -2026-03-27T14:02:46.9163731Z 15:02:46.915 | After scriptable stripping: 1 -2026-03-27T14:02:46.9172502Z 15:02:46.916 | Processed in 0.00 seconds -2026-03-27T14:02:46.9179084Z 15:02:46.917 | Pass "" (fp) -2026-03-27T14:02:46.9184442Z 15:02:46.918 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9189931Z 15:02:46.918 | Full variant space: 1 -2026-03-27T14:02:46.9195385Z 15:02:46.919 | After settings filtering: 1 -2026-03-27T14:02:46.9200836Z 15:02:46.919 | After built-in stripping: 1 -2026-03-27T14:02:46.9206273Z 15:02:46.920 | After scriptable stripping: 1 -2026-03-27T14:02:46.9211945Z 15:02:46.920 | Processed in 0.00 seconds -2026-03-27T14:02:46.9217098Z 15:02:46.921 | Pass "" (vp) -2026-03-27T14:02:46.9222760Z 15:02:46.921 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9228149Z 15:02:46.922 | Full variant space: 1 -2026-03-27T14:02:46.9234186Z 15:02:46.922 | After settings filtering: 1 -2026-03-27T14:02:46.9240279Z 15:02:46.923 | After built-in stripping: 1 -2026-03-27T14:02:46.9250672Z 15:02:46.924 | After scriptable stripping: 1 -2026-03-27T14:02:46.9258086Z 15:02:46.925 | Processed in 0.00 seconds -2026-03-27T14:02:46.9263550Z 15:02:46.925 | Pass "" (fp) -2026-03-27T14:02:46.9269428Z 15:02:46.926 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9274882Z 15:02:46.927 | Full variant space: 1 -2026-03-27T14:02:46.9280678Z 15:02:46.927 | After settings filtering: 1 -2026-03-27T14:02:46.9293891Z 15:02:46.928 | After built-in stripping: 1 -2026-03-27T14:02:46.9299339Z 15:02:46.929 | After scriptable stripping: 1 -2026-03-27T14:02:46.9304289Z 15:02:46.930 | Processed in 0.00 seconds -2026-03-27T14:02:46.9309374Z 15:02:46.930 | Pass "" (vp) -2026-03-27T14:02:46.9314498Z 15:02:46.931 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9319505Z 15:02:46.931 | Full variant space: 1 -2026-03-27T14:02:46.9328668Z 15:02:46.932 | After settings filtering: 1 -2026-03-27T14:02:46.9335029Z 15:02:46.933 | After built-in stripping: 1 -2026-03-27T14:02:46.9341787Z 15:02:46.933 | After scriptable stripping: 1 -2026-03-27T14:02:46.9349904Z 15:02:46.934 | Processed in 0.00 seconds -2026-03-27T14:02:46.9361964Z 15:02:46.935 | Pass "" (fp) -2026-03-27T14:02:46.9369360Z 15:02:46.936 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9375790Z 15:02:46.937 | Full variant space: 1 -2026-03-27T14:02:46.9384184Z 15:02:46.937 | After settings filtering: 1 -2026-03-27T14:02:46.9392518Z 15:02:46.938 | After built-in stripping: 1 -2026-03-27T14:02:46.9398659Z 15:02:46.939 | After scriptable stripping: 1 -2026-03-27T14:02:46.9404914Z 15:02:46.940 | Processed in 0.00 seconds -2026-03-27T14:02:46.9412456Z 15:02:46.940 | Pass "" (vp) -2026-03-27T14:02:46.9417950Z 15:02:46.941 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9423712Z 15:02:46.941 | Full variant space: 1 -2026-03-27T14:02:46.9429639Z 15:02:46.942 | After settings filtering: 1 -2026-03-27T14:02:46.9435170Z 15:02:46.943 | After built-in stripping: 1 -2026-03-27T14:02:46.9441896Z 15:02:46.943 | After scriptable stripping: 1 -2026-03-27T14:02:46.9447585Z 15:02:46.944 | Processed in 0.00 seconds -2026-03-27T14:02:46.9453535Z 15:02:46.944 | Pass "" (fp) -2026-03-27T14:02:46.9458899Z 15:02:46.945 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9463951Z 15:02:46.946 | Full variant space: 1 -2026-03-27T14:02:46.9469454Z 15:02:46.946 | After settings filtering: 1 -2026-03-27T14:02:46.9474538Z 15:02:46.947 | After built-in stripping: 1 -2026-03-27T14:02:46.9479577Z 15:02:46.947 | After scriptable stripping: 1 -2026-03-27T14:02:46.9494800Z 15:02:46.949 | Processed in 0.00 seconds -2026-03-27T14:02:46.9500391Z 15:02:46.949 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.15s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9505347Z 15:02:46.950 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9511530Z 15:02:46.950 | Pass (fp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9516758Z 15:02:46.951 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9522185Z 15:02:46.951 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.14s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9527575Z 15:02:46.952 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9533001Z 15:02:46.952 | Pass (fp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9537786Z 15:02:46.953 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9543966Z 15:02:46.953 | Pass (vp, gamecore_scarlett) finished in 0.21 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.21s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9548379Z 15:02:46.954 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9554237Z 15:02:46.954 | Pass (fp, gamecore_scarlett) finished in 0.17 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9559044Z 15:02:46.955 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9565086Z 15:02:46.956 | Pass (vp, gamecore_scarlett) finished in 0.18 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.18s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9570060Z 15:02:46.956 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9576987Z 15:02:46.957 | Pass (fp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9581890Z 15:02:46.957 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9588588Z 15:02:46.958 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.15s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9593454Z 15:02:46.958 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9599043Z 15:02:46.959 | Pass (fp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9609487Z 15:02:46.959 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9611106Z 15:02:46.960 | Pass (vp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.16s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9615549Z 15:02:46.961 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9621307Z 15:02:46.961 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9626416Z 15:02:46.962 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9632429Z 15:02:46.962 | Pass (vp, gamecore_scarlett) finished in 0.18 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.18s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9653449Z 15:02:46.963 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9666333Z 15:02:46.966 | Pass (fp, gamecore_scarlett) finished in 0.17 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9673169Z 15:02:46.967 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9680610Z 15:02:46.967 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9685611Z 15:02:46.968 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9693548Z 15:02:46.968 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9699827Z 15:02:46.969 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9705140Z 15:02:46.970 | Pass (vp, gamecore_scarlett) finished in 0.22 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.22s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9712209Z 15:02:46.970 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9719191Z 15:02:46.971 | Pass (fp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9726542Z 15:02:46.972 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9732850Z 15:02:46.972 | Pass (vp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.14s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9739417Z 15:02:46.973 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9746647Z 15:02:46.974 | Pass (fp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:46.9754389Z 15:02:46.975 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:46.9761200Z 15:02:46.975 | Serialized binary data for shader Hidden/Internal-DepthNormalsTexture in 0.00s -2026-03-27T14:02:46.9773509Z 15:02:46.976 | gamecore_scarlett (total internal programs: 20, unique: 17) -2026-03-27T14:02:46.9781917Z 15:02:46.977 | Compiling shader "Hidden/Internal-ScreenSpaceShadows" -2026-03-27T14:02:46.9788471Z 15:02:46.978 | Pass "" (vp) -2026-03-27T14:02:46.9798830Z 15:02:46.979 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9805301Z 15:02:46.980 | Full variant space: 4 -2026-03-27T14:02:46.9812173Z 15:02:46.980 | After settings filtering: 4 -2026-03-27T14:02:46.9818004Z 15:02:46.981 | After built-in stripping: 4 -2026-03-27T14:02:46.9823644Z 15:02:46.981 | After scriptable stripping: 4 -2026-03-27T14:02:46.9829902Z 15:02:46.982 | Processed in 0.00 seconds -2026-03-27T14:02:46.9837009Z 15:02:46.983 | Pass "" (fp) -2026-03-27T14:02:46.9843946Z 15:02:46.983 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9848969Z 15:02:46.984 | Full variant space: 4 -2026-03-27T14:02:46.9854906Z 15:02:46.985 | After settings filtering: 4 -2026-03-27T14:02:46.9860554Z 15:02:46.985 | After built-in stripping: 4 -2026-03-27T14:02:46.9866437Z 15:02:46.986 | After scriptable stripping: 4 -2026-03-27T14:02:46.9871514Z 15:02:46.986 | Processed in 0.00 seconds -2026-03-27T14:02:46.9877070Z 15:02:46.987 | Pass "" (vp) -2026-03-27T14:02:46.9883041Z 15:02:46.987 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9889878Z 15:02:46.988 | Full variant space: 4 -2026-03-27T14:02:46.9895179Z 15:02:46.989 | After settings filtering: 4 -2026-03-27T14:02:46.9900755Z 15:02:46.989 | After built-in stripping: 4 -2026-03-27T14:02:46.9905465Z 15:02:46.990 | After scriptable stripping: 4 -2026-03-27T14:02:46.9910706Z 15:02:46.990 | Processed in 0.00 seconds -2026-03-27T14:02:46.9917577Z 15:02:46.991 | Pass "" (fp) -2026-03-27T14:02:46.9923586Z 15:02:46.991 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9930122Z 15:02:46.992 | Full variant space: 4 -2026-03-27T14:02:46.9936060Z 15:02:46.993 | After settings filtering: 4 -2026-03-27T14:02:46.9942272Z 15:02:46.993 | After built-in stripping: 4 -2026-03-27T14:02:46.9954472Z 15:02:46.994 | After scriptable stripping: 4 -2026-03-27T14:02:46.9961238Z 15:02:46.995 | Processed in 0.00 seconds -2026-03-27T14:02:46.9967392Z 15:02:46.996 | Pass "" (vp) -2026-03-27T14:02:46.9972912Z 15:02:46.996 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:46.9978672Z 15:02:46.997 | Full variant space: 4 -2026-03-27T14:02:46.9984078Z 15:02:46.998 | After settings filtering: 4 -2026-03-27T14:02:46.9989325Z 15:02:46.998 | After built-in stripping: 4 -2026-03-27T14:02:46.9995328Z 15:02:46.999 | After scriptable stripping: 4 -2026-03-27T14:02:47.0000430Z 15:02:46.999 | Processed in 0.00 seconds -2026-03-27T14:02:47.0006910Z 15:02:47.000 | Pass "" (fp) -2026-03-27T14:02:47.0013331Z 15:02:47.000 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0018865Z 15:02:47.001 | Full variant space: 4 -2026-03-27T14:02:47.0024509Z 15:02:47.002 | After settings filtering: 4 -2026-03-27T14:02:47.0030095Z 15:02:47.002 | After built-in stripping: 4 -2026-03-27T14:02:47.0035499Z 15:02:47.003 | After scriptable stripping: 4 -2026-03-27T14:02:47.0040793Z 15:02:47.003 | Processed in 0.00 seconds -2026-03-27T14:02:47.0047072Z 15:02:47.004 | Pass "" (vp) -2026-03-27T14:02:47.0053397Z 15:02:47.004 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0058981Z 15:02:47.005 | Full variant space: 4 -2026-03-27T14:02:47.0064547Z 15:02:47.006 | After settings filtering: 4 -2026-03-27T14:02:47.0070794Z 15:02:47.006 | After built-in stripping: 4 -2026-03-27T14:02:47.0077153Z 15:02:47.007 | After scriptable stripping: 4 -2026-03-27T14:02:47.0083109Z 15:02:47.007 | Processed in 0.00 seconds -2026-03-27T14:02:47.0089426Z 15:02:47.008 | Pass "" (fp) -2026-03-27T14:02:47.0110445Z 15:02:47.009 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0129034Z 15:02:47.012 | Full variant space: 4 -2026-03-27T14:02:47.0135145Z 15:02:47.013 | After settings filtering: 4 -2026-03-27T14:02:47.0142695Z 15:02:47.013 | After built-in stripping: 4 -2026-03-27T14:02:47.0150129Z 15:02:47.014 | After scriptable stripping: 4 -2026-03-27T14:02:47.0156178Z 15:02:47.015 | Processed in 0.00 seconds -2026-03-27T14:02:47.0162556Z 15:02:47.015 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.23s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0170256Z 15:02:47.016 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0178290Z 15:02:47.017 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.25s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0184541Z 15:02:47.018 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0195972Z 15:02:47.018 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.24s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0204958Z 15:02:47.020 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0218217Z 15:02:47.020 | Pass (fp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.46s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0224426Z 15:02:47.022 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0230855Z 15:02:47.022 | Pass (vp, gamecore_scarlett) finished in 0.17 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.44s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0235687Z 15:02:47.023 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0241980Z 15:02:47.023 | Pass (fp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.60s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0250389Z 15:02:47.024 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0257893Z 15:02:47.025 | Pass (vp, gamecore_scarlett) finished in 0.20 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.35s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0262971Z 15:02:47.025 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0268930Z 15:02:47.026 | Pass (fp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.33s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0274233Z 15:02:47.027 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0280189Z 15:02:47.027 | Compiling shader "Hidden/Internal-ScreenSpaceShadows" -2026-03-27T14:02:47.0286049Z 15:02:47.028 | Pass "" (vp) -2026-03-27T14:02:47.0292603Z 15:02:47.028 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0298131Z 15:02:47.029 | Full variant space: 4 -2026-03-27T14:02:47.0303864Z 15:02:47.029 | After settings filtering: 4 -2026-03-27T14:02:47.0309499Z 15:02:47.030 | After built-in stripping: 4 -2026-03-27T14:02:47.0315024Z 15:02:47.031 | After scriptable stripping: 4 -2026-03-27T14:02:47.0320869Z 15:02:47.031 | Processed in 0.00 seconds -2026-03-27T14:02:47.0327116Z 15:02:47.032 | Pass "" (fp) -2026-03-27T14:02:47.0333554Z 15:02:47.032 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0338910Z 15:02:47.033 | Full variant space: 4 -2026-03-27T14:02:47.0344423Z 15:02:47.034 | After settings filtering: 4 -2026-03-27T14:02:47.0350486Z 15:02:47.034 | After built-in stripping: 4 -2026-03-27T14:02:47.0356297Z 15:02:47.035 | After scriptable stripping: 4 -2026-03-27T14:02:47.0361830Z 15:02:47.035 | Processed in 0.00 seconds -2026-03-27T14:02:47.0367518Z 15:02:47.036 | Pass "" (vp) -2026-03-27T14:02:47.0374825Z 15:02:47.037 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0380832Z 15:02:47.037 | Full variant space: 4 -2026-03-27T14:02:47.0386546Z 15:02:47.038 | After settings filtering: 4 -2026-03-27T14:02:47.0392151Z 15:02:47.038 | After built-in stripping: 4 -2026-03-27T14:02:47.0398275Z 15:02:47.039 | After scriptable stripping: 4 -2026-03-27T14:02:47.0403722Z 15:02:47.039 | Processed in 0.00 seconds -2026-03-27T14:02:47.0422749Z 15:02:47.040 | Pass "" (fp) -2026-03-27T14:02:47.0432254Z 15:02:47.042 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0439028Z 15:02:47.043 | Full variant space: 4 -2026-03-27T14:02:47.0443474Z 15:02:47.043 | After settings filtering: 4 -2026-03-27T14:02:47.0448873Z 15:02:47.044 | After built-in stripping: 4 -2026-03-27T14:02:47.0454365Z 15:02:47.045 | After scriptable stripping: 4 -2026-03-27T14:02:47.0461540Z 15:02:47.045 | Processed in 0.00 seconds -2026-03-27T14:02:47.0468830Z 15:02:47.046 | Pass "" (vp) -2026-03-27T14:02:47.0475236Z 15:02:47.047 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0482174Z 15:02:47.047 | Full variant space: 4 -2026-03-27T14:02:47.0488577Z 15:02:47.048 | After settings filtering: 4 -2026-03-27T14:02:47.0494429Z 15:02:47.049 | After built-in stripping: 4 -2026-03-27T14:02:47.0500364Z 15:02:47.049 | After scriptable stripping: 4 -2026-03-27T14:02:47.0505556Z 15:02:47.050 | Processed in 0.00 seconds -2026-03-27T14:02:47.0510785Z 15:02:47.050 | Pass "" (fp) -2026-03-27T14:02:47.0516136Z 15:02:47.051 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0521960Z 15:02:47.051 | Full variant space: 4 -2026-03-27T14:02:47.0527369Z 15:02:47.052 | After settings filtering: 4 -2026-03-27T14:02:47.0532787Z 15:02:47.052 | After built-in stripping: 4 -2026-03-27T14:02:47.0537862Z 15:02:47.053 | After scriptable stripping: 4 -2026-03-27T14:02:47.0542801Z 15:02:47.053 | Processed in 0.00 seconds -2026-03-27T14:02:47.0548240Z 15:02:47.054 | Pass "" (vp) -2026-03-27T14:02:47.0553573Z 15:02:47.054 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0559909Z 15:02:47.055 | Full variant space: 4 -2026-03-27T14:02:47.0567115Z 15:02:47.056 | After settings filtering: 4 -2026-03-27T14:02:47.0572357Z 15:02:47.056 | After built-in stripping: 4 -2026-03-27T14:02:47.0578080Z 15:02:47.057 | After scriptable stripping: 4 -2026-03-27T14:02:47.0583709Z 15:02:47.057 | Processed in 0.00 seconds -2026-03-27T14:02:47.0588890Z 15:02:47.058 | Pass "" (fp) -2026-03-27T14:02:47.0594476Z 15:02:47.059 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0599741Z 15:02:47.059 | Full variant space: 4 -2026-03-27T14:02:47.0604982Z 15:02:47.060 | After settings filtering: 4 -2026-03-27T14:02:47.0615901Z 15:02:47.060 | After built-in stripping: 4 -2026-03-27T14:02:47.0622324Z 15:02:47.061 | After scriptable stripping: 4 -2026-03-27T14:02:47.0627389Z 15:02:47.062 | Processed in 0.00 seconds -2026-03-27T14:02:47.0633765Z 15:02:47.062 | Pass (vp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.47s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0638605Z 15:02:47.063 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0644256Z 15:02:47.063 | Pass (fp, gamecore_scarlett) finished in 0.20 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.34s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0649458Z 15:02:47.064 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0655157Z 15:02:47.065 | Pass (vp, gamecore_scarlett) finished in 0.22 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.56s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0659656Z 15:02:47.065 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0665310Z 15:02:47.066 | Pass (fp, gamecore_scarlett) finished in 0.20 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.42s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0669703Z 15:02:47.066 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0675595Z 15:02:47.067 | Pass (vp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.50s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0681594Z 15:02:47.067 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0687056Z 15:02:47.068 | Pass (fp, gamecore_scarlett) finished in 0.21 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.54s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0692741Z 15:02:47.068 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0698633Z 15:02:47.069 | Pass (vp, gamecore_scarlett) finished in 0.25 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.52s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0703844Z 15:02:47.069 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0709809Z 15:02:47.070 | Pass (fp, gamecore_scarlett) finished in 0.22 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.46s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0714648Z 15:02:47.071 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0729731Z 15:02:47.071 | Serialized binary data for shader Hidden/Internal-ScreenSpaceShadows in 0.00s -2026-03-27T14:02:47.0759353Z 15:02:47.073 | gamecore_scarlett (total internal programs: 32, unique: 20) -2026-03-27T14:02:47.0787585Z 15:02:47.076 | Compiling shader "Hidden/Internal-CombineDepthNormals" -2026-03-27T14:02:47.0795388Z 15:02:47.079 | Pass "" (vp) -2026-03-27T14:02:47.0802673Z 15:02:47.079 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0809908Z 15:02:47.080 | Full variant space: 1 -2026-03-27T14:02:47.0815963Z 15:02:47.081 | After settings filtering: 1 -2026-03-27T14:02:47.0822564Z 15:02:47.081 | After built-in stripping: 1 -2026-03-27T14:02:47.0829127Z 15:02:47.082 | After scriptable stripping: 1 -2026-03-27T14:02:47.0835140Z 15:02:47.083 | Processed in 0.00 seconds -2026-03-27T14:02:47.0840387Z 15:02:47.083 | Pass "" (fp) -2026-03-27T14:02:47.0848505Z 15:02:47.084 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0857929Z 15:02:47.085 | Full variant space: 1 -2026-03-27T14:02:47.0863599Z 15:02:47.086 | After settings filtering: 1 -2026-03-27T14:02:47.0870725Z 15:02:47.086 | After built-in stripping: 1 -2026-03-27T14:02:47.0877259Z 15:02:47.087 | After scriptable stripping: 1 -2026-03-27T14:02:47.0887938Z 15:02:47.087 | Processed in 0.00 seconds -2026-03-27T14:02:47.0895595Z 15:02:47.089 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0900624Z 15:02:47.089 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0906774Z 15:02:47.090 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:47.0912005Z 15:02:47.090 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.0917909Z 15:02:47.091 | Compiling shader "Hidden/Internal-CombineDepthNormals" -2026-03-27T14:02:47.0924326Z 15:02:47.092 | Pass "" (vp) -2026-03-27T14:02:47.0930430Z 15:02:47.092 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0936436Z 15:02:47.093 | Full variant space: 1 -2026-03-27T14:02:47.0942264Z 15:02:47.093 | After settings filtering: 1 -2026-03-27T14:02:47.0947879Z 15:02:47.094 | After built-in stripping: 1 -2026-03-27T14:02:47.0953770Z 15:02:47.094 | After scriptable stripping: 1 -2026-03-27T14:02:47.0959093Z 15:02:47.095 | Processed in 0.00 seconds -2026-03-27T14:02:47.0965090Z 15:02:47.096 | Pass "" (fp) -2026-03-27T14:02:47.0971858Z 15:02:47.096 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.0977380Z 15:02:47.097 | Full variant space: 1 -2026-03-27T14:02:47.0983682Z 15:02:47.097 | After settings filtering: 1 -2026-03-27T14:02:47.0989035Z 15:02:47.098 | After built-in stripping: 1 -2026-03-27T14:02:47.0997076Z 15:02:47.099 | After scriptable stripping: 1 -2026-03-27T14:02:47.1001264Z 15:02:47.099 | Processed in 0.00 seconds -2026-03-27T14:02:47.1008299Z 15:02:47.100 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:47.1013499Z 15:02:47.100 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.1019528Z 15:02:47.101 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:47.1027344Z 15:02:47.102 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.1037606Z 15:02:47.102 | Serialized binary data for shader Hidden/Internal-CombineDepthNormals in 0.00s -2026-03-27T14:02:47.1045329Z 15:02:47.104 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:47.1055603Z 15:02:47.104 | Compiling shader "Hidden/BlitCopy" -2026-03-27T14:02:47.1071301Z 15:02:47.105 | Pass "" (vp) -2026-03-27T14:02:47.1079525Z 15:02:47.107 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.1093431Z 15:02:47.108 | Full variant space: 1 -2026-03-27T14:02:47.1100792Z 15:02:47.109 | After settings filtering: 1 -2026-03-27T14:02:47.1108263Z 15:02:47.110 | After built-in stripping: 1 -2026-03-27T14:02:47.1114777Z 15:02:47.111 | After scriptable stripping: 1 -2026-03-27T14:02:47.1121083Z 15:02:47.111 | Processed in 0.00 seconds -2026-03-27T14:02:47.1126836Z 15:02:47.112 | Pass "" (fp) -2026-03-27T14:02:47.1132570Z 15:02:47.112 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.1138292Z 15:02:47.113 | Full variant space: 1 -2026-03-27T14:02:47.1144334Z 15:02:47.114 | After settings filtering: 1 -2026-03-27T14:02:47.1149198Z 15:02:47.114 | After built-in stripping: 1 -2026-03-27T14:02:47.1156453Z 15:02:47.115 | After scriptable stripping: 1 -2026-03-27T14:02:47.1160899Z 15:02:47.115 | Processed in 0.00 seconds -2026-03-27T14:02:47.1169174Z 15:02:47.116 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:47.1176605Z 15:02:47.117 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.1193346Z 15:02:47.118 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:47.1202216Z 15:02:47.119 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.1210050Z 15:02:47.120 | Compiling shader "Hidden/BlitCopy" -2026-03-27T14:02:47.1215985Z 15:02:47.121 | Pass "" (vp) -2026-03-27T14:02:47.1221305Z 15:02:47.121 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.1227082Z 15:02:47.122 | Full variant space: 1 -2026-03-27T14:02:47.1232629Z 15:02:47.122 | After settings filtering: 1 -2026-03-27T14:02:47.1238495Z 15:02:47.123 | After built-in stripping: 1 -2026-03-27T14:02:47.1244615Z 15:02:47.124 | After scriptable stripping: 1 -2026-03-27T14:02:47.1250900Z 15:02:47.124 | Processed in 0.00 seconds -2026-03-27T14:02:47.1256926Z 15:02:47.125 | Pass "" (fp) -2026-03-27T14:02:47.1262521Z 15:02:47.125 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.1268461Z 15:02:47.126 | Full variant space: 1 -2026-03-27T14:02:47.1274480Z 15:02:47.127 | After settings filtering: 1 -2026-03-27T14:02:47.1280790Z 15:02:47.127 | After built-in stripping: 1 -2026-03-27T14:02:47.1287075Z 15:02:47.128 | After scriptable stripping: 1 -2026-03-27T14:02:47.1292959Z 15:02:47.128 | Processed in 0.00 seconds -2026-03-27T14:02:47.5644849Z 15:02:47.540 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:47.6108953Z 15:02:47.585 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.6468763Z 15:02:47.621 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:47.6819588Z 15:02:47.655 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:47.7180781Z 15:02:47.694 | Serialized binary data for shader Hidden/BlitCopy in 0.00s -2026-03-27T14:02:47.7434443Z 15:02:47.724 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:47.7688615Z 15:02:47.751 | Compiling shader "Hidden/BlitCopyDepth" -2026-03-27T14:02:47.8072483Z 15:02:47.779 | Pass "" (vp) -2026-03-27T14:02:47.8374096Z 15:02:47.815 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:47.8736389Z 15:02:47.849 | Full variant space: 1 -2026-03-27T14:02:47.9076149Z 15:02:47.883 | After settings filtering: 1 -2026-03-27T14:02:47.9458294Z 15:02:47.915 | After built-in stripping: 1 -2026-03-27T14:02:47.9801142Z 15:02:47.955 | After scriptable stripping: 1 -2026-03-27T14:02:48.0188203Z 15:02:47.993 | Processed in 0.00 seconds -2026-03-27T14:02:48.0680984Z 15:02:48.028 | Pass "" (fp) -2026-03-27T14:02:48.0982080Z 15:02:48.076 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:48.1284833Z 15:02:48.108 | Full variant space: 1 -2026-03-27T14:02:48.1383784Z 15:02:48.135 | After settings filtering: 1 -2026-03-27T14:02:48.1409140Z 15:02:48.139 | After built-in stripping: 1 -2026-03-27T14:02:48.1417927Z 15:02:48.141 | After scriptable stripping: 1 -2026-03-27T14:02:48.1432605Z 15:02:48.142 | Processed in 0.00 seconds -2026-03-27T14:02:48.1439841Z 15:02:48.143 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:48.1450135Z 15:02:48.144 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:48.1456639Z 15:02:48.145 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:48.1461396Z 15:02:48.145 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:48.1466811Z 15:02:48.146 | Compiling shader "Hidden/BlitCopyDepth" -2026-03-27T14:02:48.1472893Z 15:02:48.146 | Pass "" (vp) -2026-03-27T14:02:48.1486625Z 15:02:48.147 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:48.1493850Z 15:02:48.148 | Full variant space: 1 -2026-03-27T14:02:48.1499609Z 15:02:48.149 | After settings filtering: 1 -2026-03-27T14:02:48.1505805Z 15:02:48.150 | After built-in stripping: 1 -2026-03-27T14:02:48.1512304Z 15:02:48.150 | After scriptable stripping: 1 -2026-03-27T14:02:48.1518219Z 15:02:48.151 | Processed in 0.00 seconds -2026-03-27T14:02:48.1535517Z 15:02:48.151 | Pass "" (fp) -2026-03-27T14:02:48.1543365Z 15:02:48.153 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:48.1549612Z 15:02:48.154 | Full variant space: 1 -2026-03-27T14:02:48.2086930Z 15:02:48.161 | After settings filtering: 1 -2026-03-27T14:02:48.2390702Z 15:02:48.216 | After built-in stripping: 1 -2026-03-27T14:02:48.2701776Z 15:02:48.248 | After scriptable stripping: 1 -2026-03-27T14:02:48.2868857Z 15:02:48.283 | Processed in 0.00 seconds -2026-03-27T14:02:48.2884030Z 15:02:48.287 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:48.3146053Z 15:02:48.290 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:48.3423157Z 15:02:48.320 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:48.3727404Z 15:02:48.350 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:48.4149736Z 15:02:48.382 | Serialized binary data for shader Hidden/BlitCopyDepth in 0.00s -2026-03-27T14:02:48.4470727Z 15:02:48.427 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:48.4877597Z 15:02:48.458 | Compiling shader "Hidden/ConvertTexture" -2026-03-27T14:02:48.5359882Z 15:02:48.496 | Pass "" (vp) -2026-03-27T14:02:48.5779438Z 15:02:48.547 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:48.6261816Z 15:02:48.588 | Full variant space: 1 -2026-03-27T14:02:48.6688220Z 15:02:48.642 | After settings filtering: 1 -2026-03-27T14:02:48.7005150Z 15:02:48.679 | After built-in stripping: 1 -2026-03-27T14:02:48.7353549Z 15:02:48.708 | After scriptable stripping: 1 -2026-03-27T14:02:48.7766746Z 15:02:48.746 | Processed in 0.00 seconds -2026-03-27T14:02:48.8046914Z 15:02:48.783 | Pass "" (fp) -2026-03-27T14:02:48.8309784Z 15:02:48.813 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:48.8598626Z 15:02:48.841 | Full variant space: 1 -2026-03-27T14:02:48.8822458Z 15:02:48.867 | After settings filtering: 1 -2026-03-27T14:02:48.9220092Z 15:02:48.887 | After built-in stripping: 1 -2026-03-27T14:02:48.9554713Z 15:02:48.930 | After scriptable stripping: 1 -2026-03-27T14:02:48.9848334Z 15:02:48.963 | Processed in 0.00 seconds -2026-03-27T14:02:49.0216984Z 15:02:48.995 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:49.0555205Z 15:02:49.031 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.0877069Z 15:02:49.064 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:49.1243581Z 15:02:49.097 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.1636707Z 15:02:49.134 | Compiling shader "Hidden/ConvertTexture" -2026-03-27T14:02:49.1982434Z 15:02:49.172 | Pass "" (vp) -2026-03-27T14:02:49.2331098Z 15:02:49.204 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.2642977Z 15:02:49.241 | Full variant space: 1 -2026-03-27T14:02:49.2952779Z 15:02:49.271 | After settings filtering: 1 -2026-03-27T14:02:49.3295278Z 15:02:49.303 | After built-in stripping: 1 -2026-03-27T14:02:49.3676408Z 15:02:49.341 | After scriptable stripping: 1 -2026-03-27T14:02:49.4015234Z 15:02:49.377 | Processed in 0.00 seconds -2026-03-27T14:02:49.4333669Z 15:02:49.410 | Pass "" (fp) -2026-03-27T14:02:49.4489576Z 15:02:49.437 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.4532095Z 15:02:49.450 | Full variant space: 1 -2026-03-27T14:02:49.4557838Z 15:02:49.454 | After settings filtering: 1 -2026-03-27T14:02:49.4580435Z 15:02:49.456 | After built-in stripping: 1 -2026-03-27T14:02:49.4600321Z 15:02:49.458 | After scriptable stripping: 1 -2026-03-27T14:02:49.4623760Z 15:02:49.460 | Processed in 0.00 seconds -2026-03-27T14:02:49.4666329Z 15:02:49.464 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:49.4673686Z 15:02:49.466 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.4681205Z 15:02:49.467 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:49.4689035Z 15:02:49.468 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.4696034Z 15:02:49.469 | Serialized binary data for shader Hidden/ConvertTexture in 0.00s -2026-03-27T14:02:49.4702438Z 15:02:49.469 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:49.4708636Z 15:02:49.470 | Compiling shader "Hidden/Internal-DeferredShading" -2026-03-27T14:02:49.4714946Z 15:02:49.471 | Pass "" (vp) -2026-03-27T14:02:49.4721373Z 15:02:49.471 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.4729088Z 15:02:49.472 | Full variant space: 94 -2026-03-27T14:02:49.4735650Z 15:02:49.473 | After settings filtering: 94 -2026-03-27T14:02:49.4742426Z 15:02:49.473 | After built-in stripping: 26 -2026-03-27T14:02:49.4749579Z 15:02:49.474 | After scriptable stripping: 26 -2026-03-27T14:02:49.4757090Z 15:02:49.475 | Processed in 0.00 seconds -2026-03-27T14:02:49.4766478Z 15:02:49.476 | Pass "" (fp) -2026-03-27T14:02:49.4773400Z 15:02:49.476 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.4780314Z 15:02:49.477 | Full variant space: 94 -2026-03-27T14:02:49.4801249Z 15:02:49.478 | After settings filtering: 94 -2026-03-27T14:02:49.4811599Z 15:02:49.480 | After built-in stripping: 26 -2026-03-27T14:02:49.4818945Z 15:02:49.481 | After scriptable stripping: 26 -2026-03-27T14:02:49.4824284Z 15:02:49.482 | Processed in 0.00 seconds -2026-03-27T14:02:49.4831456Z 15:02:49.482 | Pass "" (vp) -2026-03-27T14:02:49.4839441Z 15:02:49.483 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.4846584Z 15:02:49.484 | Full variant space: 1 -2026-03-27T14:02:49.4853765Z 15:02:49.485 | After settings filtering: 1 -2026-03-27T14:02:49.4861422Z 15:02:49.485 | After built-in stripping: 1 -2026-03-27T14:02:49.4867202Z 15:02:49.486 | After scriptable stripping: 1 -2026-03-27T14:02:49.4872711Z 15:02:49.486 | Processed in 0.00 seconds -2026-03-27T14:02:49.4878122Z 15:02:49.487 | Pass "" (fp) -2026-03-27T14:02:49.4884406Z 15:02:49.488 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.4890234Z 15:02:49.488 | Full variant space: 1 -2026-03-27T14:02:49.4896106Z 15:02:49.489 | After settings filtering: 1 -2026-03-27T14:02:49.4901438Z 15:02:49.489 | After built-in stripping: 1 -2026-03-27T14:02:49.4906953Z 15:02:49.490 | After scriptable stripping: 1 -2026-03-27T14:02:49.4911959Z 15:02:49.490 | Processed in 0.00 seconds -2026-03-27T14:02:49.4917860Z 15:02:49.491 | Pass (vp, gamecore_scarlett) finished in 0.35 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 26 variants (1.86s CPU time), skipped 0 variants. -2026-03-27T14:02:49.4922683Z 15:02:49.491 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.4928757Z 15:02:49.492 | Pass (fp, gamecore_scarlett) finished in 0.46 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 26 variants (2.34s CPU time), skipped 0 variants. -2026-03-27T14:02:49.4933460Z 15:02:49.492 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.4939543Z 15:02:49.493 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:49.4956646Z 15:02:49.494 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.4965912Z 15:02:49.495 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:49.4974904Z 15:02:49.497 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.4980537Z 15:02:49.497 | Compiling shader "Hidden/Internal-DeferredShading" -2026-03-27T14:02:49.4986810Z 15:02:49.498 | Pass "" (vp) -2026-03-27T14:02:49.4992444Z 15:02:49.498 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.4998740Z 15:02:49.499 | Full variant space: 94 -2026-03-27T14:02:49.5003615Z 15:02:49.499 | After settings filtering: 94 -2026-03-27T14:02:49.5009205Z 15:02:49.500 | After built-in stripping: 26 -2026-03-27T14:02:49.5014753Z 15:02:49.501 | After scriptable stripping: 26 -2026-03-27T14:02:49.5020196Z 15:02:49.501 | Processed in 0.00 seconds -2026-03-27T14:02:49.5025907Z 15:02:49.502 | Pass "" (fp) -2026-03-27T14:02:49.5033223Z 15:02:49.502 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.5309373Z 15:02:49.506 | Full variant space: 94 -2026-03-27T14:02:49.5434019Z 15:02:49.538 | After settings filtering: 94 -2026-03-27T14:02:49.5443979Z 15:02:49.543 | After built-in stripping: 26 -2026-03-27T14:02:49.5452243Z 15:02:49.544 | After scriptable stripping: 26 -2026-03-27T14:02:49.5457278Z 15:02:49.545 | Processed in 0.00 seconds -2026-03-27T14:02:49.5463172Z 15:02:49.546 | Pass "" (vp) -2026-03-27T14:02:49.5470716Z 15:02:49.546 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.5477847Z 15:02:49.547 | Full variant space: 1 -2026-03-27T14:02:49.5484125Z 15:02:49.548 | After settings filtering: 1 -2026-03-27T14:02:49.5491089Z 15:02:49.548 | After built-in stripping: 1 -2026-03-27T14:02:49.5502416Z 15:02:49.549 | After scriptable stripping: 1 -2026-03-27T14:02:49.5512191Z 15:02:49.550 | Processed in 0.00 seconds -2026-03-27T14:02:49.5523677Z 15:02:49.551 | Pass "" (fp) -2026-03-27T14:02:49.5524113Z 15:02:49.552 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.5531438Z 15:02:49.552 | Full variant space: 1 -2026-03-27T14:02:49.5537838Z 15:02:49.553 | After settings filtering: 1 -2026-03-27T14:02:49.5547425Z 15:02:49.553 | After built-in stripping: 1 -2026-03-27T14:02:49.5597261Z 15:02:49.555 | After scriptable stripping: 1 -2026-03-27T14:02:49.5607342Z 15:02:49.560 | Processed in 0.00 seconds -2026-03-27T14:02:49.5614324Z 15:02:49.560 | Pass (vp, gamecore_scarlett) finished in 0.73 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 26 variants (4.12s CPU time), skipped 0 variants. -2026-03-27T14:02:49.5628341Z 15:02:49.562 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.5640197Z 15:02:49.563 | Pass (fp, gamecore_scarlett) finished in 0.68 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 26 variants (3.48s CPU time), skipped 0 variants. -2026-03-27T14:02:49.5648035Z 15:02:49.564 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.5654733Z 15:02:49.564 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:49.5660391Z 15:02:49.565 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.5666943Z 15:02:49.566 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:49.5672388Z 15:02:49.566 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.5677936Z 15:02:49.567 | Serialized binary data for shader Hidden/Internal-DeferredShading in 0.00s -2026-03-27T14:02:49.5683498Z 15:02:49.567 | gamecore_scarlett (total internal programs: 54, unique: 54) -2026-03-27T14:02:49.5694482Z 15:02:49.569 | Compiling shader "Hidden/Internal-DeferredReflections" -2026-03-27T14:02:49.5700018Z 15:02:49.569 | Pass "" (vp) -2026-03-27T14:02:49.5705330Z 15:02:49.570 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.5710764Z 15:02:49.570 | Full variant space: 1 -2026-03-27T14:02:49.5717979Z 15:02:49.571 | After settings filtering: 1 -2026-03-27T14:02:49.5728752Z 15:02:49.572 | After built-in stripping: 1 -2026-03-27T14:02:49.5734347Z 15:02:49.573 | After scriptable stripping: 1 -2026-03-27T14:02:49.5741319Z 15:02:49.573 | Processed in 0.00 seconds -2026-03-27T14:02:49.5744864Z 15:02:49.574 | Pass "" (fp) -2026-03-27T14:02:49.5750361Z 15:02:49.574 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.5755964Z 15:02:49.575 | Full variant space: 1 -2026-03-27T14:02:49.5761362Z 15:02:49.575 | After settings filtering: 1 -2026-03-27T14:02:49.5767122Z 15:02:49.576 | After built-in stripping: 1 -2026-03-27T14:02:49.5772600Z 15:02:49.576 | After scriptable stripping: 1 -2026-03-27T14:02:49.5778164Z 15:02:49.577 | Processed in 0.00 seconds -2026-03-27T14:02:49.5783691Z 15:02:49.577 | Pass "" (vp) -2026-03-27T14:02:49.5788991Z 15:02:49.578 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.5794282Z 15:02:49.579 | Full variant space: 2 -2026-03-27T14:02:49.5799585Z 15:02:49.579 | After settings filtering: 2 -2026-03-27T14:02:49.5804804Z 15:02:49.580 | After built-in stripping: 2 -2026-03-27T14:02:49.5810228Z 15:02:49.580 | After scriptable stripping: 2 -2026-03-27T14:02:49.5852051Z 15:02:49.581 | Processed in 0.00 seconds -2026-03-27T14:02:49.6253898Z 15:02:49.595 | Pass "" (fp) -2026-03-27T14:02:49.6591617Z 15:02:49.633 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.6807048Z 15:02:49.667 | Full variant space: 2 -2026-03-27T14:02:49.6901138Z 15:02:49.686 | After settings filtering: 2 -2026-03-27T14:02:49.6910993Z 15:02:49.690 | After built-in stripping: 2 -2026-03-27T14:02:49.6926868Z 15:02:49.692 | After scriptable stripping: 2 -2026-03-27T14:02:49.6934228Z 15:02:49.692 | Processed in 0.00 seconds -2026-03-27T14:02:49.6941492Z 15:02:49.693 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:49.6946989Z 15:02:49.694 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.6953807Z 15:02:49.694 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:49.6960125Z 15:02:49.695 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.6971267Z 15:02:49.696 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:49.6977404Z 15:02:49.697 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.6984946Z 15:02:49.697 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:49.7359022Z 15:02:49.716 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.7392390Z 15:02:49.737 | Compiling shader "Hidden/Internal-DeferredReflections" -2026-03-27T14:02:49.7407002Z 15:02:49.740 | Pass "" (vp) -2026-03-27T14:02:49.7413993Z 15:02:49.741 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.7428352Z 15:02:49.741 | Full variant space: 1 -2026-03-27T14:02:49.7486973Z 15:02:49.748 | After settings filtering: 1 -2026-03-27T14:02:49.7493325Z 15:02:49.748 | After built-in stripping: 1 -2026-03-27T14:02:49.7499562Z 15:02:49.749 | After scriptable stripping: 1 -2026-03-27T14:02:49.7506400Z 15:02:49.750 | Processed in 0.00 seconds -2026-03-27T14:02:49.7512416Z 15:02:49.750 | Pass "" (fp) -2026-03-27T14:02:49.7518855Z 15:02:49.751 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.7524738Z 15:02:49.752 | Full variant space: 1 -2026-03-27T14:02:49.7532672Z 15:02:49.752 | After settings filtering: 1 -2026-03-27T14:02:49.7539480Z 15:02:49.753 | After built-in stripping: 1 -2026-03-27T14:02:49.7545555Z 15:02:49.754 | After scriptable stripping: 1 -2026-03-27T14:02:49.7551886Z 15:02:49.754 | Processed in 0.00 seconds -2026-03-27T14:02:49.7556221Z 15:02:49.755 | Pass "" (vp) -2026-03-27T14:02:49.7561833Z 15:02:49.755 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.7567790Z 15:02:49.756 | Full variant space: 2 -2026-03-27T14:02:49.7573832Z 15:02:49.756 | After settings filtering: 2 -2026-03-27T14:02:49.7579309Z 15:02:49.757 | After built-in stripping: 2 -2026-03-27T14:02:49.7584616Z 15:02:49.758 | After scriptable stripping: 2 -2026-03-27T14:02:49.7593313Z 15:02:49.758 | Processed in 0.00 seconds -2026-03-27T14:02:49.7599093Z 15:02:49.759 | Pass "" (fp) -2026-03-27T14:02:49.7604622Z 15:02:49.760 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.7610329Z 15:02:49.760 | Full variant space: 2 -2026-03-27T14:02:49.7615340Z 15:02:49.761 | After settings filtering: 2 -2026-03-27T14:02:49.7620582Z 15:02:49.761 | After built-in stripping: 2 -2026-03-27T14:02:49.7629712Z 15:02:49.762 | After scriptable stripping: 2 -2026-03-27T14:02:49.7635154Z 15:02:49.763 | Processed in 0.00 seconds -2026-03-27T14:02:49.7640900Z 15:02:49.763 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:49.7646929Z 15:02:49.764 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.7653472Z 15:02:49.764 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. -2026-03-27T14:02:49.7658997Z 15:02:49.765 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.7664621Z 15:02:49.766 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.17s CPU time), skipped 0 variants. -2026-03-27T14:02:49.7671732Z 15:02:49.766 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.7678122Z 15:02:49.767 | Pass (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:49.7683763Z 15:02:49.767 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.7689261Z 15:02:49.768 | Serialized binary data for shader Hidden/Internal-DeferredReflections in 0.00s -2026-03-27T14:02:49.7695348Z 15:02:49.769 | gamecore_scarlett (total internal programs: 6, unique: 6) -2026-03-27T14:02:49.7749370Z 15:02:49.769 | Compiling shader "Hidden/Internal-MotionVectors" -2026-03-27T14:02:49.8068260Z 15:02:49.782 | Pass "" (vp) -2026-03-27T14:02:49.8325452Z 15:02:49.815 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.8471858Z 15:02:49.839 | Full variant space: 1 -2026-03-27T14:02:49.8513319Z 15:02:49.849 | After settings filtering: 1 -2026-03-27T14:02:49.8546190Z 15:02:49.853 | After built-in stripping: 1 -2026-03-27T14:02:49.8554243Z 15:02:49.854 | After scriptable stripping: 1 -2026-03-27T14:02:49.8559496Z 15:02:49.855 | Processed in 0.00 seconds -2026-03-27T14:02:49.8565220Z 15:02:49.856 | Pass "" (fp) -2026-03-27T14:02:49.8572218Z 15:02:49.856 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.8581837Z 15:02:49.857 | Full variant space: 1 -2026-03-27T14:02:49.8589253Z 15:02:49.858 | After settings filtering: 1 -2026-03-27T14:02:49.8596069Z 15:02:49.859 | After built-in stripping: 1 -2026-03-27T14:02:49.8602525Z 15:02:49.859 | After scriptable stripping: 1 -2026-03-27T14:02:49.8612369Z 15:02:49.860 | Processed in 0.00 seconds -2026-03-27T14:02:49.8620991Z 15:02:49.861 | Pass "" (vp) -2026-03-27T14:02:49.8627170Z 15:02:49.862 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.8632526Z 15:02:49.862 | Full variant space: 1 -2026-03-27T14:02:49.8638857Z 15:02:49.863 | After settings filtering: 1 -2026-03-27T14:02:49.8643794Z 15:02:49.864 | After built-in stripping: 1 -2026-03-27T14:02:49.8650320Z 15:02:49.864 | After scriptable stripping: 1 -2026-03-27T14:02:49.8656298Z 15:02:49.865 | Processed in 0.00 seconds -2026-03-27T14:02:49.8661681Z 15:02:49.865 | Pass "" (fp) -2026-03-27T14:02:49.8674203Z 15:02:49.866 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.8679960Z 15:02:49.867 | Full variant space: 1 -2026-03-27T14:02:49.8685112Z 15:02:49.868 | After settings filtering: 1 -2026-03-27T14:02:49.8691253Z 15:02:49.868 | After built-in stripping: 1 -2026-03-27T14:02:49.8698699Z 15:02:49.869 | After scriptable stripping: 1 -2026-03-27T14:02:49.8707350Z 15:02:49.870 | Processed in 0.00 seconds -2026-03-27T14:02:49.8715888Z 15:02:49.871 | Pass "" (vp) -2026-03-27T14:02:49.8727753Z 15:02:49.872 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.8737000Z 15:02:49.873 | Full variant space: 1 -2026-03-27T14:02:49.8743240Z 15:02:49.873 | After settings filtering: 1 -2026-03-27T14:02:49.8749463Z 15:02:49.874 | After built-in stripping: 1 -2026-03-27T14:02:49.8755989Z 15:02:49.875 | After scriptable stripping: 1 -2026-03-27T14:02:49.8763185Z 15:02:49.875 | Processed in 0.00 seconds -2026-03-27T14:02:49.8770106Z 15:02:49.876 | Pass "" (fp) -2026-03-27T14:02:49.8776795Z 15:02:49.877 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.8782436Z 15:02:49.877 | Full variant space: 1 -2026-03-27T14:02:49.8787956Z 15:02:49.878 | After settings filtering: 1 -2026-03-27T14:02:49.8793996Z 15:02:49.879 | After built-in stripping: 1 -2026-03-27T14:02:49.8800033Z 15:02:49.879 | After scriptable stripping: 1 -2026-03-27T14:02:49.8805455Z 15:02:49.880 | Processed in 0.00 seconds -2026-03-27T14:02:49.8813374Z 15:02:49.880 | Pass (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:49.8818252Z 15:02:49.881 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.8824433Z 15:02:49.882 | Pass (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:49.8833530Z 15:02:49.882 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.8840107Z 15:02:49.883 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:49.8845169Z 15:02:49.884 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.8851813Z 15:02:49.884 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:49.8856623Z 15:02:49.885 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.8866779Z 15:02:49.885 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:49.8872038Z 15:02:49.886 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.8878530Z 15:02:49.887 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:49.8883388Z 15:02:49.887 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.8889743Z 15:02:49.888 | Compiling shader "Hidden/Internal-MotionVectors" -2026-03-27T14:02:49.8895128Z 15:02:49.889 | Pass "" (vp) -2026-03-27T14:02:49.8901350Z 15:02:49.889 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.8905990Z 15:02:49.890 | Full variant space: 1 -2026-03-27T14:02:49.8911325Z 15:02:49.890 | After settings filtering: 1 -2026-03-27T14:02:49.8917646Z 15:02:49.891 | After built-in stripping: 1 -2026-03-27T14:02:49.8923498Z 15:02:49.891 | After scriptable stripping: 1 -2026-03-27T14:02:49.8929371Z 15:02:49.892 | Processed in 0.00 seconds -2026-03-27T14:02:49.8935136Z 15:02:49.893 | Pass "" (fp) -2026-03-27T14:02:49.8940676Z 15:02:49.893 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.8946069Z 15:02:49.894 | Full variant space: 1 -2026-03-27T14:02:49.8951946Z 15:02:49.894 | After settings filtering: 1 -2026-03-27T14:02:49.8957504Z 15:02:49.895 | After built-in stripping: 1 -2026-03-27T14:02:49.8963400Z 15:02:49.895 | After scriptable stripping: 1 -2026-03-27T14:02:49.8969186Z 15:02:49.896 | Processed in 0.00 seconds -2026-03-27T14:02:49.8974782Z 15:02:49.897 | Pass "" (vp) -2026-03-27T14:02:49.8986472Z 15:02:49.897 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.8994002Z 15:02:49.898 | Full variant space: 1 -2026-03-27T14:02:49.9001065Z 15:02:49.899 | After settings filtering: 1 -2026-03-27T14:02:49.9008770Z 15:02:49.900 | After built-in stripping: 1 -2026-03-27T14:02:49.9018887Z 15:02:49.901 | After scriptable stripping: 1 -2026-03-27T14:02:49.9025392Z 15:02:49.902 | Processed in 0.00 seconds -2026-03-27T14:02:49.9030909Z 15:02:49.902 | Pass "" (fp) -2026-03-27T14:02:49.9038123Z 15:02:49.903 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.9043649Z 15:02:49.903 | Full variant space: 1 -2026-03-27T14:02:49.9049128Z 15:02:49.904 | After settings filtering: 1 -2026-03-27T14:02:49.9055072Z 15:02:49.905 | After built-in stripping: 1 -2026-03-27T14:02:49.9060888Z 15:02:49.905 | After scriptable stripping: 1 -2026-03-27T14:02:49.9066593Z 15:02:49.906 | Processed in 0.00 seconds -2026-03-27T14:02:49.9071940Z 15:02:49.906 | Pass "" (vp) -2026-03-27T14:02:49.9076849Z 15:02:49.907 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.9083464Z 15:02:49.907 | Full variant space: 1 -2026-03-27T14:02:49.9090157Z 15:02:49.908 | After settings filtering: 1 -2026-03-27T14:02:49.9095543Z 15:02:49.909 | After built-in stripping: 1 -2026-03-27T14:02:49.9101352Z 15:02:49.909 | After scriptable stripping: 1 -2026-03-27T14:02:49.9107245Z 15:02:49.910 | Processed in 0.00 seconds -2026-03-27T14:02:49.9112920Z 15:02:49.910 | Pass "" (fp) -2026-03-27T14:02:49.9119113Z 15:02:49.911 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.9124992Z 15:02:49.912 | Full variant space: 1 -2026-03-27T14:02:49.9132036Z 15:02:49.912 | After settings filtering: 1 -2026-03-27T14:02:49.9143946Z 15:02:49.913 | After built-in stripping: 1 -2026-03-27T14:02:49.9149844Z 15:02:49.914 | After scriptable stripping: 1 -2026-03-27T14:02:49.9155683Z 15:02:49.915 | Processed in 0.00 seconds -2026-03-27T14:02:49.9161969Z 15:02:49.915 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. -2026-03-27T14:02:49.9169473Z 15:02:49.916 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.9176227Z 15:02:49.917 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:49.9184591Z 15:02:49.918 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.9191077Z 15:02:49.918 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:49.9196014Z 15:02:49.919 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.9202530Z 15:02:49.919 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:49.9207267Z 15:02:49.920 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.9218103Z 15:02:49.920 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:49.9219091Z 15:02:49.921 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.9224417Z 15:02:49.921 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:49.9228712Z 15:02:49.922 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.9235774Z 15:02:49.923 | Serialized binary data for shader Hidden/Internal-MotionVectors in 0.00s -2026-03-27T14:02:49.9241450Z 15:02:49.923 | gamecore_scarlett (total internal programs: 6, unique: 5) -2026-03-27T14:02:49.9247460Z 15:02:49.924 | Compiling shader "Hidden/Internal-Flare" -2026-03-27T14:02:49.9253346Z 15:02:49.924 | Pass "" (vp) -2026-03-27T14:02:49.9258804Z 15:02:49.925 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.9264480Z 15:02:49.926 | Full variant space: 1 -2026-03-27T14:02:49.9273996Z 15:02:49.927 | After settings filtering: 1 -2026-03-27T14:02:49.9279520Z 15:02:49.927 | After built-in stripping: 1 -2026-03-27T14:02:49.9285298Z 15:02:49.928 | After scriptable stripping: 1 -2026-03-27T14:02:49.9326306Z 15:02:49.928 | Processed in 0.00 seconds -2026-03-27T14:02:49.9343997Z 15:02:49.934 | Pass "" (fp) -2026-03-27T14:02:49.9349783Z 15:02:49.934 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.9357812Z 15:02:49.935 | Full variant space: 1 -2026-03-27T14:02:49.9363409Z 15:02:49.935 | After settings filtering: 1 -2026-03-27T14:02:49.9370084Z 15:02:49.936 | After built-in stripping: 1 -2026-03-27T14:02:49.9378138Z 15:02:49.937 | After scriptable stripping: 1 -2026-03-27T14:02:49.9385122Z 15:02:49.938 | Processed in 0.00 seconds -2026-03-27T14:02:49.9391460Z 15:02:49.938 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:49.9396712Z 15:02:49.939 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.9402993Z 15:02:49.939 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:49.9409344Z 15:02:49.940 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:49.9415407Z 15:02:49.941 | Compiling shader "Hidden/Internal-Flare" -2026-03-27T14:02:49.9421033Z 15:02:49.941 | Pass "" (vp) -2026-03-27T14:02:49.9427012Z 15:02:49.942 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.9432483Z 15:02:49.942 | Full variant space: 1 -2026-03-27T14:02:49.9438593Z 15:02:49.943 | After settings filtering: 1 -2026-03-27T14:02:49.9444704Z 15:02:49.944 | After built-in stripping: 1 -2026-03-27T14:02:49.9459810Z 15:02:49.944 | After scriptable stripping: 1 -2026-03-27T14:02:49.9465946Z 15:02:49.946 | Processed in 0.00 seconds -2026-03-27T14:02:49.9471469Z 15:02:49.946 | Pass "" (fp) -2026-03-27T14:02:49.9477311Z 15:02:49.947 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:49.9483246Z 15:02:49.947 | Full variant space: 1 -2026-03-27T14:02:49.9489759Z 15:02:49.948 | After settings filtering: 1 -2026-03-27T14:02:49.9494594Z 15:02:49.949 | After built-in stripping: 1 -2026-03-27T14:02:49.9500363Z 15:02:49.949 | After scriptable stripping: 1 -2026-03-27T14:02:49.9506241Z 15:02:49.950 | Processed in 0.00 seconds -2026-03-27T14:02:50.3666249Z 15:02:50.365 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:50.3674552Z 15:02:50.367 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.3684481Z 15:02:50.367 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:50.3693795Z 15:02:50.368 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.3700358Z 15:02:50.369 | Serialized binary data for shader Hidden/Internal-Flare in 0.00s -2026-03-27T14:02:50.3705911Z 15:02:50.370 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:50.3712036Z 15:02:50.370 | Compiling shader "Hidden/Internal-Halo" -2026-03-27T14:02:50.3717382Z 15:02:50.371 | Pass "" (vp) -2026-03-27T14:02:50.3723612Z 15:02:50.372 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.3731877Z 15:02:50.372 | Full variant space: 4 -2026-03-27T14:02:50.3740797Z 15:02:50.373 | After settings filtering: 4 -2026-03-27T14:02:50.3749300Z 15:02:50.374 | After built-in stripping: 1 -2026-03-27T14:02:50.3759556Z 15:02:50.375 | After scriptable stripping: 1 -2026-03-27T14:02:50.3767407Z 15:02:50.376 | Processed in 0.00 seconds -2026-03-27T14:02:50.3775435Z 15:02:50.376 | Pass "" (fp) -2026-03-27T14:02:50.3782733Z 15:02:50.377 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.3790385Z 15:02:50.378 | Full variant space: 4 -2026-03-27T14:02:50.3798049Z 15:02:50.379 | After settings filtering: 4 -2026-03-27T14:02:50.3805206Z 15:02:50.379 | After built-in stripping: 1 -2026-03-27T14:02:50.3824342Z 15:02:50.381 | After scriptable stripping: 1 -2026-03-27T14:02:50.3832911Z 15:02:50.382 | Processed in 0.00 seconds -2026-03-27T14:02:50.3841761Z 15:02:50.383 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.3868910Z 15:02:50.386 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.3884475Z 15:02:50.387 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.3892067Z 15:02:50.388 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.3898451Z 15:02:50.389 | Compiling shader "Hidden/Internal-Halo" -2026-03-27T14:02:50.3904705Z 15:02:50.390 | Pass "" (vp) -2026-03-27T14:02:50.3912473Z 15:02:50.390 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.3921805Z 15:02:50.391 | Full variant space: 4 -2026-03-27T14:02:50.3928583Z 15:02:50.392 | After settings filtering: 4 -2026-03-27T14:02:50.3936859Z 15:02:50.393 | After built-in stripping: 1 -2026-03-27T14:02:50.3943266Z 15:02:50.393 | After scriptable stripping: 1 -2026-03-27T14:02:50.3948620Z 15:02:50.394 | Processed in 0.00 seconds -2026-03-27T14:02:50.3958799Z 15:02:50.395 | Pass "" (fp) -2026-03-27T14:02:50.3973664Z 15:02:50.396 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.3981574Z 15:02:50.397 | Full variant space: 4 -2026-03-27T14:02:50.3990144Z 15:02:50.398 | After settings filtering: 4 -2026-03-27T14:02:50.3996355Z 15:02:50.399 | After built-in stripping: 1 -2026-03-27T14:02:50.4002500Z 15:02:50.399 | After scriptable stripping: 1 -2026-03-27T14:02:50.4012577Z 15:02:50.400 | Processed in 0.00 seconds -2026-03-27T14:02:50.4021908Z 15:02:50.401 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4029593Z 15:02:50.402 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4035814Z 15:02:50.403 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4042731Z 15:02:50.403 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4048508Z 15:02:50.404 | Serialized binary data for shader Hidden/Internal-Halo in 0.00s -2026-03-27T14:02:50.4053800Z 15:02:50.404 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:50.4059090Z 15:02:50.405 | Compiling shader "Hidden/BlitCopyWithDepth" -2026-03-27T14:02:50.4067133Z 15:02:50.406 | Pass "" (vp) -2026-03-27T14:02:50.4073082Z 15:02:50.406 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4078483Z 15:02:50.407 | Full variant space: 1 -2026-03-27T14:02:50.4083921Z 15:02:50.407 | After settings filtering: 1 -2026-03-27T14:02:50.4091667Z 15:02:50.408 | After built-in stripping: 1 -2026-03-27T14:02:50.4098604Z 15:02:50.409 | After scriptable stripping: 1 -2026-03-27T14:02:50.4104634Z 15:02:50.410 | Processed in 0.00 seconds -2026-03-27T14:02:50.4109851Z 15:02:50.410 | Pass "" (fp) -2026-03-27T14:02:50.4115016Z 15:02:50.411 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4122192Z 15:02:50.411 | Full variant space: 1 -2026-03-27T14:02:50.4127752Z 15:02:50.412 | After settings filtering: 1 -2026-03-27T14:02:50.4133175Z 15:02:50.412 | After built-in stripping: 1 -2026-03-27T14:02:50.4139476Z 15:02:50.413 | After scriptable stripping: 1 -2026-03-27T14:02:50.4145049Z 15:02:50.414 | Processed in 0.00 seconds -2026-03-27T14:02:50.4150750Z 15:02:50.414 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4160734Z 15:02:50.415 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4172157Z 15:02:50.416 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4180959Z 15:02:50.417 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4189356Z 15:02:50.418 | Compiling shader "Hidden/BlitCopyWithDepth" -2026-03-27T14:02:50.4205746Z 15:02:50.419 | Pass "" (vp) -2026-03-27T14:02:50.4215896Z 15:02:50.420 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4225015Z 15:02:50.422 | Full variant space: 1 -2026-03-27T14:02:50.4232626Z 15:02:50.422 | After settings filtering: 1 -2026-03-27T14:02:50.4239449Z 15:02:50.423 | After built-in stripping: 1 -2026-03-27T14:02:50.4247283Z 15:02:50.424 | After scriptable stripping: 1 -2026-03-27T14:02:50.4255622Z 15:02:50.425 | Processed in 0.00 seconds -2026-03-27T14:02:50.4264474Z 15:02:50.425 | Pass "" (fp) -2026-03-27T14:02:50.4271895Z 15:02:50.426 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4294809Z 15:02:50.427 | Full variant space: 1 -2026-03-27T14:02:50.4336495Z 15:02:50.433 | After settings filtering: 1 -2026-03-27T14:02:50.4345987Z 15:02:50.434 | After built-in stripping: 1 -2026-03-27T14:02:50.4352698Z 15:02:50.434 | After scriptable stripping: 1 -2026-03-27T14:02:50.4362347Z 15:02:50.435 | Processed in 0.00 seconds -2026-03-27T14:02:50.4376084Z 15:02:50.436 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4399269Z 15:02:50.438 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4409851Z 15:02:50.440 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4414210Z 15:02:50.440 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4420787Z 15:02:50.441 | Serialized binary data for shader Hidden/BlitCopyWithDepth in 0.00s -2026-03-27T14:02:50.4431485Z 15:02:50.442 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:50.4446957Z 15:02:50.443 | Compiling shader "Hidden/BlitToDepth" -2026-03-27T14:02:50.4459413Z 15:02:50.445 | Pass "" (vp) -2026-03-27T14:02:50.4473987Z 15:02:50.446 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4490392Z 15:02:50.448 | Full variant space: 1 -2026-03-27T14:02:50.4502672Z 15:02:50.449 | After settings filtering: 1 -2026-03-27T14:02:50.4511895Z 15:02:50.450 | After built-in stripping: 1 -2026-03-27T14:02:50.4521259Z 15:02:50.451 | After scriptable stripping: 1 -2026-03-27T14:02:50.4530151Z 15:02:50.452 | Processed in 0.00 seconds -2026-03-27T14:02:50.4540022Z 15:02:50.453 | Pass "" (fp) -2026-03-27T14:02:50.4552210Z 15:02:50.454 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4563907Z 15:02:50.455 | Full variant space: 1 -2026-03-27T14:02:50.4580325Z 15:02:50.457 | After settings filtering: 1 -2026-03-27T14:02:50.4598291Z 15:02:50.458 | After built-in stripping: 1 -2026-03-27T14:02:50.4610591Z 15:02:50.460 | After scriptable stripping: 1 -2026-03-27T14:02:50.4620808Z 15:02:50.461 | Processed in 0.00 seconds -2026-03-27T14:02:50.4631403Z 15:02:50.462 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4638389Z 15:02:50.463 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4649731Z 15:02:50.464 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4658182Z 15:02:50.465 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4667278Z 15:02:50.466 | Compiling shader "Hidden/BlitToDepth" -2026-03-27T14:02:50.4675267Z 15:02:50.466 | Pass "" (vp) -2026-03-27T14:02:50.4681385Z 15:02:50.467 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4688663Z 15:02:50.468 | Full variant space: 1 -2026-03-27T14:02:50.4698151Z 15:02:50.469 | After settings filtering: 1 -2026-03-27T14:02:50.4706221Z 15:02:50.470 | After built-in stripping: 1 -2026-03-27T14:02:50.4713513Z 15:02:50.470 | After scriptable stripping: 1 -2026-03-27T14:02:50.4718962Z 15:02:50.471 | Processed in 0.00 seconds -2026-03-27T14:02:50.4724607Z 15:02:50.472 | Pass "" (fp) -2026-03-27T14:02:50.4730851Z 15:02:50.472 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4740396Z 15:02:50.473 | Full variant space: 1 -2026-03-27T14:02:50.4746285Z 15:02:50.474 | After settings filtering: 1 -2026-03-27T14:02:50.4752089Z 15:02:50.474 | After built-in stripping: 1 -2026-03-27T14:02:50.4757757Z 15:02:50.475 | After scriptable stripping: 1 -2026-03-27T14:02:50.4763679Z 15:02:50.475 | Processed in 0.00 seconds -2026-03-27T14:02:50.4771045Z 15:02:50.476 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4775912Z 15:02:50.477 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4780841Z 15:02:50.477 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4788277Z 15:02:50.478 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4794897Z 15:02:50.479 | Serialized binary data for shader Hidden/BlitToDepth in 0.00s -2026-03-27T14:02:50.4799762Z 15:02:50.479 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:50.4806465Z 15:02:50.480 | Compiling shader "Hidden/BlitToDepth_MSAA" -2026-03-27T14:02:50.4812601Z 15:02:50.480 | Pass "" (vp) -2026-03-27T14:02:50.4818719Z 15:02:50.481 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4824382Z 15:02:50.482 | Full variant space: 1 -2026-03-27T14:02:50.4830248Z 15:02:50.482 | After settings filtering: 1 -2026-03-27T14:02:50.4835983Z 15:02:50.483 | After built-in stripping: 1 -2026-03-27T14:02:50.4841809Z 15:02:50.483 | After scriptable stripping: 1 -2026-03-27T14:02:50.4847622Z 15:02:50.484 | Processed in 0.00 seconds -2026-03-27T14:02:50.4852988Z 15:02:50.484 | Pass "" (fp) -2026-03-27T14:02:50.4858979Z 15:02:50.485 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4864857Z 15:02:50.486 | Full variant space: 1 -2026-03-27T14:02:50.4870576Z 15:02:50.486 | After settings filtering: 1 -2026-03-27T14:02:50.4876338Z 15:02:50.487 | After built-in stripping: 1 -2026-03-27T14:02:50.4882622Z 15:02:50.487 | After scriptable stripping: 1 -2026-03-27T14:02:50.4891517Z 15:02:50.488 | Processed in 0.00 seconds -2026-03-27T14:02:50.4900038Z 15:02:50.489 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4907774Z 15:02:50.490 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4916438Z 15:02:50.491 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.4923709Z 15:02:50.491 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.4931933Z 15:02:50.492 | Compiling shader "Hidden/BlitToDepth_MSAA" -2026-03-27T14:02:50.4937273Z 15:02:50.493 | Pass "" (vp) -2026-03-27T14:02:50.4943269Z 15:02:50.494 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4949055Z 15:02:50.494 | Full variant space: 1 -2026-03-27T14:02:50.4955079Z 15:02:50.495 | After settings filtering: 1 -2026-03-27T14:02:50.4960944Z 15:02:50.495 | After built-in stripping: 1 -2026-03-27T14:02:50.4967893Z 15:02:50.496 | After scriptable stripping: 1 -2026-03-27T14:02:50.4973674Z 15:02:50.496 | Processed in 0.00 seconds -2026-03-27T14:02:50.4979336Z 15:02:50.497 | Pass "" (fp) -2026-03-27T14:02:50.4985649Z 15:02:50.498 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.4991713Z 15:02:50.498 | Full variant space: 1 -2026-03-27T14:02:50.4997305Z 15:02:50.499 | After settings filtering: 1 -2026-03-27T14:02:50.5001594Z 15:02:50.499 | After built-in stripping: 1 -2026-03-27T14:02:50.5008201Z 15:02:50.500 | After scriptable stripping: 1 -2026-03-27T14:02:50.5016991Z 15:02:50.501 | Processed in 0.00 seconds -2026-03-27T14:02:50.5026234Z 15:02:50.502 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:50.5033498Z 15:02:50.502 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.5084664Z 15:02:50.503 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:50.5097435Z 15:02:50.509 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.5107195Z 15:02:50.510 | Serialized binary data for shader Hidden/BlitToDepth_MSAA in 0.00s -2026-03-27T14:02:50.5123029Z 15:02:50.511 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:50.5134249Z 15:02:50.512 | Compiling shader "Hidden/BlitCopyHDRTonemap" -2026-03-27T14:02:50.5143298Z 15:02:50.513 | Pass "" (vp) -2026-03-27T14:02:50.5152428Z 15:02:50.514 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.5158479Z 15:02:50.515 | Full variant space: 1 -2026-03-27T14:02:50.5164261Z 15:02:50.516 | After settings filtering: 1 -2026-03-27T14:02:50.5170722Z 15:02:50.516 | After built-in stripping: 1 -2026-03-27T14:02:50.5176759Z 15:02:50.517 | After scriptable stripping: 1 -2026-03-27T14:02:50.5182658Z 15:02:50.517 | Processed in 0.00 seconds -2026-03-27T14:02:50.5188062Z 15:02:50.518 | Pass "" (fp) -2026-03-27T14:02:50.5193841Z 15:02:50.518 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.5199366Z 15:02:50.519 | Full variant space: 1 -2026-03-27T14:02:50.5205114Z 15:02:50.520 | After settings filtering: 1 -2026-03-27T14:02:50.5231329Z 15:02:50.521 | After built-in stripping: 1 -2026-03-27T14:02:50.5240779Z 15:02:50.523 | After scriptable stripping: 1 -2026-03-27T14:02:50.5247571Z 15:02:50.524 | Processed in 0.00 seconds -2026-03-27T14:02:50.5254396Z 15:02:50.524 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:50.5260193Z 15:02:50.525 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.5266719Z 15:02:50.526 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:50.5271885Z 15:02:50.526 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.5277772Z 15:02:50.527 | Compiling shader "Hidden/BlitCopyHDRTonemap" -2026-03-27T14:02:50.5283460Z 15:02:50.527 | Pass "" (vp) -2026-03-27T14:02:50.5290104Z 15:02:50.528 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.5295794Z 15:02:50.529 | Full variant space: 1 -2026-03-27T14:02:50.5301622Z 15:02:50.529 | After settings filtering: 1 -2026-03-27T14:02:50.5307336Z 15:02:50.530 | After built-in stripping: 1 -2026-03-27T14:02:50.5312747Z 15:02:50.530 | After scriptable stripping: 1 -2026-03-27T14:02:50.5318643Z 15:02:50.531 | Processed in 0.00 seconds -2026-03-27T14:02:50.5324293Z 15:02:50.532 | Pass "" (fp) -2026-03-27T14:02:50.5330848Z 15:02:50.532 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.5336611Z 15:02:50.533 | Full variant space: 1 -2026-03-27T14:02:50.5342424Z 15:02:50.533 | After settings filtering: 1 -2026-03-27T14:02:50.5348061Z 15:02:50.534 | After built-in stripping: 1 -2026-03-27T14:02:50.5354497Z 15:02:50.535 | After scriptable stripping: 1 -2026-03-27T14:02:50.5373433Z 15:02:50.535 | Processed in 0.00 seconds -2026-03-27T14:02:50.9410535Z 15:02:50.940 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:50.9416069Z 15:02:50.941 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.9422192Z 15:02:50.941 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:50.9428270Z 15:02:50.942 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.9433787Z 15:02:50.942 | Serialized binary data for shader Hidden/BlitCopyHDRTonemap in 0.00s -2026-03-27T14:02:50.9439822Z 15:02:50.943 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:50.9445623Z 15:02:50.944 | Compiling shader "Hidden/Internal-DebugPattern" -2026-03-27T14:02:50.9452553Z 15:02:50.944 | Pass "Target Color and DepthStencil" (vp) -2026-03-27T14:02:50.9458069Z 15:02:50.945 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.9464253Z 15:02:50.945 | Full variant space: 1 -2026-03-27T14:02:50.9468198Z 15:02:50.946 | After settings filtering: 1 -2026-03-27T14:02:50.9473482Z 15:02:50.946 | After built-in stripping: 1 -2026-03-27T14:02:50.9478428Z 15:02:50.947 | After scriptable stripping: 1 -2026-03-27T14:02:50.9483915Z 15:02:50.948 | Processed in 0.00 seconds -2026-03-27T14:02:50.9489427Z 15:02:50.948 | Pass "Target Color and DepthStencil" (fp) -2026-03-27T14:02:50.9495489Z 15:02:50.949 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.9501361Z 15:02:50.949 | Full variant space: 1 -2026-03-27T14:02:50.9507326Z 15:02:50.950 | After settings filtering: 1 -2026-03-27T14:02:50.9512843Z 15:02:50.950 | After built-in stripping: 1 -2026-03-27T14:02:50.9518808Z 15:02:50.951 | After scriptable stripping: 1 -2026-03-27T14:02:50.9523939Z 15:02:50.952 | Processed in 0.00 seconds -2026-03-27T14:02:50.9530513Z 15:02:50.952 | Pass "Target only Color" (vp) -2026-03-27T14:02:50.9536021Z 15:02:50.953 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.9541403Z 15:02:50.953 | Full variant space: 1 -2026-03-27T14:02:50.9547485Z 15:02:50.954 | After settings filtering: 1 -2026-03-27T14:02:50.9557501Z 15:02:50.954 | After built-in stripping: 1 -2026-03-27T14:02:50.9569419Z 15:02:50.956 | After scriptable stripping: 1 -2026-03-27T14:02:50.9575138Z 15:02:50.957 | Processed in 0.00 seconds -2026-03-27T14:02:50.9582025Z 15:02:50.957 | Pass "Target only Color" (fp) -2026-03-27T14:02:50.9588216Z 15:02:50.958 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.9593368Z 15:02:50.958 | Full variant space: 1 -2026-03-27T14:02:50.9598931Z 15:02:50.959 | After settings filtering: 1 -2026-03-27T14:02:50.9604448Z 15:02:50.960 | After built-in stripping: 1 -2026-03-27T14:02:50.9610617Z 15:02:50.960 | After scriptable stripping: 1 -2026-03-27T14:02:50.9616856Z 15:02:50.961 | Processed in 0.00 seconds -2026-03-27T14:02:50.9622724Z 15:02:50.961 | Pass "Target only DepthStencil" (vp) -2026-03-27T14:02:50.9628422Z 15:02:50.962 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.9635777Z 15:02:50.963 | Full variant space: 1 -2026-03-27T14:02:50.9641688Z 15:02:50.963 | After settings filtering: 1 -2026-03-27T14:02:50.9647106Z 15:02:50.964 | After built-in stripping: 1 -2026-03-27T14:02:50.9652244Z 15:02:50.964 | After scriptable stripping: 1 -2026-03-27T14:02:50.9657481Z 15:02:50.965 | Processed in 0.00 seconds -2026-03-27T14:02:50.9662528Z 15:02:50.965 | Pass "Target only DepthStencil" (fp) -2026-03-27T14:02:50.9667863Z 15:02:50.966 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:50.9674048Z 15:02:50.967 | Full variant space: 1 -2026-03-27T14:02:50.9679830Z 15:02:50.967 | After settings filtering: 1 -2026-03-27T14:02:50.9685509Z 15:02:50.968 | After built-in stripping: 1 -2026-03-27T14:02:50.9691643Z 15:02:50.968 | After scriptable stripping: 1 -2026-03-27T14:02:50.9696910Z 15:02:50.969 | Processed in 0.00 seconds -2026-03-27T14:02:50.9702802Z 15:02:50.969 | Pass Target Color and DepthStencil (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:50.9713206Z 15:02:50.970 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.9743448Z 15:02:50.971 | Pass Target Color and DepthStencil (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.9771205Z 15:02:50.975 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.9793827Z 15:02:50.977 | Pass Target only Color (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.9809044Z 15:02:50.980 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.9840726Z 15:02:50.982 | Pass Target only Color (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:50.9910380Z 15:02:50.985 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:50.9982673Z 15:02:50.992 | Pass Target only DepthStencil (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.0014774Z 15:02:50.999 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.0032600Z 15:02:51.002 | Pass Target only DepthStencil (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.0039635Z 15:02:51.003 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.0047565Z 15:02:51.004 | Compiling shader "Hidden/Internal-DebugPattern" -2026-03-27T14:02:51.0054428Z 15:02:51.005 | Pass "Target Color and DepthStencil" (vp) -2026-03-27T14:02:51.0059328Z 15:02:51.005 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.0065518Z 15:02:51.006 | Full variant space: 1 -2026-03-27T14:02:51.0071099Z 15:02:51.006 | After settings filtering: 1 -2026-03-27T14:02:51.0076518Z 15:02:51.007 | After built-in stripping: 1 -2026-03-27T14:02:51.0082176Z 15:02:51.007 | After scriptable stripping: 1 -2026-03-27T14:02:51.0087522Z 15:02:51.008 | Processed in 0.00 seconds -2026-03-27T14:02:51.0092979Z 15:02:51.008 | Pass "Target Color and DepthStencil" (fp) -2026-03-27T14:02:51.0098441Z 15:02:51.009 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.0113130Z 15:02:51.010 | Full variant space: 1 -2026-03-27T14:02:51.0134329Z 15:02:51.012 | After settings filtering: 1 -2026-03-27T14:02:51.0173258Z 15:02:51.014 | After built-in stripping: 1 -2026-03-27T14:02:51.0278194Z 15:02:51.020 | After scriptable stripping: 1 -2026-03-27T14:02:51.0370798Z 15:02:51.030 | Processed in 0.00 seconds -2026-03-27T14:02:51.0397895Z 15:02:51.037 | Pass "Target only Color" (vp) -2026-03-27T14:02:51.0413349Z 15:02:51.040 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.0429769Z 15:02:51.042 | Full variant space: 1 -2026-03-27T14:02:51.0451858Z 15:02:51.043 | After settings filtering: 1 -2026-03-27T14:02:51.0498103Z 15:02:51.046 | After built-in stripping: 1 -2026-03-27T14:02:51.0519091Z 15:02:51.050 | After scriptable stripping: 1 -2026-03-27T14:02:51.0532068Z 15:02:51.052 | Processed in 0.00 seconds -2026-03-27T14:02:51.0541656Z 15:02:51.053 | Pass "Target only Color" (fp) -2026-03-27T14:02:51.0549681Z 15:02:51.054 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.0559251Z 15:02:51.055 | Full variant space: 1 -2026-03-27T14:02:51.0568374Z 15:02:51.056 | After settings filtering: 1 -2026-03-27T14:02:51.0574140Z 15:02:51.057 | After built-in stripping: 1 -2026-03-27T14:02:51.0580663Z 15:02:51.057 | After scriptable stripping: 1 -2026-03-27T14:02:51.0586057Z 15:02:51.058 | Processed in 0.00 seconds -2026-03-27T14:02:51.0595594Z 15:02:51.058 | Pass "Target only DepthStencil" (vp) -2026-03-27T14:02:51.0601791Z 15:02:51.059 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.0608421Z 15:02:51.060 | Full variant space: 1 -2026-03-27T14:02:51.0616263Z 15:02:51.061 | After settings filtering: 1 -2026-03-27T14:02:51.0621897Z 15:02:51.061 | After built-in stripping: 1 -2026-03-27T14:02:51.0628061Z 15:02:51.062 | After scriptable stripping: 1 -2026-03-27T14:02:51.0633693Z 15:02:51.062 | Processed in 0.00 seconds -2026-03-27T14:02:51.0639387Z 15:02:51.063 | Pass "Target only DepthStencil" (fp) -2026-03-27T14:02:51.0644078Z 15:02:51.064 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.0650126Z 15:02:51.064 | Full variant space: 1 -2026-03-27T14:02:51.0682615Z 15:02:51.065 | After settings filtering: 1 -2026-03-27T14:02:51.0706360Z 15:02:51.069 | After built-in stripping: 1 -2026-03-27T14:02:51.0714852Z 15:02:51.071 | After scriptable stripping: 1 -2026-03-27T14:02:51.0720473Z 15:02:51.071 | Processed in 0.00 seconds -2026-03-27T14:02:51.0726824Z 15:02:51.072 | Pass Target Color and DepthStencil (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:51.0732773Z 15:02:51.072 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.0739622Z 15:02:51.073 | Pass Target Color and DepthStencil (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:51.0745087Z 15:02:51.074 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.0753605Z 15:02:51.074 | Pass Target only Color (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:51.0758848Z 15:02:51.075 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.0765592Z 15:02:51.076 | Pass Target only Color (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.0771568Z 15:02:51.076 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.0777936Z 15:02:51.077 | Pass Target only DepthStencil (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:51.0783734Z 15:02:51.077 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.0790182Z 15:02:51.078 | Pass Target only DepthStencil (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.0794971Z 15:02:51.079 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.0839734Z 15:02:51.079 | Serialized binary data for shader Hidden/Internal-DebugPattern in 0.00s -2026-03-27T14:02:51.0852080Z 15:02:51.084 | gamecore_scarlett (total internal programs: 6, unique: 4) -2026-03-27T14:02:51.0862093Z 15:02:51.085 | Compiling shader "Hidden/Internal-GUITextureClip" -2026-03-27T14:02:51.0875532Z 15:02:51.087 | Pass "" (vp) -2026-03-27T14:02:51.0883130Z 15:02:51.087 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.0889260Z 15:02:51.088 | Full variant space: 1 -2026-03-27T14:02:51.0902391Z 15:02:51.089 | After settings filtering: 1 -2026-03-27T14:02:51.0910145Z 15:02:51.090 | After built-in stripping: 1 -2026-03-27T14:02:51.0918254Z 15:02:51.091 | After scriptable stripping: 1 -2026-03-27T14:02:51.0924879Z 15:02:51.092 | Processed in 0.00 seconds -2026-03-27T14:02:51.0932118Z 15:02:51.092 | Pass "" (fp) -2026-03-27T14:02:51.0939395Z 15:02:51.093 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.0948521Z 15:02:51.094 | Full variant space: 1 -2026-03-27T14:02:51.1046382Z 15:02:51.096 | After settings filtering: 1 -2026-03-27T14:02:51.1074109Z 15:02:51.106 | After built-in stripping: 1 -2026-03-27T14:02:51.1101979Z 15:02:51.108 | After scriptable stripping: 1 -2026-03-27T14:02:51.1123989Z 15:02:51.110 | Processed in 0.00 seconds -2026-03-27T14:02:51.1147960Z 15:02:51.113 | Pass "" (vp) -2026-03-27T14:02:51.1189257Z 15:02:51.116 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.1245147Z 15:02:51.122 | Full variant space: 1 -2026-03-27T14:02:51.1254445Z 15:02:51.125 | After settings filtering: 1 -2026-03-27T14:02:51.1262066Z 15:02:51.125 | After built-in stripping: 1 -2026-03-27T14:02:51.1293615Z 15:02:51.126 | After scriptable stripping: 1 -2026-03-27T14:02:51.1301581Z 15:02:51.129 | Processed in 0.00 seconds -2026-03-27T14:02:51.1313292Z 15:02:51.130 | Pass "" (fp) -2026-03-27T14:02:51.1319321Z 15:02:51.131 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.1325256Z 15:02:51.132 | Full variant space: 1 -2026-03-27T14:02:51.1331085Z 15:02:51.132 | After settings filtering: 1 -2026-03-27T14:02:51.1336957Z 15:02:51.133 | After built-in stripping: 1 -2026-03-27T14:02:51.1342727Z 15:02:51.133 | After scriptable stripping: 1 -2026-03-27T14:02:51.1348396Z 15:02:51.134 | Processed in 0.00 seconds -2026-03-27T14:02:51.1355744Z 15:02:51.135 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.1361383Z 15:02:51.135 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.1367882Z 15:02:51.136 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.1372769Z 15:02:51.136 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.1391127Z 15:02:51.137 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.1429707Z 15:02:51.140 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.1514059Z 15:02:51.146 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.1537031Z 15:02:51.152 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.1553168Z 15:02:51.154 | Compiling shader "Hidden/Internal-GUITextureClip" -2026-03-27T14:02:51.1574478Z 15:02:51.156 | Pass "" (vp) -2026-03-27T14:02:51.1612416Z 15:02:51.158 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.1630373Z 15:02:51.161 | Full variant space: 1 -2026-03-27T14:02:51.1653573Z 15:02:51.164 | After settings filtering: 1 -2026-03-27T14:02:51.1684458Z 15:02:51.166 | After built-in stripping: 1 -2026-03-27T14:02:51.1710235Z 15:02:51.169 | After scriptable stripping: 1 -2026-03-27T14:02:51.1733253Z 15:02:51.171 | Processed in 0.00 seconds -2026-03-27T14:02:51.1752952Z 15:02:51.173 | Pass "" (fp) -2026-03-27T14:02:51.1814206Z 15:02:51.178 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.1843285Z 15:02:51.183 | Full variant space: 1 -2026-03-27T14:02:51.1852019Z 15:02:51.184 | After settings filtering: 1 -2026-03-27T14:02:51.1860084Z 15:02:51.185 | After built-in stripping: 1 -2026-03-27T14:02:51.1867307Z 15:02:51.186 | After scriptable stripping: 1 -2026-03-27T14:02:51.1876066Z 15:02:51.187 | Processed in 0.00 seconds -2026-03-27T14:02:51.1882079Z 15:02:51.187 | Pass "" (vp) -2026-03-27T14:02:51.1888777Z 15:02:51.188 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.1894362Z 15:02:51.189 | Full variant space: 1 -2026-03-27T14:02:51.1900140Z 15:02:51.189 | After settings filtering: 1 -2026-03-27T14:02:51.1908548Z 15:02:51.190 | After built-in stripping: 1 -2026-03-27T14:02:51.1914604Z 15:02:51.191 | After scriptable stripping: 1 -2026-03-27T14:02:51.1920076Z 15:02:51.191 | Processed in 0.00 seconds -2026-03-27T14:02:51.1927234Z 15:02:51.192 | Pass "" (fp) -2026-03-27T14:02:51.1932512Z 15:02:51.192 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.1938172Z 15:02:51.193 | Full variant space: 1 -2026-03-27T14:02:51.1944034Z 15:02:51.194 | After settings filtering: 1 -2026-03-27T14:02:51.1950403Z 15:02:51.194 | After built-in stripping: 1 -2026-03-27T14:02:51.1956696Z 15:02:51.195 | After scriptable stripping: 1 -2026-03-27T14:02:51.1962348Z 15:02:51.195 | Processed in 0.00 seconds -2026-03-27T14:02:51.1969281Z 15:02:51.196 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:51.1975034Z 15:02:51.197 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.1981816Z 15:02:51.197 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:51.1987232Z 15:02:51.198 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.1992836Z 15:02:51.198 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:51.1998077Z 15:02:51.199 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.2004196Z 15:02:51.199 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:51.2009980Z 15:02:51.200 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.2015997Z 15:02:51.201 | Serialized binary data for shader Hidden/Internal-GUITextureClip in 0.00s -2026-03-27T14:02:51.2021317Z 15:02:51.201 | gamecore_scarlett (total internal programs: 4, unique: 2) -2026-03-27T14:02:51.2026991Z 15:02:51.202 | Compiling shader "Hidden/Internal-GUITextureClipText" -2026-03-27T14:02:51.2032039Z 15:02:51.202 | Pass "" (vp) -2026-03-27T14:02:51.2037396Z 15:02:51.203 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.2043052Z 15:02:51.203 | Full variant space: 1 -2026-03-27T14:02:51.2049629Z 15:02:51.204 | After settings filtering: 1 -2026-03-27T14:02:51.2055423Z 15:02:51.205 | After built-in stripping: 1 -2026-03-27T14:02:51.2070040Z 15:02:51.205 | After scriptable stripping: 1 -2026-03-27T14:02:51.2079100Z 15:02:51.207 | Processed in 0.00 seconds -2026-03-27T14:02:51.2085047Z 15:02:51.208 | Pass "" (fp) -2026-03-27T14:02:51.2091993Z 15:02:51.208 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.2099768Z 15:02:51.209 | Full variant space: 1 -2026-03-27T14:02:51.2106199Z 15:02:51.210 | After settings filtering: 1 -2026-03-27T14:02:51.2116465Z 15:02:51.211 | After built-in stripping: 1 -2026-03-27T14:02:51.2122210Z 15:02:51.211 | After scriptable stripping: 1 -2026-03-27T14:02:51.2128518Z 15:02:51.212 | Processed in 0.00 seconds -2026-03-27T14:02:51.2134077Z 15:02:51.213 | Pass "" (vp) -2026-03-27T14:02:51.2139823Z 15:02:51.213 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.2145643Z 15:02:51.214 | Full variant space: 1 -2026-03-27T14:02:51.2151235Z 15:02:51.214 | After settings filtering: 1 -2026-03-27T14:02:51.2156759Z 15:02:51.215 | After built-in stripping: 1 -2026-03-27T14:02:51.2162349Z 15:02:51.215 | After scriptable stripping: 1 -2026-03-27T14:02:51.2168711Z 15:02:51.216 | Processed in 0.00 seconds -2026-03-27T14:02:51.2174310Z 15:02:51.217 | Pass "" (fp) -2026-03-27T14:02:51.2180295Z 15:02:51.217 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.2185783Z 15:02:51.218 | Full variant space: 1 -2026-03-27T14:02:51.2194754Z 15:02:51.219 | After settings filtering: 1 -2026-03-27T14:02:51.2201422Z 15:02:51.219 | After built-in stripping: 1 -2026-03-27T14:02:51.2207633Z 15:02:51.220 | After scriptable stripping: 1 -2026-03-27T14:02:51.2213261Z 15:02:51.220 | Processed in 0.00 seconds -2026-03-27T14:02:51.2225196Z 15:02:51.221 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.2233280Z 15:02:51.222 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.2242739Z 15:02:51.223 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.2251114Z 15:02:51.224 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.2257772Z 15:02:51.225 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.2263061Z 15:02:51.225 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.2268866Z 15:02:51.226 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.2273638Z 15:02:51.226 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.2279502Z 15:02:51.227 | Compiling shader "Hidden/Internal-GUITextureClipText" -2026-03-27T14:02:51.2284994Z 15:02:51.228 | Pass "" (vp) -2026-03-27T14:02:51.2290639Z 15:02:51.228 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.2298134Z 15:02:51.229 | Full variant space: 1 -2026-03-27T14:02:51.2330733Z 15:02:51.231 | After settings filtering: 1 -2026-03-27T14:02:51.2509511Z 15:02:51.235 | After built-in stripping: 1 -2026-03-27T14:02:51.2563825Z 15:02:51.251 | After scriptable stripping: 1 -2026-03-27T14:02:51.2601439Z 15:02:51.257 | Processed in 0.00 seconds -2026-03-27T14:02:51.2620530Z 15:02:51.261 | Pass "" (fp) -2026-03-27T14:02:51.2631546Z 15:02:51.262 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.2639849Z 15:02:51.263 | Full variant space: 1 -2026-03-27T14:02:51.2650825Z 15:02:51.264 | After settings filtering: 1 -2026-03-27T14:02:51.2660390Z 15:02:51.265 | After built-in stripping: 1 -2026-03-27T14:02:51.2668384Z 15:02:51.266 | After scriptable stripping: 1 -2026-03-27T14:02:51.2682392Z 15:02:51.267 | Processed in 0.00 seconds -2026-03-27T14:02:51.2699176Z 15:02:51.268 | Pass "" (vp) -2026-03-27T14:02:51.2707056Z 15:02:51.270 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.2713422Z 15:02:51.270 | Full variant space: 1 -2026-03-27T14:02:51.2719455Z 15:02:51.271 | After settings filtering: 1 -2026-03-27T14:02:51.2725812Z 15:02:51.272 | After built-in stripping: 1 -2026-03-27T14:02:51.2732825Z 15:02:51.272 | After scriptable stripping: 1 -2026-03-27T14:02:51.2738318Z 15:02:51.273 | Processed in 0.00 seconds -2026-03-27T14:02:51.2744154Z 15:02:51.274 | Pass "" (fp) -2026-03-27T14:02:51.2749578Z 15:02:51.274 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.2755403Z 15:02:51.275 | Full variant space: 1 -2026-03-27T14:02:51.2761001Z 15:02:51.275 | After settings filtering: 1 -2026-03-27T14:02:51.2767110Z 15:02:51.276 | After built-in stripping: 1 -2026-03-27T14:02:51.2773354Z 15:02:51.276 | After scriptable stripping: 1 -2026-03-27T14:02:51.2786156Z 15:02:51.277 | Processed in 0.00 seconds -2026-03-27T14:02:51.2825429Z 15:02:51.280 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:51.2897508Z 15:02:51.283 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.3032063Z 15:02:51.293 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.3066300Z 15:02:51.304 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.3084775Z 15:02:51.307 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:51.3127087Z 15:02:51.309 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.3176155Z 15:02:51.313 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.3220792Z 15:02:51.319 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.3239484Z 15:02:51.322 | Serialized binary data for shader Hidden/Internal-GUITextureClipText in 0.00s -2026-03-27T14:02:51.3268509Z 15:02:51.324 | gamecore_scarlett (total internal programs: 4, unique: 2) -2026-03-27T14:02:51.3282035Z 15:02:51.327 | Compiling shader "Hidden/Internal-GUITexture" -2026-03-27T14:02:51.3335134Z 15:02:51.329 | Pass "" (vp) -2026-03-27T14:02:51.3353078Z 15:02:51.334 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.3386399Z 15:02:51.336 | Full variant space: 1 -2026-03-27T14:02:51.3424878Z 15:02:51.339 | After settings filtering: 1 -2026-03-27T14:02:51.3433564Z 15:02:51.342 | After built-in stripping: 1 -2026-03-27T14:02:51.3445914Z 15:02:51.343 | After scriptable stripping: 1 -2026-03-27T14:02:51.3453641Z 15:02:51.345 | Processed in 0.00 seconds -2026-03-27T14:02:51.3477386Z 15:02:51.346 | Pass "" (fp) -2026-03-27T14:02:51.3481883Z 15:02:51.347 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.3490512Z 15:02:51.348 | Full variant space: 1 -2026-03-27T14:02:51.3499117Z 15:02:51.349 | After settings filtering: 1 -2026-03-27T14:02:51.3512068Z 15:02:51.350 | After built-in stripping: 1 -2026-03-27T14:02:51.3541938Z 15:02:51.352 | After scriptable stripping: 1 -2026-03-27T14:02:51.3554993Z 15:02:51.354 | Processed in 0.00 seconds -2026-03-27T14:02:51.3564917Z 15:02:51.356 | Pass "" (vp) -2026-03-27T14:02:51.3574273Z 15:02:51.357 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.3585184Z 15:02:51.357 | Full variant space: 1 -2026-03-27T14:02:51.3593419Z 15:02:51.358 | After settings filtering: 1 -2026-03-27T14:02:51.3603485Z 15:02:51.359 | After built-in stripping: 1 -2026-03-27T14:02:51.3624166Z 15:02:51.360 | After scriptable stripping: 1 -2026-03-27T14:02:51.3649935Z 15:02:51.363 | Processed in 0.00 seconds -2026-03-27T14:02:51.3660114Z 15:02:51.365 | Pass "" (fp) -2026-03-27T14:02:51.3666729Z 15:02:51.366 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.3672480Z 15:02:51.366 | Full variant space: 1 -2026-03-27T14:02:51.3677626Z 15:02:51.367 | After settings filtering: 1 -2026-03-27T14:02:51.3683704Z 15:02:51.367 | After built-in stripping: 1 -2026-03-27T14:02:51.3690129Z 15:02:51.368 | After scriptable stripping: 1 -2026-03-27T14:02:51.3696099Z 15:02:51.369 | Processed in 0.00 seconds -2026-03-27T14:02:51.3702447Z 15:02:51.369 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.3706913Z 15:02:51.370 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.3713680Z 15:02:51.370 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.3719240Z 15:02:51.371 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.3726997Z 15:02:51.372 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.3732018Z 15:02:51.372 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.3738379Z 15:02:51.373 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.3742935Z 15:02:51.373 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.3748347Z 15:02:51.374 | Compiling shader "Hidden/Internal-GUITexture" -2026-03-27T14:02:51.3754032Z 15:02:51.375 | Pass "" (vp) -2026-03-27T14:02:51.3759229Z 15:02:51.375 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.3764596Z 15:02:51.376 | Full variant space: 1 -2026-03-27T14:02:51.3777154Z 15:02:51.377 | After settings filtering: 1 -2026-03-27T14:02:51.3782216Z 15:02:51.377 | After built-in stripping: 1 -2026-03-27T14:02:51.3787797Z 15:02:51.378 | After scriptable stripping: 1 -2026-03-27T14:02:51.3821116Z 15:02:51.379 | Processed in 0.00 seconds -2026-03-27T14:02:51.3873274Z 15:02:51.384 | Pass "" (fp) -2026-03-27T14:02:51.3886799Z 15:02:51.387 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.3912772Z 15:02:51.389 | Full variant space: 1 -2026-03-27T14:02:51.3962477Z 15:02:51.393 | After settings filtering: 1 -2026-03-27T14:02:51.3994695Z 15:02:51.397 | After built-in stripping: 1 -2026-03-27T14:02:51.4024314Z 15:02:51.400 | After scriptable stripping: 1 -2026-03-27T14:02:51.4043071Z 15:02:51.403 | Processed in 0.00 seconds -2026-03-27T14:02:51.4069276Z 15:02:51.405 | Pass "" (vp) -2026-03-27T14:02:51.4081658Z 15:02:51.407 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.4172742Z 15:02:51.409 | Full variant space: 1 -2026-03-27T14:02:51.4186045Z 15:02:51.418 | After settings filtering: 1 -2026-03-27T14:02:51.4191204Z 15:02:51.418 | After built-in stripping: 1 -2026-03-27T14:02:51.4196828Z 15:02:51.419 | After scriptable stripping: 1 -2026-03-27T14:02:51.4202332Z 15:02:51.419 | Processed in 0.00 seconds -2026-03-27T14:02:51.4208183Z 15:02:51.420 | Pass "" (fp) -2026-03-27T14:02:51.4213577Z 15:02:51.420 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.4218926Z 15:02:51.421 | Full variant space: 1 -2026-03-27T14:02:51.4224292Z 15:02:51.422 | After settings filtering: 1 -2026-03-27T14:02:51.4229756Z 15:02:51.422 | After built-in stripping: 1 -2026-03-27T14:02:51.4234679Z 15:02:51.423 | After scriptable stripping: 1 -2026-03-27T14:02:51.4244821Z 15:02:51.423 | Processed in 0.00 seconds -2026-03-27T14:02:51.4251694Z 15:02:51.424 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:51.4257073Z 15:02:51.425 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.4262463Z 15:02:51.425 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.4266985Z 15:02:51.426 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.4272902Z 15:02:51.426 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:51.4278259Z 15:02:51.427 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.4284280Z 15:02:51.427 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:51.4293512Z 15:02:51.428 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.4297607Z 15:02:51.429 | Serialized binary data for shader Hidden/Internal-GUITexture in 0.00s -2026-03-27T14:02:51.4324484Z 15:02:51.430 | gamecore_scarlett (total internal programs: 4, unique: 2) -2026-03-27T14:02:51.4353166Z 15:02:51.433 | Compiling shader "Hidden/Internal-GUITextureBlit" -2026-03-27T14:02:51.4381044Z 15:02:51.436 | Pass "" (vp) -2026-03-27T14:02:51.4413064Z 15:02:51.438 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.4531476Z 15:02:51.445 | Full variant space: 1 -2026-03-27T14:02:51.4684140Z 15:02:51.457 | After settings filtering: 1 -2026-03-27T14:02:51.4774747Z 15:02:51.473 | After built-in stripping: 1 -2026-03-27T14:02:51.4820779Z 15:02:51.478 | After scriptable stripping: 1 -2026-03-27T14:02:51.4832663Z 15:02:51.482 | Processed in 0.00 seconds -2026-03-27T14:02:51.4854285Z 15:02:51.483 | Pass "" (fp) -2026-03-27T14:02:51.4878470Z 15:02:51.486 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.4896624Z 15:02:51.489 | Full variant space: 1 -2026-03-27T14:02:51.4902874Z 15:02:51.489 | After settings filtering: 1 -2026-03-27T14:02:51.4907892Z 15:02:51.490 | After built-in stripping: 1 -2026-03-27T14:02:51.4919652Z 15:02:51.491 | After scriptable stripping: 1 -2026-03-27T14:02:51.4932229Z 15:02:51.492 | Processed in 0.00 seconds -2026-03-27T14:02:51.4938709Z 15:02:51.493 | Pass "" (vp) -2026-03-27T14:02:51.4944241Z 15:02:51.494 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.4950416Z 15:02:51.494 | Full variant space: 1 -2026-03-27T14:02:51.4968578Z 15:02:51.495 | After settings filtering: 1 -2026-03-27T14:02:51.4992879Z 15:02:51.497 | After built-in stripping: 1 -2026-03-27T14:02:51.5018287Z 15:02:51.501 | After scriptable stripping: 1 -2026-03-27T14:02:51.5066594Z 15:02:51.502 | Processed in 0.00 seconds -2026-03-27T14:02:51.5126327Z 15:02:51.510 | Pass "" (fp) -2026-03-27T14:02:51.5142827Z 15:02:51.513 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.5153628Z 15:02:51.514 | Full variant space: 1 -2026-03-27T14:02:51.5161175Z 15:02:51.515 | After settings filtering: 1 -2026-03-27T14:02:51.5169014Z 15:02:51.516 | After built-in stripping: 1 -2026-03-27T14:02:51.5179156Z 15:02:51.517 | After scriptable stripping: 1 -2026-03-27T14:02:51.5186827Z 15:02:51.518 | Processed in 0.00 seconds -2026-03-27T14:02:51.5219196Z 15:02:51.520 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.5228554Z 15:02:51.522 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.5234808Z 15:02:51.523 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.5244710Z 15:02:51.524 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.5251511Z 15:02:51.524 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:51.5259780Z 15:02:51.525 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.5267626Z 15:02:51.526 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:51.5273681Z 15:02:51.527 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:51.5284896Z 15:02:51.527 | Compiling shader "Hidden/Internal-GUITextureBlit" -2026-03-27T14:02:51.5291157Z 15:02:51.528 | Pass "" (vp) -2026-03-27T14:02:51.5298537Z 15:02:51.529 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.5305815Z 15:02:51.530 | Full variant space: 1 -2026-03-27T14:02:51.5312769Z 15:02:51.530 | After settings filtering: 1 -2026-03-27T14:02:51.5321969Z 15:02:51.531 | After built-in stripping: 1 -2026-03-27T14:02:51.5331094Z 15:02:51.532 | After scriptable stripping: 1 -2026-03-27T14:02:51.5337761Z 15:02:51.533 | Processed in 0.00 seconds -2026-03-27T14:02:51.5342842Z 15:02:51.533 | Pass "" (fp) -2026-03-27T14:02:51.5352025Z 15:02:51.534 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.5362879Z 15:02:51.535 | Full variant space: 1 -2026-03-27T14:02:51.5369810Z 15:02:51.536 | After settings filtering: 1 -2026-03-27T14:02:51.5376614Z 15:02:51.537 | After built-in stripping: 1 -2026-03-27T14:02:51.5779677Z 15:02:51.537 | After scriptable stripping: 1 -2026-03-27T14:02:51.6016029Z 15:02:51.586 | Processed in 0.00 seconds -2026-03-27T14:02:51.6021669Z 15:02:51.601 | Pass "" (vp) -2026-03-27T14:02:51.6027610Z 15:02:51.602 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.6040882Z 15:02:51.603 | Full variant space: 1 -2026-03-27T14:02:51.6050700Z 15:02:51.604 | After settings filtering: 1 -2026-03-27T14:02:51.6056272Z 15:02:51.605 | After built-in stripping: 1 -2026-03-27T14:02:51.6064886Z 15:02:51.606 | After scriptable stripping: 1 -2026-03-27T14:02:51.6133442Z 15:02:51.606 | Processed in 0.00 seconds -2026-03-27T14:02:51.6469993Z 15:02:51.622 | Pass "" (fp) -2026-03-27T14:02:51.6861125Z 15:02:51.658 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:51.7207097Z 15:02:51.698 | Full variant space: 1 -2026-03-27T14:02:51.7642358Z 15:02:51.728 | After settings filtering: 1 -2026-03-27T14:02:51.8077686Z 15:02:51.776 | After built-in stripping: 1 -2026-03-27T14:02:51.8527019Z 15:02:51.816 | After scriptable stripping: 1 -2026-03-27T14:02:51.9010914Z 15:02:51.873 | Processed in 0.00 seconds -2026-03-27T14:02:51.9308306Z 15:02:51.907 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:51.9663289Z 15:02:51.939 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:52.0071472Z 15:02:51.981 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:52.0415513Z 15:02:52.017 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:52.0636569Z 15:02:52.046 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:52.1057658Z 15:02:52.071 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:52.1420311Z 15:02:52.115 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:52.1720671Z 15:02:52.152 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:52.2120901Z 15:02:52.183 | Serialized binary data for shader Hidden/Internal-GUITextureBlit in 0.00s -2026-03-27T14:02:52.2509135Z 15:02:52.222 | gamecore_scarlett (total internal programs: 4, unique: 2) -2026-03-27T14:02:52.2810212Z 15:02:52.259 | Compiling shader "Hidden/Internal-GUIRoundedRect" -2026-03-27T14:02:52.3087059Z 15:02:52.288 | Pass "" (vp) -2026-03-27T14:02:52.3434467Z 15:02:52.316 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:52.3754529Z 15:02:52.352 | Full variant space: 1 -2026-03-27T14:02:52.4145638Z 15:02:52.388 | After settings filtering: 1 -2026-03-27T14:02:52.4506892Z 15:02:52.426 | After built-in stripping: 1 -2026-03-27T14:02:52.4948792Z 15:02:52.463 | After scriptable stripping: 1 -2026-03-27T14:02:52.5329360Z 15:02:52.504 | Processed in 0.00 seconds -2026-03-27T14:02:52.5649951Z 15:02:52.547 | Pass "" (fp) -2026-03-27T14:02:52.5695078Z 15:02:52.568 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:52.5710399Z 15:02:52.570 | Full variant space: 1 -2026-03-27T14:02:52.5717423Z 15:02:52.571 | After settings filtering: 1 -2026-03-27T14:02:52.5724071Z 15:02:52.571 | After built-in stripping: 1 -2026-03-27T14:02:52.5737330Z 15:02:52.572 | After scriptable stripping: 1 -2026-03-27T14:02:52.5743972Z 15:02:52.573 | Processed in 0.00 seconds -2026-03-27T14:02:52.5751346Z 15:02:52.574 | Pass "" (vp) -2026-03-27T14:02:52.5761185Z 15:02:52.575 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:52.5768736Z 15:02:52.576 | Full variant space: 1 -2026-03-27T14:02:52.5775998Z 15:02:52.577 | After settings filtering: 1 -2026-03-27T14:02:52.5781530Z 15:02:52.577 | After built-in stripping: 1 -2026-03-27T14:02:52.5787599Z 15:02:52.578 | After scriptable stripping: 1 -2026-03-27T14:02:52.5793708Z 15:02:52.578 | Processed in 0.00 seconds -2026-03-27T14:02:52.5799797Z 15:02:52.579 | Pass "" (fp) -2026-03-27T14:02:52.5806842Z 15:02:52.580 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:52.5813333Z 15:02:52.580 | Full variant space: 1 -2026-03-27T14:02:52.5976637Z 15:02:52.581 | After settings filtering: 1 -2026-03-27T14:02:52.6447038Z 15:02:52.620 | After built-in stripping: 1 -2026-03-27T14:02:52.6746455Z 15:02:52.651 | After scriptable stripping: 1 -2026-03-27T14:02:52.7007372Z 15:02:52.684 | Processed in 0.00 seconds -2026-03-27T14:02:52.7311115Z 15:02:52.711 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:52.7592059Z 15:02:52.739 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:52.7868857Z 15:02:52.766 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:52.8326470Z 15:02:52.799 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:52.8631089Z 15:02:52.842 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:52.8914622Z 15:02:52.870 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:52.9235590Z 15:02:52.898 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:52.9596293Z 15:02:52.931 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:53.0015523Z 15:02:52.975 | Compiling shader "Hidden/Internal-GUIRoundedRect" -2026-03-27T14:02:53.0356805Z 15:02:53.010 | Pass "" (vp) -2026-03-27T14:02:53.0662950Z 15:02:53.045 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:53.1078574Z 15:02:53.075 | Full variant space: 1 -2026-03-27T14:02:53.1419293Z 15:02:53.114 | After settings filtering: 1 -2026-03-27T14:02:53.1781336Z 15:02:53.156 | After built-in stripping: 1 -2026-03-27T14:02:53.2043373Z 15:02:53.184 | After scriptable stripping: 1 -2026-03-27T14:02:53.2362742Z 15:02:53.218 | Processed in 0.00 seconds -2026-03-27T14:02:53.2664109Z 15:02:53.242 | Pass "" (fp) -2026-03-27T14:02:53.3014547Z 15:02:53.278 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:53.3406562Z 15:02:53.308 | Full variant space: 1 -2026-03-27T14:02:53.3806952Z 15:02:53.356 | After settings filtering: 1 -2026-03-27T14:02:53.4129588Z 15:02:53.386 | After built-in stripping: 1 -2026-03-27T14:02:53.4390332Z 15:02:53.421 | After scriptable stripping: 1 -2026-03-27T14:02:53.4826183Z 15:02:53.447 | Processed in 0.00 seconds -2026-03-27T14:02:53.5192030Z 15:02:53.489 | Pass "" (vp) -2026-03-27T14:02:53.5495516Z 15:02:53.525 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:53.5816330Z 15:02:53.556 | Full variant space: 1 -2026-03-27T14:02:53.6114985Z 15:02:53.589 | After settings filtering: 1 -2026-03-27T14:02:53.6430319Z 15:02:53.620 | After built-in stripping: 1 -2026-03-27T14:02:53.6717875Z 15:02:53.651 | After scriptable stripping: 1 -2026-03-27T14:02:53.7101726Z 15:02:53.684 | Processed in 0.00 seconds -2026-03-27T14:02:53.7419887Z 15:02:53.720 | Pass "" (fp) -2026-03-27T14:02:53.7700108Z 15:02:53.752 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:53.7981098Z 15:02:53.776 | Full variant space: 1 -2026-03-27T14:02:53.8402747Z 15:02:53.807 | After settings filtering: 1 -2026-03-27T14:02:53.8683458Z 15:02:53.848 | After built-in stripping: 1 -2026-03-27T14:02:53.9004460Z 15:02:53.876 | After scriptable stripping: 1 -2026-03-27T14:02:53.9297504Z 15:02:53.907 | Processed in 0.00 seconds -2026-03-27T14:02:53.9687051Z 15:02:53.938 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:54.0088184Z 15:02:53.980 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:54.0489577Z 15:02:54.020 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:54.0867462Z 15:02:54.059 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:54.1312289Z 15:02:54.100 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:54.1592465Z 15:02:54.141 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:54.1932026Z 15:02:54.171 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:54.2352487Z 15:02:54.203 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:54.2687923Z 15:02:54.245 | Serialized binary data for shader Hidden/Internal-GUIRoundedRect in 0.00s -2026-03-27T14:02:54.2856452Z 15:02:54.272 | gamecore_scarlett (total internal programs: 4, unique: 2) -2026-03-27T14:02:54.3109257Z 15:02:54.293 | Compiling shader "Hidden/Internal-GUIRoundedRectWithColorPerBorder" -2026-03-27T14:02:54.3447131Z 15:02:54.319 | Pass "" (vp) -2026-03-27T14:02:54.3801205Z 15:02:54.357 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:54.4180516Z 15:02:54.392 | Full variant space: 1 -2026-03-27T14:02:54.4441327Z 15:02:54.423 | After settings filtering: 1 -2026-03-27T14:02:54.4794809Z 15:02:54.455 | After built-in stripping: 1 -2026-03-27T14:02:54.5114219Z 15:02:54.490 | After scriptable stripping: 1 -2026-03-27T14:02:54.5484746Z 15:02:54.523 | Processed in 0.00 seconds -2026-03-27T14:02:54.5903798Z 15:02:54.555 | Pass "" (fp) -2026-03-27T14:02:54.6376377Z 15:02:54.608 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:54.6626358Z 15:02:54.644 | Full variant space: 1 -2026-03-27T14:02:54.6945312Z 15:02:54.673 | After settings filtering: 1 -2026-03-27T14:02:54.7248036Z 15:02:54.704 | After built-in stripping: 1 -2026-03-27T14:02:54.7728764Z 15:02:54.736 | After scriptable stripping: 1 -2026-03-27T14:02:54.8050660Z 15:02:54.782 | Processed in 0.00 seconds -2026-03-27T14:02:54.8308957Z 15:02:54.811 | Pass "" (vp) -2026-03-27T14:02:54.8720113Z 15:02:54.837 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:54.8977354Z 15:02:54.879 | Full variant space: 1 -2026-03-27T14:02:54.9314061Z 15:02:54.909 | After settings filtering: 1 -2026-03-27T14:02:54.9656519Z 15:02:54.939 | After built-in stripping: 1 -2026-03-27T14:02:55.0088005Z 15:02:54.977 | After scriptable stripping: 1 -2026-03-27T14:02:55.0494833Z 15:02:55.019 | Processed in 0.00 seconds -2026-03-27T14:02:55.0836103Z 15:02:55.056 | Pass "" (fp) -2026-03-27T14:02:55.1177812Z 15:02:55.098 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.1356652Z 15:02:55.124 | Full variant space: 1 -2026-03-27T14:02:55.1427983Z 15:02:55.136 | After settings filtering: 1 -2026-03-27T14:02:55.1449322Z 15:02:55.143 | After built-in stripping: 1 -2026-03-27T14:02:55.1481077Z 15:02:55.145 | After scriptable stripping: 1 -2026-03-27T14:02:55.1503980Z 15:02:55.149 | Processed in 0.00 seconds -2026-03-27T14:02:55.1518739Z 15:02:55.151 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:55.1534743Z 15:02:55.152 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.1543062Z 15:02:55.153 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:55.1551466Z 15:02:55.154 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.1559143Z 15:02:55.155 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:55.1576911Z 15:02:55.156 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.1617411Z 15:02:55.160 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:55.1699032Z 15:02:55.169 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.1709776Z 15:02:55.170 | Compiling shader "Hidden/Internal-GUIRoundedRectWithColorPerBorder" -2026-03-27T14:02:55.1722369Z 15:02:55.171 | Pass "" (vp) -2026-03-27T14:02:55.1730511Z 15:02:55.172 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.1738057Z 15:02:55.173 | Full variant space: 1 -2026-03-27T14:02:55.1750537Z 15:02:55.174 | After settings filtering: 1 -2026-03-27T14:02:55.1757444Z 15:02:55.175 | After built-in stripping: 1 -2026-03-27T14:02:55.1764038Z 15:02:55.175 | After scriptable stripping: 1 -2026-03-27T14:02:55.1824464Z 15:02:55.176 | Processed in 0.00 seconds -2026-03-27T14:02:55.1846529Z 15:02:55.183 | Pass "" (fp) -2026-03-27T14:02:55.1853320Z 15:02:55.184 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.1859170Z 15:02:55.185 | Full variant space: 1 -2026-03-27T14:02:55.1865908Z 15:02:55.186 | After settings filtering: 1 -2026-03-27T14:02:55.1872885Z 15:02:55.186 | After built-in stripping: 1 -2026-03-27T14:02:55.1879772Z 15:02:55.187 | After scriptable stripping: 1 -2026-03-27T14:02:55.1887196Z 15:02:55.188 | Processed in 0.00 seconds -2026-03-27T14:02:55.1893677Z 15:02:55.188 | Pass "" (vp) -2026-03-27T14:02:55.1899289Z 15:02:55.189 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.1904726Z 15:02:55.190 | Full variant space: 1 -2026-03-27T14:02:55.1910202Z 15:02:55.190 | After settings filtering: 1 -2026-03-27T14:02:55.1915493Z 15:02:55.191 | After built-in stripping: 1 -2026-03-27T14:02:55.1921067Z 15:02:55.191 | After scriptable stripping: 1 -2026-03-27T14:02:55.1934272Z 15:02:55.192 | Processed in 0.00 seconds -2026-03-27T14:02:55.1940160Z 15:02:55.193 | Pass "" (fp) -2026-03-27T14:02:55.1945648Z 15:02:55.194 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.1951992Z 15:02:55.194 | Full variant space: 1 -2026-03-27T14:02:55.1957191Z 15:02:55.195 | After settings filtering: 1 -2026-03-27T14:02:55.1963163Z 15:02:55.195 | After built-in stripping: 1 -2026-03-27T14:02:55.1968977Z 15:02:55.196 | After scriptable stripping: 1 -2026-03-27T14:02:55.1975937Z 15:02:55.197 | Processed in 0.00 seconds -2026-03-27T14:02:55.1983337Z 15:02:55.197 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:55.1988823Z 15:02:55.198 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.1995636Z 15:02:55.199 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:55.2001115Z 15:02:55.199 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.2007657Z 15:02:55.200 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:55.2013093Z 15:02:55.200 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.2019654Z 15:02:55.201 | Pass (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:55.2025061Z 15:02:55.202 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.2031331Z 15:02:55.202 | Serialized binary data for shader Hidden/Internal-GUIRoundedRectWithColorPerBorder in 0.00s -2026-03-27T14:02:55.2036841Z 15:02:55.203 | gamecore_scarlett (total internal programs: 4, unique: 2) -2026-03-27T14:02:55.2042194Z 15:02:55.203 | Compiling shader "Hidden/Internal-UIRDefault" -2026-03-27T14:02:55.2047815Z 15:02:55.204 | Pass "" (vp) -2026-03-27T14:02:55.2053631Z 15:02:55.204 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.2059454Z 15:02:55.205 | Full variant space: 40 -2026-03-27T14:02:55.2065208Z 15:02:55.206 | After settings filtering: 40 -2026-03-27T14:02:55.2070904Z 15:02:55.206 | After built-in stripping: 40 -2026-03-27T14:02:55.2080864Z 15:02:55.207 | After scriptable stripping: 40 -2026-03-27T14:02:55.2091673Z 15:02:55.208 | Processed in 0.00 seconds -2026-03-27T14:02:55.2101036Z 15:02:55.209 | Pass "" (fp) -2026-03-27T14:02:55.2106648Z 15:02:55.210 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.2112244Z 15:02:55.210 | Full variant space: 40 -2026-03-27T14:02:55.2117496Z 15:02:55.211 | After settings filtering: 40 -2026-03-27T14:02:55.2123019Z 15:02:55.211 | After built-in stripping: 40 -2026-03-27T14:02:55.2129091Z 15:02:55.212 | After scriptable stripping: 40 -2026-03-27T14:02:55.2134964Z 15:02:55.213 | Processed in 0.00 seconds -2026-03-27T14:02:55.2140972Z 15:02:55.213 | Pass (vp, gamecore_scarlett) finished in 0.54 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 40 variants (3.07s CPU time), skipped 0 variants. -2026-03-27T14:02:55.2145487Z 15:02:55.214 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.2151361Z 15:02:55.214 | Pass (fp, gamecore_scarlett) finished in 0.57 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 40 variants (3.06s CPU time), skipped 0 variants. -2026-03-27T14:02:55.2156282Z 15:02:55.215 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.2162004Z 15:02:55.215 | Compiling shader "Hidden/Internal-UIRDefault" -2026-03-27T14:02:55.2169681Z 15:02:55.216 | Pass "" (vp) -2026-03-27T14:02:55.2175959Z 15:02:55.217 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.2181590Z 15:02:55.217 | Full variant space: 40 -2026-03-27T14:02:55.2188420Z 15:02:55.218 | After settings filtering: 40 -2026-03-27T14:02:55.2192661Z 15:02:55.218 | After built-in stripping: 40 -2026-03-27T14:02:55.2197950Z 15:02:55.219 | After scriptable stripping: 40 -2026-03-27T14:02:55.2203280Z 15:02:55.219 | Processed in 0.00 seconds -2026-03-27T14:02:55.2208861Z 15:02:55.220 | Pass "" (fp) -2026-03-27T14:02:55.2214462Z 15:02:55.221 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.2225082Z 15:02:55.221 | Full variant space: 40 -2026-03-27T14:02:55.2231235Z 15:02:55.222 | After settings filtering: 40 -2026-03-27T14:02:55.2262295Z 15:02:55.223 | After built-in stripping: 40 -2026-03-27T14:02:55.2283791Z 15:02:55.227 | After scriptable stripping: 40 -2026-03-27T14:02:55.2290843Z 15:02:55.228 | Processed in 0.00 seconds -2026-03-27T14:02:55.2296376Z 15:02:55.229 | Pass (vp, gamecore_scarlett) finished in 1.75 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 40 variants (9.93s CPU time), skipped 0 variants. -2026-03-27T14:02:55.2303874Z 15:02:55.230 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.2311369Z 15:02:55.230 | Pass (fp, gamecore_scarlett) finished in 1.00 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 40 variants (5.34s CPU time), skipped 0 variants. -2026-03-27T14:02:55.2317819Z 15:02:55.231 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.2324737Z 15:02:55.232 | Serialized binary data for shader Hidden/Internal-UIRDefault in 0.00s -2026-03-27T14:02:55.2332667Z 15:02:55.232 | gamecore_scarlett (total internal programs: 80, unique: 80) -2026-03-27T14:02:55.2338086Z 15:02:55.233 | Compiling shader "Hidden/Internal-UIRAtlasBlitCopy" -2026-03-27T14:02:55.2343817Z 15:02:55.233 | Pass "" (vp) -2026-03-27T14:02:55.2349489Z 15:02:55.234 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.2355291Z 15:02:55.235 | Full variant space: 1 -2026-03-27T14:02:55.2361177Z 15:02:55.235 | After settings filtering: 1 -2026-03-27T14:02:55.2368182Z 15:02:55.236 | After built-in stripping: 1 -2026-03-27T14:02:55.2374462Z 15:02:55.237 | After scriptable stripping: 1 -2026-03-27T14:02:55.2383345Z 15:02:55.237 | Processed in 0.00 seconds -2026-03-27T14:02:55.2392401Z 15:02:55.238 | Pass "" (fp) -2026-03-27T14:02:55.2398414Z 15:02:55.239 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.2404278Z 15:02:55.240 | Full variant space: 1 -2026-03-27T14:02:55.2410961Z 15:02:55.240 | After settings filtering: 1 -2026-03-27T14:02:55.2416875Z 15:02:55.241 | After built-in stripping: 1 -2026-03-27T14:02:55.2422481Z 15:02:55.241 | After scriptable stripping: 1 -2026-03-27T14:02:55.2427958Z 15:02:55.242 | Processed in 0.00 seconds -2026-03-27T14:02:55.2434771Z 15:02:55.242 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:55.2439603Z 15:02:55.243 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.2445563Z 15:02:55.244 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:55.2452334Z 15:02:55.244 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.2457844Z 15:02:55.245 | Compiling shader "Hidden/Internal-UIRAtlasBlitCopy" -2026-03-27T14:02:55.2463462Z 15:02:55.245 | Pass "" (vp) -2026-03-27T14:02:55.2469274Z 15:02:55.246 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.2474680Z 15:02:55.247 | Full variant space: 1 -2026-03-27T14:02:55.2480157Z 15:02:55.247 | After settings filtering: 1 -2026-03-27T14:02:55.2485278Z 15:02:55.248 | After built-in stripping: 1 -2026-03-27T14:02:55.2490593Z 15:02:55.248 | After scriptable stripping: 1 -2026-03-27T14:02:55.2497022Z 15:02:55.249 | Processed in 0.00 seconds -2026-03-27T14:02:55.2501368Z 15:02:55.249 | Pass "" (fp) -2026-03-27T14:02:55.2506866Z 15:02:55.250 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.2512305Z 15:02:55.250 | Full variant space: 1 -2026-03-27T14:02:55.2517715Z 15:02:55.251 | After settings filtering: 1 -2026-03-27T14:02:55.2523499Z 15:02:55.251 | After built-in stripping: 1 -2026-03-27T14:02:55.2530591Z 15:02:55.252 | After scriptable stripping: 1 -2026-03-27T14:02:55.2538460Z 15:02:55.253 | Processed in 0.00 seconds -2026-03-27T14:02:55.6905339Z 15:02:55.666 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:55.7155070Z 15:02:55.695 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.7387271Z 15:02:55.720 | Pass (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:55.7637732Z 15:02:55.744 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.7711198Z 15:02:55.766 | Serialized binary data for shader Hidden/Internal-UIRAtlasBlitCopy in 0.00s -2026-03-27T14:02:55.7773427Z 15:02:55.775 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:55.7790041Z 15:02:55.777 | Compiling shader "Sprites/Default" -2026-03-27T14:02:55.7797740Z 15:02:55.779 | Pass "" (vp) -2026-03-27T14:02:55.7804259Z 15:02:55.780 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.7812655Z 15:02:55.780 | Full variant space: 8 -2026-03-27T14:02:55.7817640Z 15:02:55.781 | After settings filtering: 8 -2026-03-27T14:02:55.7829539Z 15:02:55.781 | After built-in stripping: 2 -2026-03-27T14:02:55.7840259Z 15:02:55.783 | After scriptable stripping: 2 -2026-03-27T14:02:55.7848247Z 15:02:55.784 | Processed in 0.00 seconds -2026-03-27T14:02:55.7853870Z 15:02:55.785 | Pass "" (fp) -2026-03-27T14:02:55.7863019Z 15:02:55.785 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.7869380Z 15:02:55.786 | Full variant space: 8 -2026-03-27T14:02:55.7875326Z 15:02:55.787 | After settings filtering: 8 -2026-03-27T14:02:55.7882949Z 15:02:55.787 | After built-in stripping: 2 -2026-03-27T14:02:55.7913965Z 15:02:55.788 | After scriptable stripping: 2 -2026-03-27T14:02:55.7933578Z 15:02:55.791 | Processed in 0.00 seconds -2026-03-27T14:02:55.7951329Z 15:02:55.794 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:55.7973390Z 15:02:55.796 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.7990077Z 15:02:55.798 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:55.8003005Z 15:02:55.799 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.8012160Z 15:02:55.800 | Compiling shader "Sprites/Default" -2026-03-27T14:02:55.8022346Z 15:02:55.801 | Pass "" (vp) -2026-03-27T14:02:55.8030287Z 15:02:55.802 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.8035863Z 15:02:55.803 | Full variant space: 8 -2026-03-27T14:02:55.8041630Z 15:02:55.803 | After settings filtering: 8 -2026-03-27T14:02:55.8052566Z 15:02:55.804 | After built-in stripping: 2 -2026-03-27T14:02:55.8060992Z 15:02:55.805 | After scriptable stripping: 2 -2026-03-27T14:02:55.8070806Z 15:02:55.806 | Processed in 0.00 seconds -2026-03-27T14:02:55.8077163Z 15:02:55.807 | Pass "" (fp) -2026-03-27T14:02:55.8082866Z 15:02:55.807 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.8089460Z 15:02:55.808 | Full variant space: 8 -2026-03-27T14:02:55.8095257Z 15:02:55.809 | After settings filtering: 8 -2026-03-27T14:02:55.8103426Z 15:02:55.809 | After built-in stripping: 2 -2026-03-27T14:02:55.8109873Z 15:02:55.810 | After scriptable stripping: 2 -2026-03-27T14:02:55.8464682Z 15:02:55.811 | Processed in 0.00 seconds -2026-03-27T14:02:55.8618268Z 15:02:55.848 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.17s CPU time), skipped 0 variants. -2026-03-27T14:02:55.8641874Z 15:02:55.863 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.8658795Z 15:02:55.864 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:55.8710361Z 15:02:55.867 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.8720325Z 15:02:55.871 | Serialized binary data for shader Sprites/Default in 0.00s -2026-03-27T14:02:55.8726878Z 15:02:55.872 | gamecore_scarlett (total internal programs: 4, unique: 4) -2026-03-27T14:02:55.8733351Z 15:02:55.872 | Compiling shader "Sprites/Mask" -2026-03-27T14:02:55.8739848Z 15:02:55.873 | Pass "" (vp) -2026-03-27T14:02:55.8745244Z 15:02:55.874 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.8754050Z 15:02:55.874 | Full variant space: 4 -2026-03-27T14:02:55.8760019Z 15:02:55.875 | After settings filtering: 4 -2026-03-27T14:02:55.8768057Z 15:02:55.876 | After built-in stripping: 2 -2026-03-27T14:02:55.8774040Z 15:02:55.877 | After scriptable stripping: 2 -2026-03-27T14:02:55.8780622Z 15:02:55.877 | Processed in 0.00 seconds -2026-03-27T14:02:55.8787797Z 15:02:55.878 | Pass "" (fp) -2026-03-27T14:02:55.8793335Z 15:02:55.879 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.8799179Z 15:02:55.879 | Full variant space: 4 -2026-03-27T14:02:55.8806922Z 15:02:55.880 | After settings filtering: 4 -2026-03-27T14:02:55.8818440Z 15:02:55.881 | After built-in stripping: 2 -2026-03-27T14:02:55.8824290Z 15:02:55.882 | After scriptable stripping: 2 -2026-03-27T14:02:55.8830310Z 15:02:55.882 | Processed in 0.00 seconds -2026-03-27T14:02:55.8840201Z 15:02:55.883 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:55.8849438Z 15:02:55.884 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.8855886Z 15:02:55.885 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:55.8861178Z 15:02:55.885 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:55.8867428Z 15:02:55.886 | Compiling shader "Sprites/Mask" -2026-03-27T14:02:55.8873180Z 15:02:55.886 | Pass "" (vp) -2026-03-27T14:02:55.8879900Z 15:02:55.887 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.8885639Z 15:02:55.888 | Full variant space: 4 -2026-03-27T14:02:55.8892926Z 15:02:55.888 | After settings filtering: 4 -2026-03-27T14:02:55.8899738Z 15:02:55.889 | After built-in stripping: 2 -2026-03-27T14:02:55.8906553Z 15:02:55.890 | After scriptable stripping: 2 -2026-03-27T14:02:55.8912701Z 15:02:55.890 | Processed in 0.00 seconds -2026-03-27T14:02:55.8918685Z 15:02:55.891 | Pass "" (fp) -2026-03-27T14:02:55.9177732Z 15:02:55.897 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:55.9438676Z 15:02:55.925 | Full variant space: 4 -2026-03-27T14:02:55.9721746Z 15:02:55.951 | After settings filtering: 4 -2026-03-27T14:02:55.9944048Z 15:02:55.978 | After built-in stripping: 2 -2026-03-27T14:02:55.9963936Z 15:02:55.996 | After scriptable stripping: 2 -2026-03-27T14:02:55.9984439Z 15:02:55.997 | Processed in 0.00 seconds -2026-03-27T14:02:55.9993623Z 15:02:55.998 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.16s CPU time), skipped 0 variants. -2026-03-27T14:02:55.9999091Z 15:02:55.999 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.0014548Z 15:02:56.000 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:56.0019530Z 15:02:56.001 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.0036643Z 15:02:56.002 | Serialized binary data for shader Sprites/Mask in 0.00s -2026-03-27T14:02:56.0043744Z 15:02:56.004 | gamecore_scarlett (total internal programs: 4, unique: 4) -2026-03-27T14:02:56.0060862Z 15:02:56.005 | Compiling shader "UI/Default" -2026-03-27T14:02:56.0066307Z 15:02:56.006 | Pass "Default" (vp) -2026-03-27T14:02:56.0071260Z 15:02:56.006 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.0076566Z 15:02:56.007 | Full variant space: 4 -2026-03-27T14:02:56.0082189Z 15:02:56.007 | After settings filtering: 4 -2026-03-27T14:02:56.0088381Z 15:02:56.008 | After built-in stripping: 4 -2026-03-27T14:02:56.0094281Z 15:02:56.009 | After scriptable stripping: 4 -2026-03-27T14:02:56.0103383Z 15:02:56.009 | Processed in 0.00 seconds -2026-03-27T14:02:56.0115058Z 15:02:56.011 | Pass "Default" (fp) -2026-03-27T14:02:56.0120777Z 15:02:56.011 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.0126332Z 15:02:56.012 | Full variant space: 4 -2026-03-27T14:02:56.0134259Z 15:02:56.012 | After settings filtering: 4 -2026-03-27T14:02:56.0140402Z 15:02:56.013 | After built-in stripping: 4 -2026-03-27T14:02:56.0146635Z 15:02:56.014 | After scriptable stripping: 4 -2026-03-27T14:02:56.0152169Z 15:02:56.014 | Processed in 0.00 seconds -2026-03-27T14:02:56.0157961Z 15:02:56.015 | Pass Default (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.17s CPU time), skipped 0 variants. -2026-03-27T14:02:56.0162246Z 15:02:56.015 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.0180056Z 15:02:56.016 | Pass Default (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.15s CPU time), skipped 0 variants. -2026-03-27T14:02:56.0189475Z 15:02:56.018 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.0194569Z 15:02:56.019 | Compiling shader "UI/Default" -2026-03-27T14:02:56.0199574Z 15:02:56.019 | Pass "Default" (vp) -2026-03-27T14:02:56.0205897Z 15:02:56.020 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.0216444Z 15:02:56.021 | Full variant space: 4 -2026-03-27T14:02:56.0228502Z 15:02:56.022 | After settings filtering: 4 -2026-03-27T14:02:56.0253242Z 15:02:56.023 | After built-in stripping: 4 -2026-03-27T14:02:56.0292274Z 15:02:56.027 | After scriptable stripping: 4 -2026-03-27T14:02:56.0305121Z 15:02:56.029 | Processed in 0.00 seconds -2026-03-27T14:02:56.0314171Z 15:02:56.030 | Pass "Default" (fp) -2026-03-27T14:02:56.0321886Z 15:02:56.031 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.0333186Z 15:02:56.032 | Full variant space: 4 -2026-03-27T14:02:56.0341938Z 15:02:56.033 | After settings filtering: 4 -2026-03-27T14:02:56.0353541Z 15:02:56.034 | After built-in stripping: 4 -2026-03-27T14:02:56.0364036Z 15:02:56.035 | After scriptable stripping: 4 -2026-03-27T14:02:56.0377324Z 15:02:56.036 | Processed in 0.00 seconds -2026-03-27T14:02:56.0386983Z 15:02:56.038 | Pass Default (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.44s CPU time), skipped 0 variants. -2026-03-27T14:02:56.0395738Z 15:02:56.038 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.0404548Z 15:02:56.039 | Pass Default (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.22s CPU time), skipped 0 variants. -2026-03-27T14:02:56.0411072Z 15:02:56.040 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.0432933Z 15:02:56.041 | Serialized binary data for shader UI/Default in 0.00s -2026-03-27T14:02:56.0443867Z 15:02:56.043 | gamecore_scarlett (total internal programs: 8, unique: 8) -2026-03-27T14:02:56.0454625Z 15:02:56.045 | Compiling shader "UI/DefaultETC1" -2026-03-27T14:02:56.0465656Z 15:02:56.046 | Pass "Default" (vp) -2026-03-27T14:02:56.0474550Z 15:02:56.046 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.0486668Z 15:02:56.047 | Full variant space: 4 -2026-03-27T14:02:56.0502005Z 15:02:56.049 | After settings filtering: 4 -2026-03-27T14:02:56.0513537Z 15:02:56.050 | After built-in stripping: 4 -2026-03-27T14:02:56.0523352Z 15:02:56.051 | After scriptable stripping: 4 -2026-03-27T14:02:56.0530436Z 15:02:56.052 | Processed in 0.00 seconds -2026-03-27T14:02:56.0538233Z 15:02:56.053 | Pass "Default" (fp) -2026-03-27T14:02:56.0546000Z 15:02:56.054 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.0553245Z 15:02:56.054 | Full variant space: 4 -2026-03-27T14:02:56.0560689Z 15:02:56.055 | After settings filtering: 4 -2026-03-27T14:02:56.0588452Z 15:02:56.056 | After built-in stripping: 4 -2026-03-27T14:02:56.0599398Z 15:02:56.059 | After scriptable stripping: 4 -2026-03-27T14:02:56.0606835Z 15:02:56.060 | Processed in 0.00 seconds -2026-03-27T14:02:56.0618467Z 15:02:56.061 | Pass Default (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.17s CPU time), skipped 0 variants. -2026-03-27T14:02:56.0635016Z 15:02:56.062 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.0659298Z 15:02:56.064 | Pass Default (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.15s CPU time), skipped 0 variants. -2026-03-27T14:02:56.1266089Z 15:02:56.081 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.1342804Z 15:02:56.132 | Compiling shader "UI/DefaultETC1" -2026-03-27T14:02:56.1433895Z 15:02:56.135 | Pass "Default" (vp) -2026-03-27T14:02:56.1460457Z 15:02:56.144 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.1484824Z 15:02:56.147 | Full variant space: 4 -2026-03-27T14:02:56.1492929Z 15:02:56.148 | After settings filtering: 4 -2026-03-27T14:02:56.1500793Z 15:02:56.149 | After built-in stripping: 4 -2026-03-27T14:02:56.1506296Z 15:02:56.150 | After scriptable stripping: 4 -2026-03-27T14:02:56.1512666Z 15:02:56.150 | Processed in 0.00 seconds -2026-03-27T14:02:56.1530399Z 15:02:56.151 | Pass "Default" (fp) -2026-03-27T14:02:56.1537728Z 15:02:56.153 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.1545800Z 15:02:56.154 | Full variant space: 4 -2026-03-27T14:02:56.1550363Z 15:02:56.154 | After settings filtering: 4 -2026-03-27T14:02:56.1557717Z 15:02:56.155 | After built-in stripping: 4 -2026-03-27T14:02:56.1563236Z 15:02:56.156 | After scriptable stripping: 4 -2026-03-27T14:02:56.1569967Z 15:02:56.156 | Processed in 0.00 seconds -2026-03-27T14:02:56.1576469Z 15:02:56.157 | Pass Default (vp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.47s CPU time), skipped 0 variants. -2026-03-27T14:02:56.1581930Z 15:02:56.157 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.1588767Z 15:02:56.158 | Pass Default (fp, gamecore_scarlett) finished in 0.17 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 4 variants (0.23s CPU time), skipped 0 variants. -2026-03-27T14:02:56.1593656Z 15:02:56.158 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.1599475Z 15:02:56.159 | Serialized binary data for shader UI/DefaultETC1 in 0.00s -2026-03-27T14:02:56.1605367Z 15:02:56.160 | gamecore_scarlett (total internal programs: 8, unique: 8) -2026-03-27T14:02:56.1610800Z 15:02:56.160 | Compiling shader "Hidden/CubeBlur" -2026-03-27T14:02:56.1616798Z 15:02:56.161 | Pass "" (vp) -2026-03-27T14:02:56.1622763Z 15:02:56.161 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.1628447Z 15:02:56.162 | Full variant space: 1 -2026-03-27T14:02:56.1633083Z 15:02:56.163 | After settings filtering: 1 -2026-03-27T14:02:56.1639270Z 15:02:56.163 | After built-in stripping: 1 -2026-03-27T14:02:56.1645653Z 15:02:56.164 | After scriptable stripping: 1 -2026-03-27T14:02:56.1652767Z 15:02:56.164 | Processed in 0.00 seconds -2026-03-27T14:02:56.1658146Z 15:02:56.165 | Pass "" (fp) -2026-03-27T14:02:56.1664712Z 15:02:56.166 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.1680425Z 15:02:56.167 | Full variant space: 1 -2026-03-27T14:02:56.1691235Z 15:02:56.168 | After settings filtering: 1 -2026-03-27T14:02:56.1707740Z 15:02:56.169 | After built-in stripping: 1 -2026-03-27T14:02:56.1721397Z 15:02:56.171 | After scriptable stripping: 1 -2026-03-27T14:02:56.1742973Z 15:02:56.173 | Processed in 0.00 seconds -2026-03-27T14:02:56.1750122Z 15:02:56.174 | Pass "" (vp) -2026-03-27T14:02:56.1757220Z 15:02:56.175 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.1762891Z 15:02:56.175 | Full variant space: 1 -2026-03-27T14:02:56.1768062Z 15:02:56.176 | After settings filtering: 1 -2026-03-27T14:02:56.1773772Z 15:02:56.176 | After built-in stripping: 1 -2026-03-27T14:02:56.1780443Z 15:02:56.177 | After scriptable stripping: 1 -2026-03-27T14:02:56.1786008Z 15:02:56.178 | Processed in 0.00 seconds -2026-03-27T14:02:56.1791792Z 15:02:56.178 | Pass "" (fp) -2026-03-27T14:02:56.1800157Z 15:02:56.179 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.1812531Z 15:02:56.180 | Full variant space: 1 -2026-03-27T14:02:56.1819736Z 15:02:56.181 | After settings filtering: 1 -2026-03-27T14:02:56.1827828Z 15:02:56.182 | After built-in stripping: 1 -2026-03-27T14:02:56.2618900Z 15:02:56.227 | After scriptable stripping: 1 -2026-03-27T14:02:56.2990812Z 15:02:56.277 | Processed in 0.00 seconds -2026-03-27T14:02:56.3020408Z 15:02:56.300 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:56.3042618Z 15:02:56.302 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.3060363Z 15:02:56.304 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. -2026-03-27T14:02:56.3125274Z 15:02:56.306 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.3137631Z 15:02:56.313 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:56.3146491Z 15:02:56.314 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.3154394Z 15:02:56.315 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:56.3160347Z 15:02:56.315 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.3169029Z 15:02:56.316 | Compiling shader "Hidden/CubeBlur" -2026-03-27T14:02:56.3175875Z 15:02:56.317 | Pass "" (vp) -2026-03-27T14:02:56.3186469Z 15:02:56.318 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.3192346Z 15:02:56.318 | Full variant space: 1 -2026-03-27T14:02:56.3197897Z 15:02:56.319 | After settings filtering: 1 -2026-03-27T14:02:56.3202730Z 15:02:56.320 | After built-in stripping: 1 -2026-03-27T14:02:56.3212146Z 15:02:56.320 | After scriptable stripping: 1 -2026-03-27T14:02:56.3238411Z 15:02:56.321 | Processed in 0.00 seconds -2026-03-27T14:02:56.3283785Z 15:02:56.326 | Pass "" (fp) -2026-03-27T14:02:56.3313691Z 15:02:56.329 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.3324969Z 15:02:56.331 | Full variant space: 1 -2026-03-27T14:02:56.3342543Z 15:02:56.332 | After settings filtering: 1 -2026-03-27T14:02:56.3384616Z 15:02:56.335 | After built-in stripping: 1 -2026-03-27T14:02:56.3405703Z 15:02:56.339 | After scriptable stripping: 1 -2026-03-27T14:02:56.3413285Z 15:02:56.340 | Processed in 0.00 seconds -2026-03-27T14:02:56.3418770Z 15:02:56.341 | Pass "" (vp) -2026-03-27T14:02:56.3424379Z 15:02:56.342 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.3449451Z 15:02:56.342 | Full variant space: 1 -2026-03-27T14:02:56.3456293Z 15:02:56.345 | After settings filtering: 1 -2026-03-27T14:02:56.3462848Z 15:02:56.345 | After built-in stripping: 1 -2026-03-27T14:02:56.3468331Z 15:02:56.346 | After scriptable stripping: 1 -2026-03-27T14:02:56.3473967Z 15:02:56.346 | Processed in 0.00 seconds -2026-03-27T14:02:56.3480041Z 15:02:56.347 | Pass "" (fp) -2026-03-27T14:02:56.3486937Z 15:02:56.348 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.3492348Z 15:02:56.348 | Full variant space: 1 -2026-03-27T14:02:56.3497970Z 15:02:56.349 | After settings filtering: 1 -2026-03-27T14:02:56.3503636Z 15:02:56.350 | After built-in stripping: 1 -2026-03-27T14:02:56.3515012Z 15:02:56.350 | After scriptable stripping: 1 -2026-03-27T14:02:56.3528068Z 15:02:56.351 | Processed in 0.00 seconds -2026-03-27T14:02:56.3554084Z 15:02:56.354 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:56.3631039Z 15:02:56.358 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.7675363Z 15:02:56.766 | Pass (fp, gamecore_scarlett) finished in 0.33 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.33s CPU time), skipped 0 variants. -2026-03-27T14:02:56.7681743Z 15:02:56.767 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.7688382Z 15:02:56.768 | Pass (vp, gamecore_scarlett) finished in 0.33 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:56.7694072Z 15:02:56.768 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.7701045Z 15:02:56.769 | Pass (fp, gamecore_scarlett) finished in 0.32 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:56.7709725Z 15:02:56.770 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.7725340Z 15:02:56.771 | Serialized binary data for shader Hidden/CubeBlur in 0.00s -2026-03-27T14:02:56.7740644Z 15:02:56.773 | gamecore_scarlett (total internal programs: 4, unique: 3) -2026-03-27T14:02:56.7761751Z 15:02:56.775 | Compiling shader "Hidden/CubeCopy" -2026-03-27T14:02:56.7770358Z 15:02:56.776 | Pass "" (vp) -2026-03-27T14:02:56.7776278Z 15:02:56.777 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.7782819Z 15:02:56.777 | Full variant space: 1 -2026-03-27T14:02:56.7788879Z 15:02:56.778 | After settings filtering: 1 -2026-03-27T14:02:56.7797206Z 15:02:56.779 | After built-in stripping: 1 -2026-03-27T14:02:56.7803443Z 15:02:56.779 | After scriptable stripping: 1 -2026-03-27T14:02:56.7815060Z 15:02:56.780 | Processed in 0.00 seconds -2026-03-27T14:02:56.7838571Z 15:02:56.783 | Pass "" (fp) -2026-03-27T14:02:56.7851546Z 15:02:56.784 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.7863315Z 15:02:56.785 | Full variant space: 1 -2026-03-27T14:02:56.7872731Z 15:02:56.786 | After settings filtering: 1 -2026-03-27T14:02:56.7878268Z 15:02:56.787 | After built-in stripping: 1 -2026-03-27T14:02:56.7884591Z 15:02:56.788 | After scriptable stripping: 1 -2026-03-27T14:02:56.7892919Z 15:02:56.788 | Processed in 0.00 seconds -2026-03-27T14:02:56.7899189Z 15:02:56.789 | Pass "" (vp) -2026-03-27T14:02:56.7904516Z 15:02:56.790 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.7909948Z 15:02:56.790 | Full variant space: 1 -2026-03-27T14:02:56.7915261Z 15:02:56.791 | After settings filtering: 1 -2026-03-27T14:02:56.7920890Z 15:02:56.791 | After built-in stripping: 1 -2026-03-27T14:02:56.7926830Z 15:02:56.792 | After scriptable stripping: 1 -2026-03-27T14:02:56.7933659Z 15:02:56.792 | Processed in 0.00 seconds -2026-03-27T14:02:56.7939469Z 15:02:56.793 | Pass "" (fp) -2026-03-27T14:02:56.7945043Z 15:02:56.794 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.7950621Z 15:02:56.794 | Full variant space: 1 -2026-03-27T14:02:56.7955972Z 15:02:56.795 | After settings filtering: 1 -2026-03-27T14:02:56.7961603Z 15:02:56.795 | After built-in stripping: 1 -2026-03-27T14:02:56.7967026Z 15:02:56.796 | After scriptable stripping: 1 -2026-03-27T14:02:56.7976592Z 15:02:56.797 | Processed in 0.00 seconds -2026-03-27T14:02:56.7983449Z 15:02:56.797 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:56.7993295Z 15:02:56.798 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.7999772Z 15:02:56.799 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8007581Z 15:02:56.800 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8015846Z 15:02:56.800 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8028550Z 15:02:56.801 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8036693Z 15:02:56.803 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8043377Z 15:02:56.803 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8050792Z 15:02:56.804 | Compiling shader "Hidden/CubeCopy" -2026-03-27T14:02:56.8055641Z 15:02:56.805 | Pass "" (vp) -2026-03-27T14:02:56.8061625Z 15:02:56.805 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8068233Z 15:02:56.806 | Full variant space: 1 -2026-03-27T14:02:56.8075486Z 15:02:56.806 | After settings filtering: 1 -2026-03-27T14:02:56.8083211Z 15:02:56.807 | After built-in stripping: 1 -2026-03-27T14:02:56.8089315Z 15:02:56.808 | After scriptable stripping: 1 -2026-03-27T14:02:56.8095219Z 15:02:56.809 | Processed in 0.00 seconds -2026-03-27T14:02:56.8101080Z 15:02:56.809 | Pass "" (fp) -2026-03-27T14:02:56.8108470Z 15:02:56.810 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8114236Z 15:02:56.810 | Full variant space: 1 -2026-03-27T14:02:56.8120364Z 15:02:56.811 | After settings filtering: 1 -2026-03-27T14:02:56.8131262Z 15:02:56.812 | After built-in stripping: 1 -2026-03-27T14:02:56.8147933Z 15:02:56.814 | After scriptable stripping: 1 -2026-03-27T14:02:56.8155811Z 15:02:56.815 | Processed in 0.00 seconds -2026-03-27T14:02:56.8163521Z 15:02:56.815 | Pass "" (vp) -2026-03-27T14:02:56.8171955Z 15:02:56.816 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8179446Z 15:02:56.817 | Full variant space: 1 -2026-03-27T14:02:56.8185733Z 15:02:56.818 | After settings filtering: 1 -2026-03-27T14:02:56.8191758Z 15:02:56.818 | After built-in stripping: 1 -2026-03-27T14:02:56.8198287Z 15:02:56.819 | After scriptable stripping: 1 -2026-03-27T14:02:56.8208161Z 15:02:56.820 | Processed in 0.00 seconds -2026-03-27T14:02:56.8216870Z 15:02:56.821 | Pass "" (fp) -2026-03-27T14:02:56.8223271Z 15:02:56.821 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8229128Z 15:02:56.822 | Full variant space: 1 -2026-03-27T14:02:56.8235271Z 15:02:56.823 | After settings filtering: 1 -2026-03-27T14:02:56.8240721Z 15:02:56.823 | After built-in stripping: 1 -2026-03-27T14:02:56.8247024Z 15:02:56.824 | After scriptable stripping: 1 -2026-03-27T14:02:56.8253422Z 15:02:56.824 | Processed in 0.00 seconds -2026-03-27T14:02:56.8259684Z 15:02:56.825 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8265480Z 15:02:56.826 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8273021Z 15:02:56.826 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8277711Z 15:02:56.827 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8289383Z 15:02:56.827 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8296909Z 15:02:56.829 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8302898Z 15:02:56.829 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8308303Z 15:02:56.830 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8313609Z 15:02:56.830 | Serialized binary data for shader Hidden/CubeCopy in 0.00s -2026-03-27T14:02:56.8319365Z 15:02:56.831 | gamecore_scarlett (total internal programs: 4, unique: 2) -2026-03-27T14:02:56.8325262Z 15:02:56.832 | Compiling shader "Hidden/CubeBlend" -2026-03-27T14:02:56.8331393Z 15:02:56.832 | Pass "" (vp) -2026-03-27T14:02:56.8337072Z 15:02:56.833 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8343238Z 15:02:56.833 | Full variant space: 1 -2026-03-27T14:02:56.8348917Z 15:02:56.834 | After settings filtering: 1 -2026-03-27T14:02:56.8354437Z 15:02:56.835 | After built-in stripping: 1 -2026-03-27T14:02:56.8359954Z 15:02:56.835 | After scriptable stripping: 1 -2026-03-27T14:02:56.8365199Z 15:02:56.836 | Processed in 0.00 seconds -2026-03-27T14:02:56.8370898Z 15:02:56.836 | Pass "" (fp) -2026-03-27T14:02:56.8376374Z 15:02:56.837 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8381823Z 15:02:56.837 | Full variant space: 1 -2026-03-27T14:02:56.8387124Z 15:02:56.838 | After settings filtering: 1 -2026-03-27T14:02:56.8392068Z 15:02:56.838 | After built-in stripping: 1 -2026-03-27T14:02:56.8397225Z 15:02:56.839 | After scriptable stripping: 1 -2026-03-27T14:02:56.8402440Z 15:02:56.839 | Processed in 0.00 seconds -2026-03-27T14:02:56.8408265Z 15:02:56.840 | Pass "" (vp) -2026-03-27T14:02:56.8414263Z 15:02:56.841 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8420392Z 15:02:56.841 | Full variant space: 1 -2026-03-27T14:02:56.8425103Z 15:02:56.842 | After settings filtering: 1 -2026-03-27T14:02:56.8430248Z 15:02:56.842 | After built-in stripping: 1 -2026-03-27T14:02:56.8435400Z 15:02:56.843 | After scriptable stripping: 1 -2026-03-27T14:02:56.8440780Z 15:02:56.843 | Processed in 0.00 seconds -2026-03-27T14:02:56.8454788Z 15:02:56.844 | Pass "" (fp) -2026-03-27T14:02:56.8460456Z 15:02:56.845 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8465761Z 15:02:56.846 | Full variant space: 1 -2026-03-27T14:02:56.8471008Z 15:02:56.846 | After settings filtering: 1 -2026-03-27T14:02:56.8476044Z 15:02:56.847 | After built-in stripping: 1 -2026-03-27T14:02:56.8481461Z 15:02:56.847 | After scriptable stripping: 1 -2026-03-27T14:02:56.8487248Z 15:02:56.848 | Processed in 0.00 seconds -2026-03-27T14:02:56.8493093Z 15:02:56.848 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8498199Z 15:02:56.849 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8504241Z 15:02:56.849 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8508973Z 15:02:56.850 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8514821Z 15:02:56.851 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8519190Z 15:02:56.851 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8525334Z 15:02:56.852 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:56.8531544Z 15:02:56.852 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:56.8537462Z 15:02:56.853 | Compiling shader "Hidden/CubeBlend" -2026-03-27T14:02:56.8542945Z 15:02:56.853 | Pass "" (vp) -2026-03-27T14:02:56.8548248Z 15:02:56.854 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8553727Z 15:02:56.854 | Full variant space: 1 -2026-03-27T14:02:56.8558951Z 15:02:56.855 | After settings filtering: 1 -2026-03-27T14:02:56.8564512Z 15:02:56.856 | After built-in stripping: 1 -2026-03-27T14:02:56.8570391Z 15:02:56.856 | After scriptable stripping: 1 -2026-03-27T14:02:56.8576507Z 15:02:56.857 | Processed in 0.00 seconds -2026-03-27T14:02:56.8582526Z 15:02:56.857 | Pass "" (fp) -2026-03-27T14:02:56.8587849Z 15:02:56.858 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:56.8594731Z 15:02:56.859 | Full variant space: 1 -2026-03-27T14:02:56.9170974Z 15:02:56.899 | After settings filtering: 1 -2026-03-27T14:02:56.9426358Z 15:02:56.923 | After built-in stripping: 1 -2026-03-27T14:02:56.9715846Z 15:02:56.949 | After scriptable stripping: 1 -2026-03-27T14:02:56.9929509Z 15:02:56.977 | Processed in 0.00 seconds -2026-03-27T14:02:57.0158797Z 15:02:57.001 | Pass "" (vp) -2026-03-27T14:02:57.0283066Z 15:02:57.023 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.0354740Z 15:02:57.031 | Full variant space: 1 -2026-03-27T14:02:57.0367107Z 15:02:57.036 | After settings filtering: 1 -2026-03-27T14:02:57.0391672Z 15:02:57.038 | After built-in stripping: 1 -2026-03-27T14:02:57.0403696Z 15:02:57.039 | After scriptable stripping: 1 -2026-03-27T14:02:57.0411046Z 15:02:57.040 | Processed in 0.00 seconds -2026-03-27T14:02:57.0420616Z 15:02:57.041 | Pass "" (fp) -2026-03-27T14:02:57.0427971Z 15:02:57.042 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.0434426Z 15:02:57.042 | Full variant space: 1 -2026-03-27T14:02:57.0440711Z 15:02:57.043 | After settings filtering: 1 -2026-03-27T14:02:57.0448575Z 15:02:57.044 | After built-in stripping: 1 -2026-03-27T14:02:57.0454412Z 15:02:57.045 | After scriptable stripping: 1 -2026-03-27T14:02:57.0459598Z 15:02:57.045 | Processed in 0.00 seconds -2026-03-27T14:02:57.0465635Z 15:02:57.046 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:57.0470891Z 15:02:57.046 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.0476582Z 15:02:57.047 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.0481691Z 15:02:57.047 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.0640716Z 15:02:57.048 | Pass (vp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:57.0961721Z 15:02:57.074 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.1201619Z 15:02:57.106 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.1418876Z 15:02:57.126 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.1472665Z 15:02:57.145 | Serialized binary data for shader Hidden/CubeBlend in 0.00s -2026-03-27T14:02:57.1722644Z 15:02:57.152 | gamecore_scarlett (total internal programs: 4, unique: 2) -2026-03-27T14:02:57.1963456Z 15:02:57.180 | Compiling shader "Hidden/VR/BlitTexArraySlice" -2026-03-27T14:02:57.2184727Z 15:02:57.206 | Pass "" (vp) -2026-03-27T14:02:57.2449511Z 15:02:57.226 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.2687092Z 15:02:57.253 | Full variant space: 1 -2026-03-27T14:02:57.2927199Z 15:02:57.274 | After settings filtering: 1 -2026-03-27T14:02:57.3316106Z 15:02:57.304 | After built-in stripping: 1 -2026-03-27T14:02:57.3689063Z 15:02:57.339 | After scriptable stripping: 1 -2026-03-27T14:02:57.3815527Z 15:02:57.373 | Processed in 0.00 seconds -2026-03-27T14:02:57.3886930Z 15:02:57.385 | Pass "" (fp) -2026-03-27T14:02:57.3970537Z 15:02:57.391 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.3995995Z 15:02:57.397 | Full variant space: 1 -2026-03-27T14:02:57.4017469Z 15:02:57.400 | After settings filtering: 1 -2026-03-27T14:02:57.4034353Z 15:02:57.402 | After built-in stripping: 1 -2026-03-27T14:02:57.4056119Z 15:02:57.403 | After scriptable stripping: 1 -2026-03-27T14:02:57.4085668Z 15:02:57.406 | Processed in 0.00 seconds -2026-03-27T14:02:57.4122267Z 15:02:57.409 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.4131037Z 15:02:57.412 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.4138942Z 15:02:57.413 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.4147108Z 15:02:57.414 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.4152259Z 15:02:57.414 | Compiling shader "Hidden/VR/BlitTexArraySlice" -2026-03-27T14:02:57.4158775Z 15:02:57.415 | Pass "" (vp) -2026-03-27T14:02:57.4164924Z 15:02:57.416 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4171248Z 15:02:57.416 | Full variant space: 1 -2026-03-27T14:02:57.4177808Z 15:02:57.417 | After settings filtering: 1 -2026-03-27T14:02:57.4183250Z 15:02:57.417 | After built-in stripping: 1 -2026-03-27T14:02:57.4188847Z 15:02:57.418 | After scriptable stripping: 1 -2026-03-27T14:02:57.4193895Z 15:02:57.419 | Processed in 0.00 seconds -2026-03-27T14:02:57.4199433Z 15:02:57.419 | Pass "" (fp) -2026-03-27T14:02:57.4205484Z 15:02:57.420 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4211286Z 15:02:57.420 | Full variant space: 1 -2026-03-27T14:02:57.4217079Z 15:02:57.421 | After settings filtering: 1 -2026-03-27T14:02:57.4225146Z 15:02:57.421 | After built-in stripping: 1 -2026-03-27T14:02:57.4237701Z 15:02:57.422 | After scriptable stripping: 1 -2026-03-27T14:02:57.4298618Z 15:02:57.427 | Processed in 0.00 seconds -2026-03-27T14:02:57.4325735Z 15:02:57.431 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:57.4356846Z 15:02:57.433 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.4378101Z 15:02:57.437 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.4384494Z 15:02:57.437 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.4395510Z 15:02:57.438 | Serialized binary data for shader Hidden/VR/BlitTexArraySlice in 0.00s -2026-03-27T14:02:57.4401779Z 15:02:57.439 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:57.4409249Z 15:02:57.440 | Compiling shader "Hidden/Internal-ODSWorldTexture" -2026-03-27T14:02:57.4414939Z 15:02:57.441 | Pass "" (vp) -2026-03-27T14:02:57.4420697Z 15:02:57.441 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4426624Z 15:02:57.442 | Full variant space: 1 -2026-03-27T14:02:57.4432553Z 15:02:57.442 | After settings filtering: 1 -2026-03-27T14:02:57.4438024Z 15:02:57.443 | After built-in stripping: 1 -2026-03-27T14:02:57.4443752Z 15:02:57.443 | After scriptable stripping: 1 -2026-03-27T14:02:57.4449191Z 15:02:57.444 | Processed in 0.00 seconds -2026-03-27T14:02:57.4454613Z 15:02:57.445 | Pass "" (fp) -2026-03-27T14:02:57.4459981Z 15:02:57.445 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4465202Z 15:02:57.446 | Full variant space: 1 -2026-03-27T14:02:57.4470494Z 15:02:57.446 | After settings filtering: 1 -2026-03-27T14:02:57.4475890Z 15:02:57.447 | After built-in stripping: 1 -2026-03-27T14:02:57.4482513Z 15:02:57.447 | After scriptable stripping: 1 -2026-03-27T14:02:57.4488394Z 15:02:57.448 | Processed in 0.00 seconds -2026-03-27T14:02:57.4494092Z 15:02:57.449 | Pass "" (vp) -2026-03-27T14:02:57.4499302Z 15:02:57.449 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4504516Z 15:02:57.450 | Full variant space: 1 -2026-03-27T14:02:57.4510143Z 15:02:57.450 | After settings filtering: 1 -2026-03-27T14:02:57.4515033Z 15:02:57.451 | After built-in stripping: 1 -2026-03-27T14:02:57.4520520Z 15:02:57.451 | After scriptable stripping: 1 -2026-03-27T14:02:57.4527188Z 15:02:57.452 | Processed in 0.00 seconds -2026-03-27T14:02:57.4532749Z 15:02:57.452 | Pass "" (fp) -2026-03-27T14:02:57.4539117Z 15:02:57.453 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4544869Z 15:02:57.454 | Full variant space: 1 -2026-03-27T14:02:57.4554734Z 15:02:57.454 | After settings filtering: 1 -2026-03-27T14:02:57.4560483Z 15:02:57.455 | After built-in stripping: 1 -2026-03-27T14:02:57.4566946Z 15:02:57.456 | After scriptable stripping: 1 -2026-03-27T14:02:57.4573865Z 15:02:57.457 | Processed in 0.00 seconds -2026-03-27T14:02:57.4580194Z 15:02:57.457 | Pass "" (vp) -2026-03-27T14:02:57.4586825Z 15:02:57.458 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4592851Z 15:02:57.458 | Full variant space: 1 -2026-03-27T14:02:57.4597494Z 15:02:57.459 | After settings filtering: 1 -2026-03-27T14:02:57.4603189Z 15:02:57.459 | After built-in stripping: 1 -2026-03-27T14:02:57.4609678Z 15:02:57.460 | After scriptable stripping: 1 -2026-03-27T14:02:57.4615102Z 15:02:57.461 | Processed in 0.00 seconds -2026-03-27T14:02:57.4620572Z 15:02:57.461 | Pass "" (fp) -2026-03-27T14:02:57.4626179Z 15:02:57.462 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4631213Z 15:02:57.462 | Full variant space: 1 -2026-03-27T14:02:57.4640797Z 15:02:57.463 | After settings filtering: 1 -2026-03-27T14:02:57.4646380Z 15:02:57.464 | After built-in stripping: 1 -2026-03-27T14:02:57.4652057Z 15:02:57.464 | After scriptable stripping: 1 -2026-03-27T14:02:57.4657832Z 15:02:57.465 | Processed in 0.00 seconds -2026-03-27T14:02:57.4663498Z 15:02:57.465 | Pass "" (vp) -2026-03-27T14:02:57.4669808Z 15:02:57.466 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4675977Z 15:02:57.467 | Full variant space: 1 -2026-03-27T14:02:57.4682844Z 15:02:57.467 | After settings filtering: 1 -2026-03-27T14:02:57.4688505Z 15:02:57.468 | After built-in stripping: 1 -2026-03-27T14:02:57.4694420Z 15:02:57.469 | After scriptable stripping: 1 -2026-03-27T14:02:57.4699996Z 15:02:57.469 | Processed in 0.00 seconds -2026-03-27T14:02:57.4711132Z 15:02:57.470 | Pass "" (fp) -2026-03-27T14:02:57.4718697Z 15:02:57.471 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4723990Z 15:02:57.472 | Full variant space: 1 -2026-03-27T14:02:57.4729914Z 15:02:57.472 | After settings filtering: 1 -2026-03-27T14:02:57.4736463Z 15:02:57.473 | After built-in stripping: 1 -2026-03-27T14:02:57.4742632Z 15:02:57.473 | After scriptable stripping: 1 -2026-03-27T14:02:57.4748135Z 15:02:57.474 | Processed in 0.00 seconds -2026-03-27T14:02:57.4755031Z 15:02:57.475 | Pass "" (vp) -2026-03-27T14:02:57.4766371Z 15:02:57.475 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4772399Z 15:02:57.476 | Full variant space: 1 -2026-03-27T14:02:57.4779154Z 15:02:57.477 | After settings filtering: 1 -2026-03-27T14:02:57.4786332Z 15:02:57.478 | After built-in stripping: 1 -2026-03-27T14:02:57.4791202Z 15:02:57.478 | After scriptable stripping: 1 -2026-03-27T14:02:57.4796870Z 15:02:57.479 | Processed in 0.00 seconds -2026-03-27T14:02:57.4805196Z 15:02:57.480 | Pass "" (fp) -2026-03-27T14:02:57.4814767Z 15:02:57.480 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4822224Z 15:02:57.481 | Full variant space: 1 -2026-03-27T14:02:57.4828200Z 15:02:57.482 | After settings filtering: 1 -2026-03-27T14:02:57.4834635Z 15:02:57.483 | After built-in stripping: 1 -2026-03-27T14:02:57.4840844Z 15:02:57.483 | After scriptable stripping: 1 -2026-03-27T14:02:57.4847262Z 15:02:57.484 | Processed in 0.00 seconds -2026-03-27T14:02:57.4853337Z 15:02:57.484 | Pass "" (vp) -2026-03-27T14:02:57.4861728Z 15:02:57.485 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4867918Z 15:02:57.486 | Full variant space: 1 -2026-03-27T14:02:57.4873579Z 15:02:57.486 | After settings filtering: 1 -2026-03-27T14:02:57.4879904Z 15:02:57.487 | After built-in stripping: 1 -2026-03-27T14:02:57.4886750Z 15:02:57.488 | After scriptable stripping: 1 -2026-03-27T14:02:57.4893352Z 15:02:57.488 | Processed in 0.00 seconds -2026-03-27T14:02:57.4899424Z 15:02:57.489 | Pass "" (fp) -2026-03-27T14:02:57.4905073Z 15:02:57.490 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4910999Z 15:02:57.490 | Full variant space: 1 -2026-03-27T14:02:57.4917170Z 15:02:57.491 | After settings filtering: 1 -2026-03-27T14:02:57.4922762Z 15:02:57.491 | After built-in stripping: 1 -2026-03-27T14:02:57.4929472Z 15:02:57.492 | After scriptable stripping: 1 -2026-03-27T14:02:57.4936614Z 15:02:57.493 | Processed in 0.00 seconds -2026-03-27T14:02:57.4942719Z 15:02:57.493 | Pass "" (vp) -2026-03-27T14:02:57.4948287Z 15:02:57.494 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4954142Z 15:02:57.495 | Full variant space: 1 -2026-03-27T14:02:57.4959612Z 15:02:57.495 | After settings filtering: 1 -2026-03-27T14:02:57.4965271Z 15:02:57.496 | After built-in stripping: 1 -2026-03-27T14:02:57.4971404Z 15:02:57.496 | After scriptable stripping: 1 -2026-03-27T14:02:57.4976531Z 15:02:57.497 | Processed in 0.00 seconds -2026-03-27T14:02:57.4982889Z 15:02:57.497 | Pass "" (fp) -2026-03-27T14:02:57.4988137Z 15:02:57.498 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.4994921Z 15:02:57.499 | Full variant space: 1 -2026-03-27T14:02:57.5000403Z 15:02:57.499 | After settings filtering: 1 -2026-03-27T14:02:57.5005537Z 15:02:57.500 | After built-in stripping: 1 -2026-03-27T14:02:57.5011698Z 15:02:57.500 | After scriptable stripping: 1 -2026-03-27T14:02:57.5023585Z 15:02:57.501 | Processed in 0.00 seconds -2026-03-27T14:02:57.5029295Z 15:02:57.502 | Pass "" (vp) -2026-03-27T14:02:57.5034722Z 15:02:57.503 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.5040584Z 15:02:57.503 | Full variant space: 1 -2026-03-27T14:02:57.5046260Z 15:02:57.504 | After settings filtering: 1 -2026-03-27T14:02:57.5052072Z 15:02:57.504 | After built-in stripping: 1 -2026-03-27T14:02:57.5062126Z 15:02:57.505 | After scriptable stripping: 1 -2026-03-27T14:02:57.5067606Z 15:02:57.506 | Processed in 0.00 seconds -2026-03-27T14:02:57.5073632Z 15:02:57.506 | Pass "" (fp) -2026-03-27T14:02:57.5078937Z 15:02:57.507 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.5084698Z 15:02:57.508 | Full variant space: 1 -2026-03-27T14:02:57.5090937Z 15:02:57.508 | After settings filtering: 1 -2026-03-27T14:02:57.5096904Z 15:02:57.509 | After built-in stripping: 1 -2026-03-27T14:02:57.5103792Z 15:02:57.509 | After scriptable stripping: 1 -2026-03-27T14:02:57.5109456Z 15:02:57.510 | Processed in 0.00 seconds -2026-03-27T14:02:57.5115482Z 15:02:57.511 | Pass "" (vp) -2026-03-27T14:02:57.5121621Z 15:02:57.511 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.5127530Z 15:02:57.512 | Full variant space: 1 -2026-03-27T14:02:57.5133045Z 15:02:57.512 | After settings filtering: 1 -2026-03-27T14:02:57.5138639Z 15:02:57.513 | After built-in stripping: 1 -2026-03-27T14:02:57.5144239Z 15:02:57.514 | After scriptable stripping: 1 -2026-03-27T14:02:57.5149864Z 15:02:57.514 | Processed in 0.00 seconds -2026-03-27T14:02:57.5155387Z 15:02:57.515 | Pass "" (fp) -2026-03-27T14:02:57.5161123Z 15:02:57.515 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.5177542Z 15:02:57.516 | Full variant space: 1 -2026-03-27T14:02:57.5190725Z 15:02:57.518 | After settings filtering: 1 -2026-03-27T14:02:57.5197413Z 15:02:57.519 | After built-in stripping: 1 -2026-03-27T14:02:57.5203161Z 15:02:57.519 | After scriptable stripping: 1 -2026-03-27T14:02:57.5211725Z 15:02:57.520 | Processed in 0.00 seconds -2026-03-27T14:02:57.5218678Z 15:02:57.521 | Pass "" (vp) -2026-03-27T14:02:57.5224219Z 15:02:57.522 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.5236859Z 15:02:57.522 | Full variant space: 1 -2026-03-27T14:02:57.5243645Z 15:02:57.524 | After settings filtering: 1 -2026-03-27T14:02:57.5252595Z 15:02:57.524 | After built-in stripping: 1 -2026-03-27T14:02:57.5258694Z 15:02:57.525 | After scriptable stripping: 1 -2026-03-27T14:02:57.5264144Z 15:02:57.526 | Processed in 0.00 seconds -2026-03-27T14:02:57.5269520Z 15:02:57.526 | Pass "" (fp) -2026-03-27T14:02:57.5274954Z 15:02:57.527 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.5280821Z 15:02:57.527 | Full variant space: 1 -2026-03-27T14:02:57.5287984Z 15:02:57.528 | After settings filtering: 1 -2026-03-27T14:02:57.5293223Z 15:02:57.528 | After built-in stripping: 1 -2026-03-27T14:02:57.5298786Z 15:02:57.529 | After scriptable stripping: 1 -2026-03-27T14:02:57.5304441Z 15:02:57.530 | Processed in 0.00 seconds -2026-03-27T14:02:57.5310712Z 15:02:57.530 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5315824Z 15:02:57.531 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5321909Z 15:02:57.531 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5336271Z 15:02:57.532 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5342837Z 15:02:57.533 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5347822Z 15:02:57.534 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5354116Z 15:02:57.534 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5359145Z 15:02:57.535 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5366660Z 15:02:57.536 | Pass (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5372494Z 15:02:57.536 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5379360Z 15:02:57.537 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5388558Z 15:02:57.538 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5400814Z 15:02:57.539 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5408820Z 15:02:57.540 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5416214Z 15:02:57.541 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5422391Z 15:02:57.541 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5428591Z 15:02:57.542 | Pass (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5434186Z 15:02:57.543 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5440665Z 15:02:57.543 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5444900Z 15:02:57.544 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5452370Z 15:02:57.544 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5458324Z 15:02:57.545 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5465186Z 15:02:57.546 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5471361Z 15:02:57.546 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5477646Z 15:02:57.547 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5483013Z 15:02:57.547 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5512949Z 15:02:57.548 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5546445Z 15:02:57.553 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5558859Z 15:02:57.554 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5568037Z 15:02:57.556 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5576198Z 15:02:57.557 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5584154Z 15:02:57.557 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5591182Z 15:02:57.558 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5598594Z 15:02:57.559 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5606632Z 15:02:57.560 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5610826Z 15:02:57.560 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5618711Z 15:02:57.561 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5624156Z 15:02:57.562 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5630550Z 15:02:57.562 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.5636280Z 15:02:57.563 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.5642930Z 15:02:57.563 | Compiling shader "Hidden/Internal-ODSWorldTexture" -2026-03-27T14:02:57.5651685Z 15:02:57.564 | Pass "" (vp) -2026-03-27T14:02:57.5658090Z 15:02:57.565 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.5664323Z 15:02:57.566 | Full variant space: 1 -2026-03-27T14:02:57.5670160Z 15:02:57.566 | After settings filtering: 1 -2026-03-27T14:02:57.5676091Z 15:02:57.567 | After built-in stripping: 1 -2026-03-27T14:02:57.5683036Z 15:02:57.567 | After scriptable stripping: 1 -2026-03-27T14:02:57.5689695Z 15:02:57.568 | Processed in 0.00 seconds -2026-03-27T14:02:57.5695553Z 15:02:57.569 | Pass "" (fp) -2026-03-27T14:02:57.5701544Z 15:02:57.569 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.5707655Z 15:02:57.570 | Full variant space: 1 -2026-03-27T14:02:57.5714292Z 15:02:57.570 | After settings filtering: 1 -2026-03-27T14:02:57.5721360Z 15:02:57.571 | After built-in stripping: 1 -2026-03-27T14:02:57.5727879Z 15:02:57.572 | After scriptable stripping: 1 -2026-03-27T14:02:57.5734680Z 15:02:57.573 | Processed in 0.00 seconds -2026-03-27T14:02:57.5741037Z 15:02:57.573 | Pass "" (vp) -2026-03-27T14:02:57.5747651Z 15:02:57.574 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.5753519Z 15:02:57.574 | Full variant space: 1 -2026-03-27T14:02:57.5760932Z 15:02:57.575 | After settings filtering: 1 -2026-03-27T14:02:57.5766291Z 15:02:57.576 | After built-in stripping: 1 -2026-03-27T14:02:57.6062131Z 15:02:57.576 | After scriptable stripping: 1 -2026-03-27T14:02:57.6102878Z 15:02:57.607 | Processed in 0.00 seconds -2026-03-27T14:02:57.6116326Z 15:02:57.610 | Pass "" (fp) -2026-03-27T14:02:57.6138903Z 15:02:57.612 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.6148311Z 15:02:57.614 | Full variant space: 1 -2026-03-27T14:02:57.6153820Z 15:02:57.614 | After settings filtering: 1 -2026-03-27T14:02:57.6160172Z 15:02:57.615 | After built-in stripping: 1 -2026-03-27T14:02:57.6166836Z 15:02:57.616 | After scriptable stripping: 1 -2026-03-27T14:02:57.6172942Z 15:02:57.616 | Processed in 0.00 seconds -2026-03-27T14:02:57.6178534Z 15:02:57.617 | Pass "" (vp) -2026-03-27T14:02:57.6183982Z 15:02:57.617 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.6189397Z 15:02:57.618 | Full variant space: 1 -2026-03-27T14:02:57.6195025Z 15:02:57.619 | After settings filtering: 1 -2026-03-27T14:02:57.6200267Z 15:02:57.619 | After built-in stripping: 1 -2026-03-27T14:02:57.6205716Z 15:02:57.620 | After scriptable stripping: 1 -2026-03-27T14:02:57.6212024Z 15:02:57.620 | Processed in 0.00 seconds -2026-03-27T14:02:57.6217858Z 15:02:57.621 | Pass "" (fp) -2026-03-27T14:02:57.6223524Z 15:02:57.621 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.6228662Z 15:02:57.622 | Full variant space: 1 -2026-03-27T14:02:57.6233961Z 15:02:57.623 | After settings filtering: 1 -2026-03-27T14:02:57.6239058Z 15:02:57.623 | After built-in stripping: 1 -2026-03-27T14:02:57.6244913Z 15:02:57.624 | After scriptable stripping: 1 -2026-03-27T14:02:57.6251359Z 15:02:57.624 | Processed in 0.00 seconds -2026-03-27T14:02:57.6257302Z 15:02:57.625 | Pass "" (vp) -2026-03-27T14:02:57.6262796Z 15:02:57.625 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.6268111Z 15:02:57.626 | Full variant space: 1 -2026-03-27T14:02:57.6273428Z 15:02:57.626 | After settings filtering: 1 -2026-03-27T14:02:57.6279038Z 15:02:57.627 | After built-in stripping: 1 -2026-03-27T14:02:57.6296802Z 15:02:57.628 | After scriptable stripping: 1 -2026-03-27T14:02:57.6303004Z 15:02:57.629 | Processed in 0.00 seconds -2026-03-27T14:02:57.6308946Z 15:02:57.630 | Pass "" (fp) -2026-03-27T14:02:57.6318633Z 15:02:57.631 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.6324102Z 15:02:57.632 | Full variant space: 1 -2026-03-27T14:02:57.6329471Z 15:02:57.632 | After settings filtering: 1 -2026-03-27T14:02:57.6335546Z 15:02:57.633 | After built-in stripping: 1 -2026-03-27T14:02:57.6341029Z 15:02:57.633 | After scriptable stripping: 1 -2026-03-27T14:02:57.6346578Z 15:02:57.634 | Processed in 0.00 seconds -2026-03-27T14:02:57.6351972Z 15:02:57.634 | Pass "" (vp) -2026-03-27T14:02:57.6357430Z 15:02:57.635 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.6363111Z 15:02:57.635 | Full variant space: 1 -2026-03-27T14:02:57.6369655Z 15:02:57.636 | After settings filtering: 1 -2026-03-27T14:02:57.6743657Z 15:02:57.637 | After built-in stripping: 1 -2026-03-27T14:02:57.6867499Z 15:02:57.680 | After scriptable stripping: 1 -2026-03-27T14:02:57.6882325Z 15:02:57.687 | Processed in 0.00 seconds -2026-03-27T14:02:57.6922602Z 15:02:57.689 | Pass "" (fp) -2026-03-27T14:02:57.6940292Z 15:02:57.693 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.6950886Z 15:02:57.694 | Full variant space: 1 -2026-03-27T14:02:57.6957836Z 15:02:57.695 | After settings filtering: 1 -2026-03-27T14:02:57.6963795Z 15:02:57.696 | After built-in stripping: 1 -2026-03-27T14:02:57.6972648Z 15:02:57.696 | After scriptable stripping: 1 -2026-03-27T14:02:57.6983903Z 15:02:57.697 | Processed in 0.00 seconds -2026-03-27T14:02:57.6990032Z 15:02:57.698 | Pass "" (vp) -2026-03-27T14:02:57.6994852Z 15:02:57.699 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7000003Z 15:02:57.699 | Full variant space: 1 -2026-03-27T14:02:57.7005594Z 15:02:57.700 | After settings filtering: 1 -2026-03-27T14:02:57.7011896Z 15:02:57.700 | After built-in stripping: 1 -2026-03-27T14:02:57.7017301Z 15:02:57.701 | After scriptable stripping: 1 -2026-03-27T14:02:57.7023400Z 15:02:57.701 | Processed in 0.00 seconds -2026-03-27T14:02:57.7029307Z 15:02:57.702 | Pass "" (fp) -2026-03-27T14:02:57.7035245Z 15:02:57.703 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7041315Z 15:02:57.703 | Full variant space: 1 -2026-03-27T14:02:57.7047442Z 15:02:57.704 | After settings filtering: 1 -2026-03-27T14:02:57.7054190Z 15:02:57.704 | After built-in stripping: 1 -2026-03-27T14:02:57.7066236Z 15:02:57.706 | After scriptable stripping: 1 -2026-03-27T14:02:57.7072930Z 15:02:57.706 | Processed in 0.00 seconds -2026-03-27T14:02:57.7078892Z 15:02:57.707 | Pass "" (vp) -2026-03-27T14:02:57.7086269Z 15:02:57.708 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7092380Z 15:02:57.708 | Full variant space: 1 -2026-03-27T14:02:57.7098056Z 15:02:57.709 | After settings filtering: 1 -2026-03-27T14:02:57.7104383Z 15:02:57.710 | After built-in stripping: 1 -2026-03-27T14:02:57.7116909Z 15:02:57.711 | After scriptable stripping: 1 -2026-03-27T14:02:57.7124058Z 15:02:57.712 | Processed in 0.00 seconds -2026-03-27T14:02:57.7131257Z 15:02:57.712 | Pass "" (fp) -2026-03-27T14:02:57.7137451Z 15:02:57.713 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7143892Z 15:02:57.713 | Full variant space: 1 -2026-03-27T14:02:57.7149196Z 15:02:57.714 | After settings filtering: 1 -2026-03-27T14:02:57.7155010Z 15:02:57.715 | After built-in stripping: 1 -2026-03-27T14:02:57.7160649Z 15:02:57.715 | After scriptable stripping: 1 -2026-03-27T14:02:57.7165907Z 15:02:57.716 | Processed in 0.00 seconds -2026-03-27T14:02:57.7172169Z 15:02:57.716 | Pass "" (vp) -2026-03-27T14:02:57.7178086Z 15:02:57.717 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7183710Z 15:02:57.717 | Full variant space: 1 -2026-03-27T14:02:57.7189254Z 15:02:57.718 | After settings filtering: 1 -2026-03-27T14:02:57.7194687Z 15:02:57.719 | After built-in stripping: 1 -2026-03-27T14:02:57.7200090Z 15:02:57.719 | After scriptable stripping: 1 -2026-03-27T14:02:57.7205377Z 15:02:57.720 | Processed in 0.00 seconds -2026-03-27T14:02:57.7211565Z 15:02:57.720 | Pass "" (fp) -2026-03-27T14:02:57.7221951Z 15:02:57.721 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7227622Z 15:02:57.722 | Full variant space: 1 -2026-03-27T14:02:57.7233204Z 15:02:57.722 | After settings filtering: 1 -2026-03-27T14:02:57.7238157Z 15:02:57.723 | After built-in stripping: 1 -2026-03-27T14:02:57.7245194Z 15:02:57.724 | After scriptable stripping: 1 -2026-03-27T14:02:57.7252060Z 15:02:57.724 | Processed in 0.00 seconds -2026-03-27T14:02:57.7257664Z 15:02:57.725 | Pass "" (vp) -2026-03-27T14:02:57.7263715Z 15:02:57.725 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7274980Z 15:02:57.726 | Full variant space: 1 -2026-03-27T14:02:57.7280908Z 15:02:57.727 | After settings filtering: 1 -2026-03-27T14:02:57.7287488Z 15:02:57.728 | After built-in stripping: 1 -2026-03-27T14:02:57.7293545Z 15:02:57.728 | After scriptable stripping: 1 -2026-03-27T14:02:57.7299453Z 15:02:57.729 | Processed in 0.00 seconds -2026-03-27T14:02:57.7305298Z 15:02:57.730 | Pass "" (fp) -2026-03-27T14:02:57.7311136Z 15:02:57.730 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7316668Z 15:02:57.731 | Full variant space: 1 -2026-03-27T14:02:57.7322502Z 15:02:57.731 | After settings filtering: 1 -2026-03-27T14:02:57.7329248Z 15:02:57.732 | After built-in stripping: 1 -2026-03-27T14:02:57.7334090Z 15:02:57.733 | After scriptable stripping: 1 -2026-03-27T14:02:57.7339750Z 15:02:57.733 | Processed in 0.00 seconds -2026-03-27T14:02:57.7345215Z 15:02:57.734 | Pass "" (vp) -2026-03-27T14:02:57.7350465Z 15:02:57.734 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7356150Z 15:02:57.735 | Full variant space: 1 -2026-03-27T14:02:57.7360826Z 15:02:57.735 | After settings filtering: 1 -2026-03-27T14:02:57.7377296Z 15:02:57.736 | After built-in stripping: 1 -2026-03-27T14:02:57.7385130Z 15:02:57.738 | After scriptable stripping: 1 -2026-03-27T14:02:57.7395301Z 15:02:57.738 | Processed in 0.00 seconds -2026-03-27T14:02:57.7400347Z 15:02:57.739 | Pass "" (fp) -2026-03-27T14:02:57.7405687Z 15:02:57.740 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7411051Z 15:02:57.740 | Full variant space: 1 -2026-03-27T14:02:57.7416927Z 15:02:57.741 | After settings filtering: 1 -2026-03-27T14:02:57.7422274Z 15:02:57.741 | After built-in stripping: 1 -2026-03-27T14:02:57.7427276Z 15:02:57.742 | After scriptable stripping: 1 -2026-03-27T14:02:57.7432310Z 15:02:57.742 | Processed in 0.00 seconds -2026-03-27T14:02:57.7437527Z 15:02:57.743 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7442570Z 15:02:57.743 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7449192Z 15:02:57.744 | Pass (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7453843Z 15:02:57.745 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7460586Z 15:02:57.745 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7465149Z 15:02:57.746 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7471905Z 15:02:57.746 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7477046Z 15:02:57.747 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7483381Z 15:02:57.747 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.15s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7489649Z 15:02:57.748 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7496499Z 15:02:57.749 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7501405Z 15:02:57.749 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7507236Z 15:02:57.750 | Pass (vp, gamecore_scarlett) finished in 0.19 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.19s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7511549Z 15:02:57.750 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7519292Z 15:02:57.751 | Pass (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7524150Z 15:02:57.752 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7538528Z 15:02:57.753 | Pass (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7543631Z 15:02:57.753 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7549390Z 15:02:57.754 | Pass (fp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7554249Z 15:02:57.755 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7559077Z 15:02:57.755 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7566708Z 15:02:57.756 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7573504Z 15:02:57.756 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7581350Z 15:02:57.757 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7588508Z 15:02:57.758 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7593769Z 15:02:57.758 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7599961Z 15:02:57.759 | Pass (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7605416Z 15:02:57.760 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7612421Z 15:02:57.760 | Pass (vp, gamecore_scarlett) finished in 0.13 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.13s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7617013Z 15:02:57.761 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7623335Z 15:02:57.761 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7628411Z 15:02:57.762 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7634717Z 15:02:57.763 | Pass (vp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.16s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7639588Z 15:02:57.763 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7645505Z 15:02:57.764 | Pass (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7651462Z 15:02:57.764 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7657230Z 15:02:57.765 | Pass (vp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.14s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7662264Z 15:02:57.765 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7673841Z 15:02:57.766 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7678734Z 15:02:57.767 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7685599Z 15:02:57.768 | Serialized binary data for shader Hidden/Internal-ODSWorldTexture in 0.00s -2026-03-27T14:02:57.7695389Z 15:02:57.769 | gamecore_scarlett (total internal programs: 20, unique: 15) -2026-03-27T14:02:57.7700858Z 15:02:57.769 | Compiling shader "Hidden/Internal-CubemapToEquirect" -2026-03-27T14:02:57.7706986Z 15:02:57.770 | Pass "" (vp) -2026-03-27T14:02:57.7713496Z 15:02:57.770 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7720356Z 15:02:57.771 | Full variant space: 1 -2026-03-27T14:02:57.7727364Z 15:02:57.772 | After settings filtering: 1 -2026-03-27T14:02:57.7734564Z 15:02:57.772 | After built-in stripping: 1 -2026-03-27T14:02:57.7741752Z 15:02:57.773 | After scriptable stripping: 1 -2026-03-27T14:02:57.7747427Z 15:02:57.774 | Processed in 0.00 seconds -2026-03-27T14:02:57.7753227Z 15:02:57.774 | Pass "" (fp) -2026-03-27T14:02:57.7758746Z 15:02:57.775 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7765066Z 15:02:57.776 | Full variant space: 1 -2026-03-27T14:02:57.7771419Z 15:02:57.776 | After settings filtering: 1 -2026-03-27T14:02:57.7777195Z 15:02:57.777 | After built-in stripping: 1 -2026-03-27T14:02:57.7782952Z 15:02:57.777 | After scriptable stripping: 1 -2026-03-27T14:02:57.7788790Z 15:02:57.778 | Processed in 0.00 seconds -2026-03-27T14:02:57.7794758Z 15:02:57.779 | Pass (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7800232Z 15:02:57.779 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7806775Z 15:02:57.780 | Pass (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7812802Z 15:02:57.780 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7818415Z 15:02:57.781 | Compiling shader "Hidden/Internal-CubemapToEquirect" -2026-03-27T14:02:57.7823919Z 15:02:57.782 | Pass "" (vp) -2026-03-27T14:02:57.7829452Z 15:02:57.782 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7835299Z 15:02:57.783 | Full variant space: 1 -2026-03-27T14:02:57.7844192Z 15:02:57.783 | After settings filtering: 1 -2026-03-27T14:02:57.7852245Z 15:02:57.784 | After built-in stripping: 1 -2026-03-27T14:02:57.7857834Z 15:02:57.785 | After scriptable stripping: 1 -2026-03-27T14:02:57.7863778Z 15:02:57.785 | Processed in 0.00 seconds -2026-03-27T14:02:57.7869944Z 15:02:57.786 | Pass "" (fp) -2026-03-27T14:02:57.7875777Z 15:02:57.787 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7882872Z 15:02:57.787 | Full variant space: 1 -2026-03-27T14:02:57.7889728Z 15:02:57.788 | After settings filtering: 1 -2026-03-27T14:02:57.7895980Z 15:02:57.789 | After built-in stripping: 1 -2026-03-27T14:02:57.7901561Z 15:02:57.789 | After scriptable stripping: 1 -2026-03-27T14:02:57.7906497Z 15:02:57.790 | Processed in 0.00 seconds -2026-03-27T14:02:57.7912513Z 15:02:57.790 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7919028Z 15:02:57.791 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7925630Z 15:02:57.792 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.7932923Z 15:02:57.792 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.7938246Z 15:02:57.793 | Serialized binary data for shader Hidden/Internal-CubemapToEquirect in 0.00s -2026-03-27T14:02:57.7944212Z 15:02:57.794 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:57.7949557Z 15:02:57.794 | Compiling shader "Hidden/VR/BlitFromTex2DToTexArraySlice" -2026-03-27T14:02:57.7954630Z 15:02:57.795 | Pass "" (vp) -2026-03-27T14:02:57.7959961Z 15:02:57.795 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.7964925Z 15:02:57.796 | Full variant space: 1 -2026-03-27T14:02:57.7971623Z 15:02:57.796 | After settings filtering: 1 -2026-03-27T14:02:57.7976750Z 15:02:57.797 | After built-in stripping: 1 -2026-03-27T14:02:57.7982695Z 15:02:57.797 | After scriptable stripping: 1 -2026-03-27T14:02:57.7988093Z 15:02:57.798 | Processed in 0.00 seconds -2026-03-27T14:02:57.7993826Z 15:02:57.798 | Pass "" (fp) -2026-03-27T14:02:57.8003063Z 15:02:57.799 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.8008981Z 15:02:57.800 | Full variant space: 1 -2026-03-27T14:02:57.8014222Z 15:02:57.801 | After settings filtering: 1 -2026-03-27T14:02:57.8019681Z 15:02:57.801 | After built-in stripping: 1 -2026-03-27T14:02:57.8025055Z 15:02:57.802 | After scriptable stripping: 1 -2026-03-27T14:02:57.8030261Z 15:02:57.802 | Processed in 0.00 seconds -2026-03-27T14:02:57.8035323Z 15:02:57.803 | Pass "" (vp) -2026-03-27T14:02:57.8040544Z 15:02:57.803 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.8045537Z 15:02:57.804 | Full variant space: 1 -2026-03-27T14:02:57.8051860Z 15:02:57.804 | After settings filtering: 1 -2026-03-27T14:02:57.8057143Z 15:02:57.805 | After built-in stripping: 1 -2026-03-27T14:02:57.8067452Z 15:02:57.805 | After scriptable stripping: 1 -2026-03-27T14:02:57.8072773Z 15:02:57.806 | Processed in 0.00 seconds -2026-03-27T14:02:57.8078175Z 15:02:57.807 | Pass "" (fp) -2026-03-27T14:02:57.8083389Z 15:02:57.807 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.8089406Z 15:02:57.808 | Full variant space: 1 -2026-03-27T14:02:57.8094549Z 15:02:57.809 | After settings filtering: 1 -2026-03-27T14:02:57.8099672Z 15:02:57.809 | After built-in stripping: 1 -2026-03-27T14:02:57.8104714Z 15:02:57.810 | After scriptable stripping: 1 -2026-03-27T14:02:57.8110171Z 15:02:57.810 | Processed in 0.00 seconds -2026-03-27T14:02:57.8115260Z 15:02:57.811 | Pass "" (gp) -2026-03-27T14:02:57.8120568Z 15:02:57.811 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.8125786Z 15:02:57.812 | Full variant space: 1 -2026-03-27T14:02:57.8131852Z 15:02:57.812 | After settings filtering: 1 -2026-03-27T14:02:57.8137606Z 15:02:57.813 | After built-in stripping: 1 -2026-03-27T14:02:57.8143122Z 15:02:57.813 | After scriptable stripping: 1 -2026-03-27T14:02:57.8148742Z 15:02:57.814 | Processed in 0.00 seconds -2026-03-27T14:02:57.8153490Z 15:02:57.814 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:57.8161803Z 15:02:57.815 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.8169157Z 15:02:57.816 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.8174511Z 15:02:57.817 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.8181175Z 15:02:57.817 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.8186501Z 15:02:57.818 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.8192500Z 15:02:57.818 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.8198417Z 15:02:57.819 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.8205457Z 15:02:57.820 | Pass (gp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:57.8211217Z 15:02:57.820 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:57.8217458Z 15:02:57.821 | Compiling shader "Hidden/VR/BlitFromTex2DToTexArraySlice" -2026-03-27T14:02:57.8222094Z 15:02:57.821 | Pass "" (vp) -2026-03-27T14:02:57.8227666Z 15:02:57.822 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.8233041Z 15:02:57.822 | Full variant space: 1 -2026-03-27T14:02:57.8238724Z 15:02:57.823 | After settings filtering: 1 -2026-03-27T14:02:57.8244165Z 15:02:57.824 | After built-in stripping: 1 -2026-03-27T14:02:57.8250185Z 15:02:57.824 | After scriptable stripping: 1 -2026-03-27T14:02:57.8255652Z 15:02:57.825 | Processed in 0.00 seconds -2026-03-27T14:02:57.8261312Z 15:02:57.825 | Pass "" (fp) -2026-03-27T14:02:57.8266775Z 15:02:57.826 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.8272615Z 15:02:57.826 | Full variant space: 1 -2026-03-27T14:02:57.8278901Z 15:02:57.827 | After settings filtering: 1 -2026-03-27T14:02:57.8284072Z 15:02:57.828 | After built-in stripping: 1 -2026-03-27T14:02:57.8289707Z 15:02:57.828 | After scriptable stripping: 1 -2026-03-27T14:02:57.8295066Z 15:02:57.829 | Processed in 0.00 seconds -2026-03-27T14:02:57.8300521Z 15:02:57.829 | Pass "" (vp) -2026-03-27T14:02:57.8305668Z 15:02:57.830 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.8310818Z 15:02:57.830 | Full variant space: 1 -2026-03-27T14:02:57.8319903Z 15:02:57.831 | After settings filtering: 1 -2026-03-27T14:02:57.8647312Z 15:02:57.832 | After built-in stripping: 1 -2026-03-27T14:02:57.8654283Z 15:02:57.865 | After scriptable stripping: 1 -2026-03-27T14:02:57.8667287Z 15:02:57.866 | Processed in 0.00 seconds -2026-03-27T14:02:57.8692312Z 15:02:57.867 | Pass "" (fp) -2026-03-27T14:02:57.8901233Z 15:02:57.872 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.9111414Z 15:02:57.900 | Full variant space: 1 -2026-03-27T14:02:57.9123306Z 15:02:57.911 | After settings filtering: 1 -2026-03-27T14:02:57.9136233Z 15:02:57.913 | After built-in stripping: 1 -2026-03-27T14:02:57.9144308Z 15:02:57.913 | After scriptable stripping: 1 -2026-03-27T14:02:57.9160932Z 15:02:57.914 | Processed in 0.00 seconds -2026-03-27T14:02:57.9386430Z 15:02:57.920 | Pass "" (gp) -2026-03-27T14:02:57.9583138Z 15:02:57.945 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:57.9857423Z 15:02:57.965 | Full variant space: 1 -2026-03-27T14:02:58.0063781Z 15:02:57.994 | After settings filtering: 1 -2026-03-27T14:02:58.0109016Z 15:02:58.007 | After built-in stripping: 1 -2026-03-27T14:02:58.0288819Z 15:02:58.015 | After scriptable stripping: 1 -2026-03-27T14:02:58.0469127Z 15:02:58.034 | Processed in 0.00 seconds -2026-03-27T14:02:58.0485554Z 15:02:58.047 | Pass (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.0495391Z 15:02:58.049 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.0537278Z 15:02:58.050 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:58.0649847Z 15:02:58.055 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.0864061Z 15:02:58.073 | Pass (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:58.0905737Z 15:02:58.089 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.0931239Z 15:02:58.091 | Pass (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:58.0943517Z 15:02:58.093 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.0953188Z 15:02:58.094 | Pass (gp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.06s CPU time), skipped 0 variants. -2026-03-27T14:02:58.0964681Z 15:02:58.096 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.0970422Z 15:02:58.096 | Serialized binary data for shader Hidden/VR/BlitFromTex2DToTexArraySlice in 0.00s -2026-03-27T14:02:58.0976264Z 15:02:58.097 | gamecore_scarlett (total internal programs: 5, unique: 4) -2026-03-27T14:02:58.0982085Z 15:02:58.097 | Compiling shader "Hidden/VideoComposite" -2026-03-27T14:02:58.0987490Z 15:02:58.098 | Pass "Default" (vp) -2026-03-27T14:02:58.0995205Z 15:02:58.099 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.1000451Z 15:02:58.099 | Full variant space: 1 -2026-03-27T14:02:58.1006506Z 15:02:58.100 | After settings filtering: 1 -2026-03-27T14:02:58.1011781Z 15:02:58.100 | After built-in stripping: 1 -2026-03-27T14:02:58.1017461Z 15:02:58.101 | After scriptable stripping: 1 -2026-03-27T14:02:58.1044158Z 15:02:58.101 | Processed in 0.00 seconds -2026-03-27T14:02:58.1356919Z 15:02:58.112 | Pass "Default" (fp) -2026-03-27T14:02:58.1585775Z 15:02:58.142 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.1986902Z 15:02:58.174 | Full variant space: 1 -2026-03-27T14:02:58.2126389Z 15:02:58.206 | After settings filtering: 1 -2026-03-27T14:02:58.2145477Z 15:02:58.213 | After built-in stripping: 1 -2026-03-27T14:02:58.2168693Z 15:02:58.215 | After scriptable stripping: 1 -2026-03-27T14:02:58.2408953Z 15:02:58.223 | Processed in 0.00 seconds -2026-03-27T14:02:58.2661431Z 15:02:58.246 | Pass Default (vp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:58.2705046Z 15:02:58.267 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.2882497Z 15:02:58.272 | Pass Default (fp, gamecore_scarlett) finished in 0.03 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:58.3091726Z 15:02:58.298 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.3365058Z 15:02:58.316 | Compiling shader "Hidden/VideoComposite" -2026-03-27T14:02:58.3686816Z 15:02:58.343 | Pass "Default" (vp) -2026-03-27T14:02:58.4071494Z 15:02:58.378 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.4405373Z 15:02:58.415 | Full variant space: 1 -2026-03-27T14:02:58.4686899Z 15:02:58.448 | After settings filtering: 1 -2026-03-27T14:02:58.4969139Z 15:02:58.478 | After built-in stripping: 1 -2026-03-27T14:02:58.5207979Z 15:02:58.504 | After scriptable stripping: 1 -2026-03-27T14:02:58.5466880Z 15:02:58.528 | Processed in 0.00 seconds -2026-03-27T14:02:58.5560285Z 15:02:58.551 | Pass "Default" (fp) -2026-03-27T14:02:58.5607410Z 15:02:58.557 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.5644731Z 15:02:58.561 | Full variant space: 1 -2026-03-27T14:02:58.5664779Z 15:02:58.565 | After settings filtering: 1 -2026-03-27T14:02:58.5698052Z 15:02:58.567 | After built-in stripping: 1 -2026-03-27T14:02:58.5715030Z 15:02:58.570 | After scriptable stripping: 1 -2026-03-27T14:02:58.5753928Z 15:02:58.572 | Processed in 0.00 seconds -2026-03-27T14:02:58.5761216Z 15:02:58.575 | Pass Default (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:58.5781918Z 15:02:58.576 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.5793968Z 15:02:58.578 | Pass Default (fp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:58.5803867Z 15:02:58.579 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.5818906Z 15:02:58.581 | Serialized binary data for shader Hidden/VideoComposite in 0.00s -2026-03-27T14:02:58.5825991Z 15:02:58.582 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:58.5833681Z 15:02:58.582 | Compiling shader "Hidden/VideoDecode" -2026-03-27T14:02:58.5839833Z 15:02:58.583 | Pass "YCbCr_To_RGB1" (vp) -2026-03-27T14:02:58.5848152Z 15:02:58.584 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.5857780Z 15:02:58.585 | Full variant space: 2 -2026-03-27T14:02:58.5865037Z 15:02:58.586 | After settings filtering: 2 -2026-03-27T14:02:58.5870737Z 15:02:58.586 | After built-in stripping: 2 -2026-03-27T14:02:58.5880022Z 15:02:58.587 | After scriptable stripping: 2 -2026-03-27T14:02:58.5886157Z 15:02:58.588 | Processed in 0.00 seconds -2026-03-27T14:02:58.5900079Z 15:02:58.589 | Pass "YCbCr_To_RGB1" (fp) -2026-03-27T14:02:58.5906691Z 15:02:58.590 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.5912501Z 15:02:58.590 | Full variant space: 2 -2026-03-27T14:02:58.5917993Z 15:02:58.591 | After settings filtering: 2 -2026-03-27T14:02:58.5924280Z 15:02:58.591 | After built-in stripping: 2 -2026-03-27T14:02:58.5931622Z 15:02:58.592 | After scriptable stripping: 2 -2026-03-27T14:02:58.5937318Z 15:02:58.593 | Processed in 0.00 seconds -2026-03-27T14:02:58.5949394Z 15:02:58.594 | Pass "YCbCrA_To_RGBAFull" (vp) -2026-03-27T14:02:58.5957588Z 15:02:58.595 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.5965645Z 15:02:58.596 | Full variant space: 2 -2026-03-27T14:02:58.5975523Z 15:02:58.597 | After settings filtering: 2 -2026-03-27T14:02:58.5990737Z 15:02:58.598 | After built-in stripping: 2 -2026-03-27T14:02:58.5997887Z 15:02:58.599 | After scriptable stripping: 2 -2026-03-27T14:02:58.6007364Z 15:02:58.600 | Processed in 0.00 seconds -2026-03-27T14:02:58.6016410Z 15:02:58.601 | Pass "YCbCrA_To_RGBAFull" (fp) -2026-03-27T14:02:58.6028554Z 15:02:58.602 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6035181Z 15:02:58.603 | Full variant space: 2 -2026-03-27T14:02:58.6044914Z 15:02:58.603 | After settings filtering: 2 -2026-03-27T14:02:58.6058796Z 15:02:58.605 | After built-in stripping: 2 -2026-03-27T14:02:58.6065471Z 15:02:58.606 | After scriptable stripping: 2 -2026-03-27T14:02:58.6070950Z 15:02:58.606 | Processed in 0.00 seconds -2026-03-27T14:02:58.6078432Z 15:02:58.607 | Pass "YCbCrA_To_RGBA" (vp) -2026-03-27T14:02:58.6087440Z 15:02:58.608 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6094150Z 15:02:58.608 | Full variant space: 2 -2026-03-27T14:02:58.6101985Z 15:02:58.609 | After settings filtering: 2 -2026-03-27T14:02:58.6109777Z 15:02:58.610 | After built-in stripping: 2 -2026-03-27T14:02:58.6115999Z 15:02:58.611 | After scriptable stripping: 2 -2026-03-27T14:02:58.6124018Z 15:02:58.611 | Processed in 0.00 seconds -2026-03-27T14:02:58.6131326Z 15:02:58.612 | Pass "YCbCrA_To_RGBA" (fp) -2026-03-27T14:02:58.6138791Z 15:02:58.613 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6147035Z 15:02:58.614 | Full variant space: 2 -2026-03-27T14:02:58.6153673Z 15:02:58.614 | After settings filtering: 2 -2026-03-27T14:02:58.6161447Z 15:02:58.615 | After built-in stripping: 2 -2026-03-27T14:02:58.6169764Z 15:02:58.616 | After scriptable stripping: 2 -2026-03-27T14:02:58.6176290Z 15:02:58.617 | Processed in 0.00 seconds -2026-03-27T14:02:58.6183437Z 15:02:58.617 | Pass "Flip_RGBA_To_RGBA" (vp) -2026-03-27T14:02:58.6189429Z 15:02:58.618 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6196484Z 15:02:58.619 | Full variant space: 2 -2026-03-27T14:02:58.6211742Z 15:02:58.620 | After settings filtering: 2 -2026-03-27T14:02:58.6219621Z 15:02:58.621 | After built-in stripping: 2 -2026-03-27T14:02:58.6224985Z 15:02:58.622 | After scriptable stripping: 2 -2026-03-27T14:02:58.6232355Z 15:02:58.622 | Processed in 0.00 seconds -2026-03-27T14:02:58.6242174Z 15:02:58.623 | Pass "Flip_RGBA_To_RGBA" (fp) -2026-03-27T14:02:58.6254770Z 15:02:58.625 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6261379Z 15:02:58.625 | Full variant space: 2 -2026-03-27T14:02:58.6269104Z 15:02:58.626 | After settings filtering: 2 -2026-03-27T14:02:58.6280476Z 15:02:58.627 | After built-in stripping: 2 -2026-03-27T14:02:58.6288445Z 15:02:58.628 | After scriptable stripping: 2 -2026-03-27T14:02:58.6293762Z 15:02:58.629 | Processed in 0.00 seconds -2026-03-27T14:02:58.6300369Z 15:02:58.629 | Pass "Flip_RGBASplit_To_RGBA" (vp) -2026-03-27T14:02:58.6307560Z 15:02:58.630 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6313889Z 15:02:58.631 | Full variant space: 2 -2026-03-27T14:02:58.6319580Z 15:02:58.631 | After settings filtering: 2 -2026-03-27T14:02:58.6329121Z 15:02:58.632 | After built-in stripping: 2 -2026-03-27T14:02:58.6336484Z 15:02:58.633 | After scriptable stripping: 2 -2026-03-27T14:02:58.6343904Z 15:02:58.633 | Processed in 0.00 seconds -2026-03-27T14:02:58.6350663Z 15:02:58.634 | Pass "Flip_RGBASplit_To_RGBA" (fp) -2026-03-27T14:02:58.6379931Z 15:02:58.635 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6399480Z 15:02:58.639 | Full variant space: 2 -2026-03-27T14:02:58.6405836Z 15:02:58.640 | After settings filtering: 2 -2026-03-27T14:02:58.6413241Z 15:02:58.640 | After built-in stripping: 2 -2026-03-27T14:02:58.6422160Z 15:02:58.641 | After scriptable stripping: 2 -2026-03-27T14:02:58.6427812Z 15:02:58.642 | Processed in 0.00 seconds -2026-03-27T14:02:58.6433309Z 15:02:58.642 | Pass "Flip_NV12_To_RGB1" (vp) -2026-03-27T14:02:58.6438836Z 15:02:58.643 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6444850Z 15:02:58.644 | Full variant space: 2 -2026-03-27T14:02:58.6451874Z 15:02:58.644 | After settings filtering: 2 -2026-03-27T14:02:58.6457254Z 15:02:58.645 | After built-in stripping: 2 -2026-03-27T14:02:58.6463257Z 15:02:58.645 | After scriptable stripping: 2 -2026-03-27T14:02:58.6470094Z 15:02:58.646 | Processed in 0.00 seconds -2026-03-27T14:02:58.6476351Z 15:02:58.647 | Pass "Flip_NV12_To_RGB1" (fp) -2026-03-27T14:02:58.6488266Z 15:02:58.647 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6494788Z 15:02:58.649 | Full variant space: 2 -2026-03-27T14:02:58.6500595Z 15:02:58.649 | After settings filtering: 2 -2026-03-27T14:02:58.6506221Z 15:02:58.650 | After built-in stripping: 2 -2026-03-27T14:02:58.6518966Z 15:02:58.651 | After scriptable stripping: 2 -2026-03-27T14:02:58.6528131Z 15:02:58.652 | Processed in 0.00 seconds -2026-03-27T14:02:58.6534320Z 15:02:58.653 | Pass "Flip_NV12_To_RGBA" (vp) -2026-03-27T14:02:58.6541556Z 15:02:58.653 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6547463Z 15:02:58.654 | Full variant space: 2 -2026-03-27T14:02:58.6553268Z 15:02:58.654 | After settings filtering: 2 -2026-03-27T14:02:58.6558830Z 15:02:58.655 | After built-in stripping: 2 -2026-03-27T14:02:58.6564709Z 15:02:58.656 | After scriptable stripping: 2 -2026-03-27T14:02:58.6571582Z 15:02:58.656 | Processed in 0.00 seconds -2026-03-27T14:02:58.6576888Z 15:02:58.657 | Pass "Flip_NV12_To_RGBA" (fp) -2026-03-27T14:02:58.6582535Z 15:02:58.657 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6588311Z 15:02:58.658 | Full variant space: 2 -2026-03-27T14:02:58.6593733Z 15:02:58.659 | After settings filtering: 2 -2026-03-27T14:02:58.6599183Z 15:02:58.659 | After built-in stripping: 2 -2026-03-27T14:02:58.6605063Z 15:02:58.660 | After scriptable stripping: 2 -2026-03-27T14:02:58.6611201Z 15:02:58.660 | Processed in 0.00 seconds -2026-03-27T14:02:58.6617509Z 15:02:58.661 | Pass "Flip_P010_To_RGB1" (vp) -2026-03-27T14:02:58.6622259Z 15:02:58.661 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6628124Z 15:02:58.662 | Full variant space: 1 -2026-03-27T14:02:58.6633411Z 15:02:58.662 | After settings filtering: 1 -2026-03-27T14:02:58.6639361Z 15:02:58.663 | After built-in stripping: 1 -2026-03-27T14:02:58.6645408Z 15:02:58.664 | After scriptable stripping: 1 -2026-03-27T14:02:58.6652179Z 15:02:58.664 | Processed in 0.00 seconds -2026-03-27T14:02:58.6657505Z 15:02:58.665 | Pass "Flip_P010_To_RGB1" (fp) -2026-03-27T14:02:58.6663612Z 15:02:58.665 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6674505Z 15:02:58.666 | Full variant space: 1 -2026-03-27T14:02:58.6684199Z 15:02:58.668 | After settings filtering: 1 -2026-03-27T14:02:58.6691843Z 15:02:58.668 | After built-in stripping: 1 -2026-03-27T14:02:58.6698138Z 15:02:58.669 | After scriptable stripping: 1 -2026-03-27T14:02:58.6703614Z 15:02:58.669 | Processed in 0.00 seconds -2026-03-27T14:02:58.6709790Z 15:02:58.670 | Pass YCbCr_To_RGB1 (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6714793Z 15:02:58.671 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6721519Z 15:02:58.671 | Pass YCbCr_To_RGB1 (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6726749Z 15:02:58.672 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6733208Z 15:02:58.672 | Pass YCbCrA_To_RGBAFull (vp, gamecore_scarlett) finished in 0.08 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6738557Z 15:02:58.673 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6745292Z 15:02:58.674 | Pass YCbCrA_To_RGBAFull (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6750635Z 15:02:58.674 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6756889Z 15:02:58.675 | Pass YCbCrA_To_RGBA (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6762042Z 15:02:58.675 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6768701Z 15:02:58.676 | Pass YCbCrA_To_RGBA (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6773756Z 15:02:58.676 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6780450Z 15:02:58.677 | Pass Flip_RGBA_To_RGBA (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6784502Z 15:02:58.678 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6791258Z 15:02:58.678 | Pass Flip_RGBA_To_RGBA (fp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6796993Z 15:02:58.679 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6804337Z 15:02:58.679 | Pass Flip_RGBASplit_To_RGBA (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6810860Z 15:02:58.680 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6816374Z 15:02:58.681 | Pass Flip_RGBASplit_To_RGBA (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6826494Z 15:02:58.681 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6836665Z 15:02:58.683 | Pass Flip_NV12_To_RGB1 (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6844916Z 15:02:58.684 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6853663Z 15:02:58.684 | Pass Flip_NV12_To_RGB1 (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6859539Z 15:02:58.685 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6867510Z 15:02:58.686 | Pass Flip_NV12_To_RGBA (vp, gamecore_scarlett) finished in 0.06 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6874708Z 15:02:58.687 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6880756Z 15:02:58.687 | Pass Flip_NV12_To_RGBA (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.08s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6886206Z 15:02:58.688 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6892457Z 15:02:58.688 | Pass Flip_P010_To_RGB1 (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6903690Z 15:02:58.689 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6910087Z 15:02:58.690 | Pass Flip_P010_To_RGB1 (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:58.6915503Z 15:02:58.691 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.6921568Z 15:02:58.691 | Compiling shader "Hidden/VideoDecode" -2026-03-27T14:02:58.6927580Z 15:02:58.692 | Pass "YCbCr_To_RGB1" (vp) -2026-03-27T14:02:58.6932543Z 15:02:58.692 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6938376Z 15:02:58.693 | Full variant space: 2 -2026-03-27T14:02:58.6944885Z 15:02:58.694 | After settings filtering: 2 -2026-03-27T14:02:58.6950965Z 15:02:58.694 | After built-in stripping: 2 -2026-03-27T14:02:58.6956448Z 15:02:58.695 | After scriptable stripping: 2 -2026-03-27T14:02:58.6961842Z 15:02:58.695 | Processed in 0.00 seconds -2026-03-27T14:02:58.6967922Z 15:02:58.696 | Pass "YCbCr_To_RGB1" (fp) -2026-03-27T14:02:58.6973783Z 15:02:58.696 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.6983274Z 15:02:58.697 | Full variant space: 2 -2026-03-27T14:02:58.6989008Z 15:02:58.698 | After settings filtering: 2 -2026-03-27T14:02:58.6994028Z 15:02:58.699 | After built-in stripping: 2 -2026-03-27T14:02:58.6999098Z 15:02:58.699 | After scriptable stripping: 2 -2026-03-27T14:02:58.7003992Z 15:02:58.700 | Processed in 0.00 seconds -2026-03-27T14:02:58.7008934Z 15:02:58.700 | Pass "YCbCrA_To_RGBAFull" (vp) -2026-03-27T14:02:58.7013943Z 15:02:58.701 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7019144Z 15:02:58.701 | Full variant space: 2 -2026-03-27T14:02:58.7024587Z 15:02:58.702 | After settings filtering: 2 -2026-03-27T14:02:58.7030225Z 15:02:58.702 | After built-in stripping: 2 -2026-03-27T14:02:58.7036336Z 15:02:58.703 | After scriptable stripping: 2 -2026-03-27T14:02:58.7040518Z 15:02:58.703 | Processed in 0.00 seconds -2026-03-27T14:02:58.7045445Z 15:02:58.704 | Pass "YCbCrA_To_RGBAFull" (fp) -2026-03-27T14:02:58.7051507Z 15:02:58.704 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7056670Z 15:02:58.705 | Full variant space: 2 -2026-03-27T14:02:58.7061298Z 15:02:58.705 | After settings filtering: 2 -2026-03-27T14:02:58.7067631Z 15:02:58.706 | After built-in stripping: 2 -2026-03-27T14:02:58.7073299Z 15:02:58.706 | After scriptable stripping: 2 -2026-03-27T14:02:58.7078980Z 15:02:58.707 | Processed in 0.00 seconds -2026-03-27T14:02:58.7084503Z 15:02:58.708 | Pass "YCbCrA_To_RGBA" (vp) -2026-03-27T14:02:58.7091161Z 15:02:58.708 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7096601Z 15:02:58.709 | Full variant space: 2 -2026-03-27T14:02:58.7101813Z 15:02:58.709 | After settings filtering: 2 -2026-03-27T14:02:58.7107155Z 15:02:58.710 | After built-in stripping: 2 -2026-03-27T14:02:58.7112091Z 15:02:58.710 | After scriptable stripping: 2 -2026-03-27T14:02:58.7117227Z 15:02:58.711 | Processed in 0.00 seconds -2026-03-27T14:02:58.7122630Z 15:02:58.711 | Pass "YCbCrA_To_RGBA" (fp) -2026-03-27T14:02:58.7131590Z 15:02:58.712 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7137023Z 15:02:58.713 | Full variant space: 2 -2026-03-27T14:02:58.7142904Z 15:02:58.713 | After settings filtering: 2 -2026-03-27T14:02:58.7148451Z 15:02:58.714 | After built-in stripping: 2 -2026-03-27T14:02:58.7154371Z 15:02:58.715 | After scriptable stripping: 2 -2026-03-27T14:02:58.7159430Z 15:02:58.715 | Processed in 0.00 seconds -2026-03-27T14:02:58.7165124Z 15:02:58.716 | Pass "Flip_RGBA_To_RGBA" (vp) -2026-03-27T14:02:58.7171880Z 15:02:58.716 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7177696Z 15:02:58.717 | Full variant space: 2 -2026-03-27T14:02:58.7183187Z 15:02:58.718 | After settings filtering: 2 -2026-03-27T14:02:58.7189857Z 15:02:58.718 | After built-in stripping: 2 -2026-03-27T14:02:58.7195402Z 15:02:58.719 | After scriptable stripping: 2 -2026-03-27T14:02:58.7200874Z 15:02:58.719 | Processed in 0.00 seconds -2026-03-27T14:02:58.7206715Z 15:02:58.720 | Pass "Flip_RGBA_To_RGBA" (fp) -2026-03-27T14:02:58.7212879Z 15:02:58.720 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7218769Z 15:02:58.721 | Full variant space: 2 -2026-03-27T14:02:58.7224210Z 15:02:58.722 | After settings filtering: 2 -2026-03-27T14:02:58.7229602Z 15:02:58.722 | After built-in stripping: 2 -2026-03-27T14:02:58.7234819Z 15:02:58.723 | After scriptable stripping: 2 -2026-03-27T14:02:58.7240217Z 15:02:58.723 | Processed in 0.00 seconds -2026-03-27T14:02:58.7245315Z 15:02:58.724 | Pass "Flip_RGBASplit_To_RGBA" (vp) -2026-03-27T14:02:58.7251074Z 15:02:58.724 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7256082Z 15:02:58.725 | Full variant space: 2 -2026-03-27T14:02:58.7261255Z 15:02:58.725 | After settings filtering: 2 -2026-03-27T14:02:58.7266451Z 15:02:58.726 | After built-in stripping: 2 -2026-03-27T14:02:58.7271433Z 15:02:58.726 | After scriptable stripping: 2 -2026-03-27T14:02:58.7276797Z 15:02:58.727 | Processed in 0.00 seconds -2026-03-27T14:02:58.7285127Z 15:02:58.727 | Pass "Flip_RGBASplit_To_RGBA" (fp) -2026-03-27T14:02:58.7291383Z 15:02:58.728 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7296770Z 15:02:58.729 | Full variant space: 2 -2026-03-27T14:02:58.7302113Z 15:02:58.729 | After settings filtering: 2 -2026-03-27T14:02:58.7307151Z 15:02:58.730 | After built-in stripping: 2 -2026-03-27T14:02:58.7312738Z 15:02:58.730 | After scriptable stripping: 2 -2026-03-27T14:02:58.7318789Z 15:02:58.731 | Processed in 0.00 seconds -2026-03-27T14:02:58.7325499Z 15:02:58.732 | Pass "Flip_NV12_To_RGB1" (vp) -2026-03-27T14:02:58.7330691Z 15:02:58.732 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7336397Z 15:02:58.733 | Full variant space: 2 -2026-03-27T14:02:58.7341998Z 15:02:58.733 | After settings filtering: 2 -2026-03-27T14:02:58.7348250Z 15:02:58.734 | After built-in stripping: 2 -2026-03-27T14:02:58.7353832Z 15:02:58.734 | After scriptable stripping: 2 -2026-03-27T14:02:58.7359264Z 15:02:58.735 | Processed in 0.00 seconds -2026-03-27T14:02:58.7364924Z 15:02:58.736 | Pass "Flip_NV12_To_RGB1" (fp) -2026-03-27T14:02:58.7370522Z 15:02:58.736 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7376228Z 15:02:58.737 | Full variant space: 2 -2026-03-27T14:02:58.7385632Z 15:02:58.737 | After settings filtering: 2 -2026-03-27T14:02:58.7390750Z 15:02:58.738 | After built-in stripping: 2 -2026-03-27T14:02:58.7396294Z 15:02:58.739 | After scriptable stripping: 2 -2026-03-27T14:02:58.7401535Z 15:02:58.739 | Processed in 0.00 seconds -2026-03-27T14:02:58.7407357Z 15:02:58.740 | Pass "Flip_NV12_To_RGBA" (vp) -2026-03-27T14:02:58.7412495Z 15:02:58.740 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7417636Z 15:02:58.741 | Full variant space: 2 -2026-03-27T14:02:58.7422643Z 15:02:58.741 | After settings filtering: 2 -2026-03-27T14:02:58.7428361Z 15:02:58.742 | After built-in stripping: 2 -2026-03-27T14:02:58.7434620Z 15:02:58.742 | After scriptable stripping: 2 -2026-03-27T14:02:58.7452231Z 15:02:58.744 | Processed in 0.00 seconds -2026-03-27T14:02:58.7458053Z 15:02:58.745 | Pass "Flip_NV12_To_RGBA" (fp) -2026-03-27T14:02:58.7464114Z 15:02:58.745 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7469970Z 15:02:58.746 | Full variant space: 2 -2026-03-27T14:02:58.7474959Z 15:02:58.747 | After settings filtering: 2 -2026-03-27T14:02:58.7481748Z 15:02:58.747 | After built-in stripping: 2 -2026-03-27T14:02:58.7488096Z 15:02:58.748 | After scriptable stripping: 2 -2026-03-27T14:02:58.7493703Z 15:02:58.748 | Processed in 0.00 seconds -2026-03-27T14:02:58.7499020Z 15:02:58.749 | Pass "Flip_P010_To_RGB1" (vp) -2026-03-27T14:02:58.7505117Z 15:02:58.750 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7510469Z 15:02:58.750 | Full variant space: 1 -2026-03-27T14:02:58.7515639Z 15:02:58.751 | After settings filtering: 1 -2026-03-27T14:02:58.7520983Z 15:02:58.751 | After built-in stripping: 1 -2026-03-27T14:02:58.7527677Z 15:02:58.752 | After scriptable stripping: 1 -2026-03-27T14:02:58.7534017Z 15:02:58.752 | Processed in 0.00 seconds -2026-03-27T14:02:58.7539705Z 15:02:58.753 | Pass "Flip_P010_To_RGB1" (fp) -2026-03-27T14:02:58.7544980Z 15:02:58.754 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7550377Z 15:02:58.754 | Full variant space: 1 -2026-03-27T14:02:58.7555683Z 15:02:58.755 | After settings filtering: 1 -2026-03-27T14:02:58.7561365Z 15:02:58.755 | After built-in stripping: 1 -2026-03-27T14:02:58.7567002Z 15:02:58.756 | After scriptable stripping: 1 -2026-03-27T14:02:58.7572206Z 15:02:58.756 | Processed in 0.00 seconds -2026-03-27T14:02:58.7580421Z 15:02:58.757 | Pass YCbCr_To_RGB1 (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.21s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7587199Z 15:02:58.758 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7599334Z 15:02:58.759 | Pass YCbCr_To_RGB1 (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7604720Z 15:02:58.760 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7611857Z 15:02:58.760 | Pass YCbCrA_To_RGBAFull (vp, gamecore_scarlett) finished in 0.14 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.21s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7616066Z 15:02:58.761 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7622220Z 15:02:58.761 | Pass YCbCrA_To_RGBAFull (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7627217Z 15:02:58.762 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7632908Z 15:02:58.762 | Pass YCbCrA_To_RGBA (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.19s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7638064Z 15:02:58.763 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7644313Z 15:02:58.763 | Pass YCbCrA_To_RGBA (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7650751Z 15:02:58.764 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7656735Z 15:02:58.765 | Pass Flip_RGBA_To_RGBA (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.19s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7662085Z 15:02:58.765 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7668240Z 15:02:58.766 | Pass Flip_RGBA_To_RGBA (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7673389Z 15:02:58.766 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7678914Z 15:02:58.767 | Pass Flip_RGBASplit_To_RGBA (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.21s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7683762Z 15:02:58.768 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7690928Z 15:02:58.768 | Pass Flip_RGBASplit_To_RGBA (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.14s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7696041Z 15:02:58.769 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7701938Z 15:02:58.769 | Pass Flip_NV12_To_RGB1 (vp, gamecore_scarlett) finished in 0.15 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.22s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7707379Z 15:02:58.770 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7713511Z 15:02:58.770 | Pass Flip_NV12_To_RGB1 (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.12s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7718061Z 15:02:58.771 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7724567Z 15:02:58.771 | Pass Flip_NV12_To_RGBA (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.19s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7730041Z 15:02:58.772 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7736048Z 15:02:58.773 | Pass Flip_NV12_To_RGBA (fp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 2 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7750830Z 15:02:58.773 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7760044Z 15:02:58.775 | Pass Flip_P010_To_RGB1 (vp, gamecore_scarlett) finished in 0.09 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.09s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7766834Z 15:02:58.776 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7774314Z 15:02:58.777 | Pass Flip_P010_To_RGB1 (fp, gamecore_scarlett) finished in 0.07 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7781947Z 15:02:58.777 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7797289Z 15:02:58.779 | Serialized binary data for shader Hidden/VideoDecode in 0.00s -2026-03-27T14:02:58.7803059Z 15:02:58.779 | gamecore_scarlett (total internal programs: 30, unique: 19) -2026-03-27T14:02:58.7809290Z 15:02:58.780 | Compiling shader "Hidden/TextCore/Distance Field SSD" -2026-03-27T14:02:58.7814656Z 15:02:58.781 | Pass "" (vp) -2026-03-27T14:02:58.7820020Z 15:02:58.781 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7825477Z 15:02:58.782 | Full variant space: 1 -2026-03-27T14:02:58.7830957Z 15:02:58.782 | After settings filtering: 1 -2026-03-27T14:02:58.7836316Z 15:02:58.783 | After built-in stripping: 1 -2026-03-27T14:02:58.7842137Z 15:02:58.783 | After scriptable stripping: 1 -2026-03-27T14:02:58.7848168Z 15:02:58.784 | Processed in 0.00 seconds -2026-03-27T14:02:58.7854096Z 15:02:58.785 | Pass "" (fp) -2026-03-27T14:02:58.7860148Z 15:02:58.785 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7866621Z 15:02:58.786 | Full variant space: 1 -2026-03-27T14:02:58.7872643Z 15:02:58.786 | After settings filtering: 1 -2026-03-27T14:02:58.7878744Z 15:02:58.787 | After built-in stripping: 1 -2026-03-27T14:02:58.7884710Z 15:02:58.788 | After scriptable stripping: 1 -2026-03-27T14:02:58.7889674Z 15:02:58.788 | Processed in 0.00 seconds -2026-03-27T14:02:58.7899243Z 15:02:58.789 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7906588Z 15:02:58.790 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7912364Z 15:02:58.790 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:58.7917240Z 15:02:58.791 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.7922902Z 15:02:58.791 | Compiling shader "Hidden/TextCore/Distance Field SSD" -2026-03-27T14:02:58.7928453Z 15:02:58.792 | Pass "" (vp) -2026-03-27T14:02:58.7933976Z 15:02:58.793 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7939149Z 15:02:58.793 | Full variant space: 1 -2026-03-27T14:02:58.7944242Z 15:02:58.794 | After settings filtering: 1 -2026-03-27T14:02:58.7949473Z 15:02:58.794 | After built-in stripping: 1 -2026-03-27T14:02:58.7954611Z 15:02:58.795 | After scriptable stripping: 1 -2026-03-27T14:02:58.7959903Z 15:02:58.795 | Processed in 0.00 seconds -2026-03-27T14:02:58.7965068Z 15:02:58.796 | Pass "" (fp) -2026-03-27T14:02:58.7971166Z 15:02:58.796 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.7977068Z 15:02:58.797 | Full variant space: 1 -2026-03-27T14:02:58.7982841Z 15:02:58.797 | After settings filtering: 1 -2026-03-27T14:02:58.7988065Z 15:02:58.798 | After built-in stripping: 1 -2026-03-27T14:02:58.7993449Z 15:02:58.798 | After scriptable stripping: 1 -2026-03-27T14:02:58.7999169Z 15:02:58.799 | Processed in 0.00 seconds -2026-03-27T14:02:58.8006683Z 15:02:58.800 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:58.8011937Z 15:02:58.800 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.8019264Z 15:02:58.801 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:58.8025283Z 15:02:58.802 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.8031457Z 15:02:58.802 | Serialized binary data for shader Hidden/TextCore/Distance Field SSD in 0.00s -2026-03-27T14:02:58.8037112Z 15:02:58.803 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:58.8042582Z 15:02:58.803 | Compiling shader "Hidden/Physics2D/SDF_CircleGeometry" -2026-03-27T14:02:58.8048804Z 15:02:58.804 | Pass "" (vp) -2026-03-27T14:02:58.8056226Z 15:02:58.805 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.8062017Z 15:02:58.805 | Full variant space: 2 -2026-03-27T14:02:58.8069168Z 15:02:58.806 | After settings filtering: 2 -2026-03-27T14:02:58.8075188Z 15:02:58.807 | After built-in stripping: 1 -2026-03-27T14:02:58.8083477Z 15:02:58.808 | After scriptable stripping: 1 -2026-03-27T14:02:58.8091587Z 15:02:58.808 | Processed in 0.00 seconds -2026-03-27T14:02:58.8097091Z 15:02:58.809 | Pass "" (fp) -2026-03-27T14:02:58.8102366Z 15:02:58.809 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.8108178Z 15:02:58.810 | Full variant space: 2 -2026-03-27T14:02:58.8113878Z 15:02:58.810 | After settings filtering: 2 -2026-03-27T14:02:58.8120067Z 15:02:58.811 | After built-in stripping: 1 -2026-03-27T14:02:58.8126502Z 15:02:58.812 | After scriptable stripping: 1 -2026-03-27T14:02:58.8133877Z 15:02:58.812 | Processed in 0.00 seconds -2026-03-27T14:02:58.8140278Z 15:02:58.813 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:58.8145060Z 15:02:58.814 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.8151543Z 15:02:58.814 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:58.8156717Z 15:02:58.815 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:58.8162328Z 15:02:58.815 | Compiling shader "Hidden/Physics2D/SDF_CircleGeometry" -2026-03-27T14:02:58.8168130Z 15:02:58.816 | Pass "" (vp) -2026-03-27T14:02:58.8174046Z 15:02:58.816 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.8184319Z 15:02:58.817 | Full variant space: 2 -2026-03-27T14:02:58.8190152Z 15:02:58.818 | After settings filtering: 2 -2026-03-27T14:02:58.8195802Z 15:02:58.819 | After built-in stripping: 1 -2026-03-27T14:02:58.8201072Z 15:02:58.819 | After scriptable stripping: 1 -2026-03-27T14:02:58.8212109Z 15:02:58.820 | Processed in 0.00 seconds -2026-03-27T14:02:58.8218225Z 15:02:58.821 | Pass "" (fp) -2026-03-27T14:02:58.8224068Z 15:02:58.822 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:58.8229550Z 15:02:58.822 | Full variant space: 2 -2026-03-27T14:02:58.8235395Z 15:02:58.823 | After settings filtering: 2 -2026-03-27T14:02:58.8240659Z 15:02:58.823 | After built-in stripping: 1 -2026-03-27T14:02:58.8247499Z 15:02:58.824 | After scriptable stripping: 1 -2026-03-27T14:02:58.8253344Z 15:02:58.824 | Processed in 0.00 seconds -2026-03-27T14:02:59.2281742Z 15:02:59.227 | Pass (vp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.12s CPU time), skipped 0 variants. -2026-03-27T14:02:59.2287804Z 15:02:59.228 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.2295019Z 15:02:59.228 | Pass (fp, gamecore_scarlett) finished in 0.12 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:59.2301497Z 15:02:59.229 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.2307444Z 15:02:59.230 | Serialized binary data for shader Hidden/Physics2D/SDF_CircleGeometry in 0.00s -2026-03-27T14:02:59.2314001Z 15:02:59.230 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:59.2320500Z 15:02:59.231 | Compiling shader "Hidden/Physics2D/SDF_CapsuleGeometry" -2026-03-27T14:02:59.2325564Z 15:02:59.232 | Pass "" (vp) -2026-03-27T14:02:59.2331084Z 15:02:59.232 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.2336438Z 15:02:59.233 | Full variant space: 2 -2026-03-27T14:02:59.2341583Z 15:02:59.233 | After settings filtering: 2 -2026-03-27T14:02:59.2346709Z 15:02:59.234 | After built-in stripping: 1 -2026-03-27T14:02:59.2352343Z 15:02:59.234 | After scriptable stripping: 1 -2026-03-27T14:02:59.2358270Z 15:02:59.235 | Processed in 0.00 seconds -2026-03-27T14:02:59.2364253Z 15:02:59.235 | Pass "" (fp) -2026-03-27T14:02:59.2371856Z 15:02:59.236 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.2379847Z 15:02:59.237 | Full variant space: 2 -2026-03-27T14:02:59.2387718Z 15:02:59.238 | After settings filtering: 2 -2026-03-27T14:02:59.2393318Z 15:02:59.238 | After built-in stripping: 1 -2026-03-27T14:02:59.2398662Z 15:02:59.239 | After scriptable stripping: 1 -2026-03-27T14:02:59.2403786Z 15:02:59.240 | Processed in 0.00 seconds -2026-03-27T14:02:59.2409928Z 15:02:59.240 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:59.2415052Z 15:02:59.241 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.2421159Z 15:02:59.241 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:59.2425737Z 15:02:59.242 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.2434982Z 15:02:59.243 | Compiling shader "Hidden/Physics2D/SDF_CapsuleGeometry" -2026-03-27T14:02:59.2440547Z 15:02:59.243 | Pass "" (vp) -2026-03-27T14:02:59.2446754Z 15:02:59.244 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.2452620Z 15:02:59.244 | Full variant space: 2 -2026-03-27T14:02:59.2458761Z 15:02:59.245 | After settings filtering: 2 -2026-03-27T14:02:59.2465965Z 15:02:59.246 | After built-in stripping: 1 -2026-03-27T14:02:59.2471794Z 15:02:59.246 | After scriptable stripping: 1 -2026-03-27T14:02:59.2477904Z 15:02:59.247 | Processed in 0.00 seconds -2026-03-27T14:02:59.2484094Z 15:02:59.247 | Pass "" (fp) -2026-03-27T14:02:59.2490569Z 15:02:59.248 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.2497212Z 15:02:59.249 | Full variant space: 2 -2026-03-27T14:02:59.2502965Z 15:02:59.249 | After settings filtering: 2 -2026-03-27T14:02:59.2508975Z 15:02:59.250 | After built-in stripping: 1 -2026-03-27T14:02:59.2515067Z 15:02:59.251 | After scriptable stripping: 1 -2026-03-27T14:02:59.2521195Z 15:02:59.251 | Processed in 0.00 seconds -2026-03-27T14:02:59.2528220Z 15:02:59.252 | Pass (vp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.11s CPU time), skipped 0 variants. -2026-03-27T14:02:59.2533064Z 15:02:59.252 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.2538970Z 15:02:59.253 | Pass (fp, gamecore_scarlett) finished in 0.11 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:59.2543665Z 15:02:59.253 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.2549848Z 15:02:59.254 | Serialized binary data for shader Hidden/Physics2D/SDF_CapsuleGeometry in 0.00s -2026-03-27T14:02:59.2554308Z 15:02:59.255 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:59.2559413Z 15:02:59.255 | Compiling shader "Hidden/Physics2D/SDF_PolygonGeometry" -2026-03-27T14:02:59.2564542Z 15:02:59.256 | Pass "" (vp) -2026-03-27T14:02:59.2570779Z 15:02:59.256 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.2579677Z 15:02:59.257 | Full variant space: 2 -2026-03-27T14:02:59.2588122Z 15:02:59.258 | After settings filtering: 2 -2026-03-27T14:02:59.2593474Z 15:02:59.258 | After built-in stripping: 1 -2026-03-27T14:02:59.2602858Z 15:02:59.259 | After scriptable stripping: 1 -2026-03-27T14:02:59.2608642Z 15:02:59.260 | Processed in 0.00 seconds -2026-03-27T14:02:59.2613897Z 15:02:59.261 | Pass "" (fp) -2026-03-27T14:02:59.2619195Z 15:02:59.261 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.2624450Z 15:02:59.262 | Full variant space: 2 -2026-03-27T14:02:59.2629647Z 15:02:59.262 | After settings filtering: 2 -2026-03-27T14:02:59.2635043Z 15:02:59.263 | After built-in stripping: 1 -2026-03-27T14:02:59.2640320Z 15:02:59.263 | After scriptable stripping: 1 -2026-03-27T14:02:59.2645457Z 15:02:59.264 | Processed in 0.00 seconds -2026-03-27T14:02:59.2651946Z 15:02:59.264 | Pass (vp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.05s CPU time), skipped 0 variants. -2026-03-27T14:02:59.2656903Z 15:02:59.265 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.2662300Z 15:02:59.265 | Pass (fp, gamecore_scarlett) finished in 0.05 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:59.2667182Z 15:02:59.266 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.2672360Z 15:02:59.266 | Compiling shader "Hidden/Physics2D/SDF_PolygonGeometry" -2026-03-27T14:02:59.2677202Z 15:02:59.267 | Pass "" (vp) -2026-03-27T14:02:59.2682840Z 15:02:59.267 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.2688311Z 15:02:59.268 | Full variant space: 2 -2026-03-27T14:02:59.2693470Z 15:02:59.268 | After settings filtering: 2 -2026-03-27T14:02:59.2698323Z 15:02:59.269 | After built-in stripping: 1 -2026-03-27T14:02:59.2703338Z 15:02:59.269 | After scriptable stripping: 1 -2026-03-27T14:02:59.2708681Z 15:02:59.270 | Processed in 0.00 seconds -2026-03-27T14:02:59.2713944Z 15:02:59.271 | Pass "" (fp) -2026-03-27T14:02:59.2718938Z 15:02:59.271 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.2728128Z 15:02:59.272 | Full variant space: 2 -2026-03-27T14:02:59.2733851Z 15:02:59.272 | After settings filtering: 2 -2026-03-27T14:02:59.2738950Z 15:02:59.273 | After built-in stripping: 1 -2026-03-27T14:02:59.2744094Z 15:02:59.274 | After scriptable stripping: 1 -2026-03-27T14:02:59.2749577Z 15:02:59.274 | Processed in 0.00 seconds -2026-03-27T14:02:59.6954826Z 15:02:59.694 | Pass (vp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.16s CPU time), skipped 0 variants. -2026-03-27T14:02:59.6962821Z 15:02:59.695 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.6972716Z 15:02:59.696 | Pass (fp, gamecore_scarlett) finished in 0.16 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.07s CPU time), skipped 0 variants. -2026-03-27T14:02:59.6979416Z 15:02:59.697 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.6988428Z 15:02:59.698 | Serialized binary data for shader Hidden/Physics2D/SDF_PolygonGeometry in 0.00s -2026-03-27T14:02:59.6995879Z 15:02:59.699 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:59.7003362Z 15:02:59.699 | Compiling shader "Hidden/Physics2D/SDF_Line" -2026-03-27T14:02:59.7008118Z 15:02:59.700 | Pass "" (vp) -2026-03-27T14:02:59.7015919Z 15:02:59.700 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.7022853Z 15:02:59.701 | Full variant space: 2 -2026-03-27T14:02:59.7028494Z 15:02:59.702 | After settings filtering: 2 -2026-03-27T14:02:59.7034206Z 15:02:59.703 | After built-in stripping: 1 -2026-03-27T14:02:59.7039859Z 15:02:59.703 | After scriptable stripping: 1 -2026-03-27T14:02:59.7048645Z 15:02:59.704 | Processed in 0.00 seconds -2026-03-27T14:02:59.7056239Z 15:02:59.705 | Pass "" (fp) -2026-03-27T14:02:59.7063517Z 15:02:59.705 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.7070128Z 15:02:59.706 | Full variant space: 2 -2026-03-27T14:02:59.7076099Z 15:02:59.707 | After settings filtering: 2 -2026-03-27T14:02:59.7082730Z 15:02:59.707 | After built-in stripping: 1 -2026-03-27T14:02:59.7091316Z 15:02:59.708 | After scriptable stripping: 1 -2026-03-27T14:02:59.7100741Z 15:02:59.709 | Processed in 0.00 seconds -2026-03-27T14:02:59.7109298Z 15:02:59.710 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:59.7117405Z 15:02:59.711 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.7126790Z 15:02:59.712 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:59.7135008Z 15:02:59.712 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.7140063Z 15:02:59.713 | Compiling shader "Hidden/Physics2D/SDF_Line" -2026-03-27T14:02:59.7145588Z 15:02:59.714 | Pass "" (vp) -2026-03-27T14:02:59.7151163Z 15:02:59.714 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.7156388Z 15:02:59.715 | Full variant space: 2 -2026-03-27T14:02:59.7161616Z 15:02:59.715 | After settings filtering: 2 -2026-03-27T14:02:59.7167498Z 15:02:59.716 | After built-in stripping: 1 -2026-03-27T14:02:59.7172777Z 15:02:59.716 | After scriptable stripping: 1 -2026-03-27T14:02:59.7177846Z 15:02:59.717 | Processed in 0.00 seconds -2026-03-27T14:02:59.7182828Z 15:02:59.717 | Pass "" (fp) -2026-03-27T14:02:59.7188089Z 15:02:59.718 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.7193279Z 15:02:59.718 | Full variant space: 2 -2026-03-27T14:02:59.7210492Z 15:02:59.719 | After settings filtering: 2 -2026-03-27T14:02:59.7216262Z 15:02:59.721 | After built-in stripping: 1 -2026-03-27T14:02:59.7221544Z 15:02:59.721 | After scriptable stripping: 1 -2026-03-27T14:02:59.7232415Z 15:02:59.722 | Processed in 0.00 seconds -2026-03-27T14:02:59.7233458Z 15:02:59.722 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:59.7237669Z 15:02:59.723 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.7243346Z 15:02:59.723 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:59.7250386Z 15:02:59.724 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.7267707Z 15:02:59.725 | Serialized binary data for shader Hidden/Physics2D/SDF_Line in 0.00s -2026-03-27T14:02:59.7277140Z 15:02:59.726 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:02:59.7287057Z 15:02:59.727 | Compiling shader "Hidden/Physics2D/SDF_Point" -2026-03-27T14:02:59.7296241Z 15:02:59.728 | Pass "" (vp) -2026-03-27T14:02:59.7346158Z 15:02:59.731 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.7359460Z 15:02:59.735 | Full variant space: 2 -2026-03-27T14:02:59.7367418Z 15:02:59.736 | After settings filtering: 2 -2026-03-27T14:02:59.7374871Z 15:02:59.736 | After built-in stripping: 1 -2026-03-27T14:02:59.7380370Z 15:02:59.737 | After scriptable stripping: 1 -2026-03-27T14:02:59.7389299Z 15:02:59.738 | Processed in 0.00 seconds -2026-03-27T14:02:59.7398982Z 15:02:59.739 | Pass "" (fp) -2026-03-27T14:02:59.7411081Z 15:02:59.740 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.7418960Z 15:02:59.741 | Full variant space: 2 -2026-03-27T14:02:59.7426456Z 15:02:59.742 | After settings filtering: 2 -2026-03-27T14:02:59.7432846Z 15:02:59.742 | After built-in stripping: 1 -2026-03-27T14:02:59.7479877Z 15:02:59.747 | After scriptable stripping: 1 -2026-03-27T14:02:59.7486567Z 15:02:59.748 | Processed in 0.00 seconds -2026-03-27T14:02:59.7497184Z 15:02:59.748 | Pass (vp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:59.7506323Z 15:02:59.749 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.7513755Z 15:02:59.750 | Pass (fp, gamecore_scarlett) finished in 0.04 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.03s CPU time), skipped 0 variants. -2026-03-27T14:02:59.7519852Z 15:02:59.751 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.7529012Z 15:02:59.752 | Compiling shader "Hidden/Physics2D/SDF_Point" -2026-03-27T14:02:59.7539381Z 15:02:59.753 | Pass "" (vp) -2026-03-27T14:02:59.7552535Z 15:02:59.754 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.7560870Z 15:02:59.755 | Full variant space: 2 -2026-03-27T14:02:59.7567811Z 15:02:59.756 | After settings filtering: 2 -2026-03-27T14:02:59.7573543Z 15:02:59.756 | After built-in stripping: 1 -2026-03-27T14:02:59.7580921Z 15:02:59.757 | After scriptable stripping: 1 -2026-03-27T14:02:59.7585970Z 15:02:59.758 | Processed in 0.00 seconds -2026-03-27T14:02:59.7593500Z 15:02:59.758 | Pass "" (fp) -2026-03-27T14:02:59.7598676Z 15:02:59.759 | Target graphics API: gamecore_scarlett -2026-03-27T14:02:59.7603813Z 15:02:59.760 | Full variant space: 2 -2026-03-27T14:02:59.7611276Z 15:02:59.760 | After settings filtering: 2 -2026-03-27T14:02:59.7622916Z 15:02:59.761 | After built-in stripping: 1 -2026-03-27T14:02:59.7635228Z 15:02:59.762 | After scriptable stripping: 1 -2026-03-27T14:02:59.7652115Z 15:02:59.764 | Processed in 0.00 seconds -2026-03-27T14:02:59.7662698Z 15:02:59.765 | Pass (vp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.10s CPU time), skipped 0 variants. -2026-03-27T14:02:59.7669038Z 15:02:59.766 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.7677637Z 15:02:59.767 | Pass (fp, gamecore_scarlett) finished in 0.10 seconds. Local cache hits 0 (0.00s CPU time), remote cache hits 0 (0.00s CPU time), compiled 1 variants (0.04s CPU time), skipped 0 variants. -2026-03-27T14:02:59.7687806Z 15:02:59.767 | Prepared data for serialisation in 0.00s -2026-03-27T14:02:59.7694246Z 15:02:59.768 | Serialized binary data for shader Hidden/Physics2D/SDF_Point in 0.00s -2026-03-27T14:02:59.7701385Z 15:02:59.769 | gamecore_scarlett (total internal programs: 2, unique: 2) -2026-03-27T14:03:00.1776608Z 15:03:00.175 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --dagfile="Library/Bee/Playerd5b65d77.dag" --profile="Library/Bee/backend1.traceevents" Player -2026-03-27T14:03:00.1794275Z 15:03:00.178 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:03:00.1804930Z 15:03:00.179 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\PlaybackEngines\GameCoreScarlettSupport\GameCoreScarlettPlayerBuildProgram.exe" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/Bee;C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline" "Library/Bee/Playerd5b65d77.dag.json" "Library/Bee/Playerd5b65d77-inputdata.json" "Library\Bee\buildprogram0.traceevents" -2026-03-27T14:03:00.1809768Z 15:03:00.180 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:03:00.1815639Z 15:03:00.181 | ExitCode: 4 Duration: 0s85ms -2026-03-27T14:03:00.1822110Z 15:03:00.181 | DisplayProgressbar: Incremental Player Build -2026-03-27T14:03:01.8166101Z 15:03:01.812 | ExitCode: 0 Duration: 1s526ms -2026-03-27T14:03:01.8181512Z 15:03:01.817 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --dagfile="Library/Bee/Playerd5b65d77.dag" --dagfilejson="Library\Bee\Playerd5b65d77.dag.json" --profile="Library/Bee/backend2.traceevents" Player -2026-03-27T14:03:01.8203490Z 15:03:01.819 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:03:34.2850848Z 15:03:34.284 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\PlaybackEngines\GameCoreScarlettSupport\GameCoreScarlettPlayerBuildProgram.exe" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/Bee;C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline" "Library/Bee/Playerd5b65d77.dag.json" "Library/Bee/Playerd5b65d77-inputdata.json" "Library\Bee\buildprogram1.traceevents" -2026-03-27T14:03:34.2854530Z 15:03:34.285 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:03:34.2863117Z 15:03:34.285 | ExitCode: 4 Duration: 32s -2026-03-27T14:03:35.5543874Z 15:03:35.522 | ExitCode: 0 Duration: 1s412ms -2026-03-27T14:03:35.5818141Z 15:03:35.567 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --dagfile="Library/Bee/Playerd5b65d77.dag" --dagfilejson="Library\Bee\Playerd5b65d77.dag.json" --profile="Library/Bee/backend3.traceevents" Player -2026-03-27T14:03:35.5837676Z 15:03:35.582 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:03:50.4404923Z 15:03:50.433 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\netcorerun\netcorerun.exe "C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\PlaybackEngines\GameCoreScarlettSupport\GameCoreScarlettPlayerBuildProgram.exe" "C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/PlaybackEngines/GameCoreScarlettSupport/Bee;C:/Program Files/Unity/Hub/Editor/6000.3.8f1/Editor/Data/Tools/BuildPipeline" "Library/Bee/Playerd5b65d77.dag.json" "Library/Bee/Playerd5b65d77-inputdata.json" "Library\Bee\buildprogram2.traceevents" -2026-03-27T14:03:50.4418350Z 15:03:50.441 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:03:50.4424637Z 15:03:50.442 | ExitCode: 4 Duration: 15s -2026-03-27T14:03:52.5762818Z 15:03:52.495 | ExitCode: 0 Duration: 1s768ms -2026-03-27T14:03:52.7520578Z 15:03:52.597 | Starting: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor\Data\Tools\BuildPipeline\bee_backend.exe --ipc --dagfile="Library/Bee/Playerd5b65d77.dag" --dagfilejson="Library\Bee\Playerd5b65d77.dag.json" --profile="Library/Bee/backend4.traceevents" Player -2026-03-27T14:03:53.0821586Z 15:03:52.861 | WorkingDir: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1 -2026-03-27T14:05:25.5582936Z 15:05:25.557 | ExitCode: 0 Duration: 1m:33s -2026-03-27T14:05:25.5590082Z 15:05:25.558 | Sentry: CliConfiguration::Configure() called -2026-03-27T14:05:25.5596844Z 15:05:25.559 | Sentry: CliConfiguration::Configure() finished -2026-03-27T14:05:25.5603902Z 15:05:25.559 | Sentry: IntegrationOptionsConfig::Configure() called -2026-03-27T14:05:25.5612457Z 15:05:25.560 | Sentry: IntegrationOptionsConfig::Configure() finished -2026-03-27T14:05:25.5617412Z 15:05:25.561 | Sentry: (Debug) Logging enabled with 'UnityLogger' min level: Debug -2026-03-27T14:05:25.5629703Z 15:05:25.562 | Sentry: (Warning) No Sentry DSN configured. Sentry will be disabled. -2026-03-27T14:05:25.5636401Z 15:05:25.563 | Sentry: (Debug) Skipping native post build process. -2026-03-27T14:05:25.9662324Z 15:05:25.964 | Refreshing native plugins compatible for Editor in 11.85 ms, found 1 plugins. -2026-03-27T14:05:25.9670516Z 15:05:25.966 | Preloading 0 native plugins for Editor in 0.00 ms. -2026-03-27T14:05:25.9677048Z 15:05:25.967 | -2026-03-27T14:05:25.9683728Z 15:05:25.967 | ------------------------------------------------------------------------------- -2026-03-27T14:05:25.9689839Z 15:05:25.968 | Build Report -2026-03-27T14:05:25.9695922Z 15:05:25.969 | Uncompressed usage by category (Percentages based on user generated assets only): -2026-03-27T14:05:25.9701458Z 15:05:25.969 | Textures 2.7 mb 97.9% -2026-03-27T14:05:25.9706725Z 15:05:25.970 | Meshes 0.0 kb 0.0% -2026-03-27T14:05:25.9712455Z 15:05:25.970 | Animations 0.0 kb 0.0% -2026-03-27T14:05:25.9718198Z 15:05:25.971 | Sounds 0.0 kb 0.0% -2026-03-27T14:05:25.9724313Z 15:05:25.972 | Shaders 31.7 kb 1.1% -2026-03-27T14:05:25.9730191Z 15:05:25.972 | Other Assets 1.9 kb 0.1% -2026-03-27T14:05:25.9736709Z 15:05:25.973 | Levels 3.7 kb 0.1% -2026-03-27T14:05:25.9742610Z 15:05:25.973 | File headers 5.8 kb 0.2% -2026-03-27T14:05:25.9747647Z 15:05:25.974 | Total User Assets 2.7 mb 100.0% -2026-03-27T14:05:25.9755811Z 15:05:25.975 | Complete build size 1.4 gb -2026-03-27T14:05:25.9761071Z 15:05:25.975 | Used Assets and files from the Resources folder, sorted by uncompressed size: -2026-03-27T14:05:25.9768100Z 15:05:25.976 | 2.7 mb 0.2% Built-in Texture2D: Splash Screen Unity Logo -2026-03-27T14:05:25.9775658Z 15:05:25.977 | 32.2 kb 0.0% Resources/unity_builtin_extra -2026-03-27T14:05:25.9783045Z 15:05:25.977 | 0.6 kb 0.0% Packages/io.sentry.unity/Runtime/Sentry.Unity.dll -2026-03-27T14:05:25.9790807Z 15:05:25.978 | 0.4 kb 0.0% Built-in Sprite: -2026-03-27T14:05:25.9797850Z 15:05:25.979 | 0.3 kb 0.0% Assets/Resources/Sentry/SentryOptions.asset -2026-03-27T14:05:25.9812425Z 15:05:25.980 | 0.2 kb 0.0% Packages/com.unity.multiplayer.center/Common/IOnboardingSectionAnalyticsProvider.cs -2026-03-27T14:05:25.9818034Z 15:05:25.981 | 0.1 kb 0.0% Packages/com.unity.multiplayer.center/Common/SelectedSolutionsData.cs -2026-03-27T14:05:25.9824671Z 15:05:25.982 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs -2026-03-27T14:05:25.9830069Z 15:05:25.982 | 0.1 kb 0.0% Packages/com.unity.multiplayer.center/Common/IOnboardingSection.cs -2026-03-27T14:05:25.9838231Z 15:05:25.983 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteAssetImportFormats.cs -2026-03-27T14:05:25.9845268Z 15:05:25.984 | 0.1 kb 0.0% Packages/com.unity.multiplayer.center/Common/StyleConstants.cs -2026-03-27T14:05:25.9852229Z 15:05:25.984 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs -2026-03-27T14:05:25.9858725Z 15:05:25.985 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_DynamicFontAssetUtilities.cs -2026-03-27T14:05:25.9865003Z 15:05:25.986 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs -2026-03-27T14:05:25.9871586Z 15:05:25.986 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs -2026-03-27T14:05:25.9876796Z 15:05:25.987 | 0.1 kb 0.0% Packages/com.unity.multiplayer.center/Common/AnswerData.cs -2026-03-27T14:05:25.9882845Z 15:05:25.987 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_ScrollbarEventHandler.cs -2026-03-27T14:05:25.9889215Z 15:05:25.988 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_PackageResourceImporter.cs -2026-03-27T14:05:25.9894740Z 15:05:25.989 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/InternalBridge/ObjectUtilsBridge.cs -2026-03-27T14:05:25.9900162Z 15:05:25.989 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Utility/ReflectionMethodsCache.cs -2026-03-27T14:05:25.9905823Z 15:05:25.990 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MultipleDisplayUtilities.cs -2026-03-27T14:05:25.9911236Z 15:05:25.990 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/HorizontalLayoutGroup.cs -2026-03-27T14:05:25.9916868Z 15:05:25.991 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/IGraphicEnabledDisabled.cs -2026-03-27T14:05:25.9922583Z 15:05:25.991 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/GraphicRebuildTracker.cs -2026-03-27T14:05:25.9928584Z 15:05:25.992 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling/RectangularVertexClipper.cs -2026-03-27T14:05:25.9933794Z 15:05:25.992 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs -2026-03-27T14:05:25.9939744Z 15:05:25.993 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs -2026-03-27T14:05:25.9945649Z 15:05:25.994 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs -2026-03-27T14:05:25.9950961Z 15:05:25.994 | 0.1 kb 0.0% Assets/Scripts/IntegrationOptionsConfiguration.cs -2026-03-27T14:05:25.9956615Z 15:05:25.995 | 0.1 kb 0.0% Packages/io.sentry.unity/Runtime/SentryUserFeedback.cs -2026-03-27T14:05:25.9968974Z 15:05:25.995 | 0.1 kb 0.0% Packages/io.sentry.unity/Runtime/SentryInitialization.cs -2026-03-27T14:05:25.9974638Z 15:05:25.997 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Animation/CoroutineTween.cs -2026-03-27T14:05:25.9982456Z 15:05:25.997 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventInterfaces.cs -2026-03-27T14:05:25.9988437Z 15:05:25.998 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMPro_ExtensionMethods.cs -2026-03-27T14:05:25.9994925Z 15:05:25.999 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextParsingUtilities.cs -2026-03-27T14:05:26.0000408Z 15:05:25.999 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextElement_Legacy.cs -2026-03-27T14:05:26.0006539Z 15:05:26.000 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontAssetUtilities.cs -2026-03-27T14:05:26.0017290Z 15:05:26.000 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/MaterialReferenceManager.cs -2026-03-27T14:05:26.0022919Z 15:05:26.001 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/FontFeatureCommonGSUB.cs -2026-03-27T14:05:26.0028603Z 15:05:26.002 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/SetPropertyUtility.cs -2026-03-27T14:05:26.0034425Z 15:05:26.003 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MaterialModifiers/IMaterialModifier.cs -2026-03-27T14:05:26.0040257Z 15:05:26.003 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/VerticalLayoutGroup.cs -2026-03-27T14:05:26.0045976Z 15:05:26.004 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/ContentSizeFitter.cs -2026-03-27T14:05:26.0051755Z 15:05:26.004 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/AspectRatioFitter.cs -2026-03-27T14:05:26.0057527Z 15:05:26.005 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/FontUpdateTracker.cs -2026-03-27T14:05:26.0063147Z 15:05:26.005 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/CanvasUpdateRegistry.cs -2026-03-27T14:05:26.0071213Z 15:05:26.006 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/AnimationTriggers.cs -2026-03-27T14:05:26.0073901Z 15:05:26.007 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs -2026-03-27T14:05:26.0079534Z 15:05:26.007 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs -2026-03-27T14:05:26.0085350Z 15:05:26.008 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs -2026-03-27T14:05:26.0092962Z 15:05:26.008 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/RaycasterManager.cs -2026-03-27T14:05:26.0098679Z 15:05:26.009 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/RaycastResult.cs -2026-03-27T14:05:26.0104431Z 15:05:26.010 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs -2026-03-27T14:05:26.0110206Z 15:05:26.010 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs -2026-03-27T14:05:26.0115350Z 15:05:26.011 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/ExecuteEvents.cs -2026-03-27T14:05:26.0125668Z 15:05:26.011 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs -2026-03-27T14:05:26.0134317Z 15:05:26.012 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs -2026-03-27T14:05:26.0142522Z 15:05:26.013 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs -2026-03-27T14:05:26.0150165Z 15:05:26.014 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextProcessingStack.cs -2026-03-27T14:05:26.0155883Z 15:05:26.015 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontFeaturesCommon.cs -2026-03-27T14:05:26.0161096Z 15:05:26.015 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMPro_EventManager.cs -2026-03-27T14:05:26.0167068Z 15:05:26.016 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_UpdateRegistery.cs -2026-03-27T14:05:26.0172450Z 15:05:26.016 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_UpdateManager.cs -2026-03-27T14:05:26.0177612Z 15:05:26.017 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextUtilities.cs -2026-03-27T14:05:26.0183235Z 15:05:26.017 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextProcessingCommon.cs -2026-03-27T14:05:26.0188485Z 15:05:26.018 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteCharacter.cs -2026-03-27T14:05:26.0194147Z 15:05:26.019 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteAnimator.cs -2026-03-27T14:05:26.0198761Z 15:05:26.019 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SelectionCaret.cs -2026-03-27T14:05:26.0204415Z 15:05:26.020 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_ResourcesManager.cs -2026-03-27T14:05:26.0211179Z 15:05:26.020 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_MaterialManager.cs -2026-03-27T14:05:26.0216989Z 15:05:26.021 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_InputValidator.cs -2026-03-27T14:05:26.0222312Z 15:05:26.021 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontFeatureTable.cs -2026-03-27T14:05:26.0228297Z 15:05:26.022 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_DefaultControls.cs -2026-03-27T14:05:26.0233665Z 15:05:26.022 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Compatibility.cs -2026-03-27T14:05:26.0239265Z 15:05:26.023 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_ColorGradient.cs -2026-03-27T14:05:26.0244929Z 15:05:26.024 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_CharacterInfo.cs -2026-03-27T14:05:26.0251254Z 15:05:26.024 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/ITextPreProcessor.cs -2026-03-27T14:05:26.0257145Z 15:05:26.025 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/FontFeatureCommonGPOS.cs -2026-03-27T14:05:26.0265040Z 15:05:26.026 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/PositionAsUV1.cs -2026-03-27T14:05:26.0271327Z 15:05:26.026 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/IMeshModifier.cs -2026-03-27T14:05:26.0276609Z 15:05:26.027 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/BaseMeshEffect.cs -2026-03-27T14:05:26.0286387Z 15:05:26.027 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/StencilMaterial.cs -2026-03-27T14:05:26.0293465Z 15:05:26.028 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MaskableGraphic.cs -2026-03-27T14:05:26.0299768Z 15:05:26.029 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/MaskUtilities.cs -2026-03-27T14:05:26.0305735Z 15:05:26.030 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/LayoutUtility.cs -2026-03-27T14:05:26.0311373Z 15:05:26.030 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/LayoutRebuilder.cs -2026-03-27T14:05:26.0316701Z 15:05:26.031 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/LayoutElement.cs -2026-03-27T14:05:26.0323241Z 15:05:26.031 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/ILayoutElement.cs -2026-03-27T14:05:26.0329862Z 15:05:26.032 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/GridLayoutGroup.cs -2026-03-27T14:05:26.0335516Z 15:05:26.033 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/GraphicRegistry.cs -2026-03-27T14:05:26.0341609Z 15:05:26.033 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/GraphicRaycaster.cs -2026-03-27T14:05:26.0347845Z 15:05:26.034 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/DefaultControls.cs -2026-03-27T14:05:26.0353584Z 15:05:26.034 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling/ClipperRegistry.cs -2026-03-27T14:05:26.0359355Z 15:05:26.035 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/UIBehaviour.cs -2026-03-27T14:05:26.0365099Z 15:05:26.036 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs -2026-03-27T14:05:26.0371855Z 15:05:26.036 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventTrigger.cs -2026-03-27T14:05:26.0377267Z 15:05:26.037 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/EventSystem/EventSystem.cs -2026-03-27T14:05:26.0383146Z 15:05:26.037 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMPro_MeshUtilities.cs -2026-03-27T14:05:26.0388991Z 15:05:26.038 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_ShaderUtilities.cs -2026-03-27T14:05:26.0394668Z 15:05:26.039 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_RichTextTagsCommon.cs -2026-03-27T14:05:26.0400597Z 15:05:26.039 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontAssetCommon.cs -2026-03-27T14:05:26.0411210Z 15:05:26.040 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TextMeshProUGUI.cs -2026-03-27T14:05:26.0417626Z 15:05:26.041 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TextContainer.cs -2026-03-27T14:05:26.0422989Z 15:05:26.041 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextElement.cs -2026-03-27T14:05:26.0429844Z 15:05:26.042 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SubMeshUI.cs -2026-03-27T14:05:26.0440124Z 15:05:26.043 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_StyleSheet.cs -2026-03-27T14:05:26.0447757Z 15:05:26.044 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteGlyph.cs -2026-03-27T14:05:26.0453680Z 15:05:26.045 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SpriteAsset.cs -2026-03-27T14:05:26.0459413Z 15:05:26.045 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_InputField.cs -2026-03-27T14:05:26.0468656Z 15:05:26.046 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_FontAsset.cs -2026-03-27T14:05:26.0474910Z 15:05:26.047 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_CoroutineTween.cs -2026-03-27T14:05:26.0483621Z 15:05:26.047 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Character.cs -2026-03-27T14:05:26.0492413Z 15:05:26.048 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Utility/VertexHelper.cs -2026-03-27T14:05:26.0500602Z 15:05:26.049 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/ToggleGroup.cs -2026-03-27T14:05:26.0507065Z 15:05:26.050 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/SpriteState.cs -2026-03-27T14:05:26.0514466Z 15:05:26.051 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Selectable.cs -2026-03-27T14:05:26.0520435Z 15:05:26.051 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Scrollbar.cs -2026-03-27T14:05:26.0526522Z 15:05:26.052 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/ScrollRect.cs -2026-03-27T14:05:26.0533106Z 15:05:26.052 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/RectMask2D.cs -2026-03-27T14:05:26.0539099Z 15:05:26.053 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Navigation.cs -2026-03-27T14:05:26.0545025Z 15:05:26.054 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/LayoutGroup.cs -2026-03-27T14:05:26.0550954Z 15:05:26.054 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Layout/CanvasScaler.cs -2026-03-27T14:05:26.0557082Z 15:05:26.055 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/InputField.cs -2026-03-27T14:05:26.0562600Z 15:05:26.055 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/IMaskable.cs -2026-03-27T14:05:26.0569916Z 15:05:26.056 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/ColorBlock.cs -2026-03-27T14:05:26.0575098Z 15:05:26.057 | 0.1 kb 0.0% Assets/Scripts/IntegrationTester.cs -2026-03-27T14:05:26.0580856Z 15:05:26.057 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling/IClipRegion.cs -2026-03-27T14:05:26.0596583Z 15:05:26.058 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TextMeshPro.cs -2026-03-27T14:05:26.0603812Z 15:05:26.059 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_TextInfo.cs -2026-03-27T14:05:26.0611166Z 15:05:26.060 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_SubMesh.cs -2026-03-27T14:05:26.0618547Z 15:05:26.061 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Style.cs -2026-03-27T14:05:26.0624682Z 15:05:26.062 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Sprite.cs -2026-03-27T14:05:26.0633047Z 15:05:26.062 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Settings.cs -2026-03-27T14:05:26.0639909Z 15:05:26.063 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_MeshInfo.cs -2026-03-27T14:05:26.0645731Z 15:05:26.064 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_LineInfo.cs -2026-03-27T14:05:26.0652304Z 15:05:26.064 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Dropdown.cs -2026-03-27T14:05:26.0658098Z 15:05:26.065 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Asset.cs -2026-03-27T14:05:26.0664067Z 15:05:26.065 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/FastAction.cs -2026-03-27T14:05:26.0670049Z 15:05:26.066 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs -2026-03-27T14:05:26.0675741Z 15:05:26.067 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/VertexModifiers/Outline.cs -2026-03-27T14:05:26.0681934Z 15:05:26.067 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Toggle.cs -2026-03-27T14:05:26.0688095Z 15:05:26.068 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Slider.cs -2026-03-27T14:05:26.0693824Z 15:05:26.068 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/RawImage.cs -2026-03-27T14:05:26.0699410Z 15:05:26.069 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Image.cs -2026-03-27T14:05:26.0705429Z 15:05:26.070 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/IMask.cs -2026-03-27T14:05:26.0711104Z 15:05:26.070 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Graphic.cs -2026-03-27T14:05:26.0716826Z 15:05:26.071 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/FontData.cs -2026-03-27T14:05:26.0722811Z 15:05:26.071 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Dropdown.cs -2026-03-27T14:05:26.0729861Z 15:05:26.072 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Culling/Clipping.cs -2026-03-27T14:05:26.0735453Z 15:05:26.073 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Button.cs -2026-03-27T14:05:26.0741122Z 15:05:26.073 | 0.1 kb 0.0% Assets/Scripts/CliConfiguration.cs -2026-03-27T14:05:26.0752593Z 15:05:26.074 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/TMP/TMP_Text.cs -2026-03-27T14:05:26.0758536Z 15:05:26.075 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Text.cs -2026-03-27T14:05:26.0767030Z 15:05:26.076 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Misc.cs -2026-03-27T14:05:26.0772670Z 15:05:26.076 | 0.1 kb 0.0% Packages/com.unity.ugui/Runtime/UGUI/UI/Core/Mask.cs -2026-03-27T14:05:26.0778884Z 15:05:26.077 | 0.1 kb 0.0% Assets/Scripts/Logger.cs -2026-03-27T14:05:26.0785349Z 15:05:26.078 | 0.1 kb 0.0% Assets/Resources/Sentry/IntegrationOptionsConfiguration.asset -2026-03-27T14:05:26.0791607Z 15:05:26.078 | ------------------------------------------------------------------------------- -2026-03-27T14:05:26.0797506Z 15:05:26.079 | Unloading 8 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:05:26.0803067Z 15:05:26.079 | Unloading 66 unused Assets / (0.8 MB). Loaded Objects now: 1137. -2026-03-27T14:05:26.0809104Z 15:05:26.080 | Memory consumption went from 106.8 MB to 106.0 MB. -2026-03-27T14:05:26.0815354Z 15:05:26.081 | Total: 7.802500 ms (FindLiveObjects: 0.101500 ms CreateObjectMapping: 0.019000 ms MarkObjects: 7.139500 ms DeleteObjects: 0.541100 ms) -2026-03-27T14:05:26.0820830Z 15:05:26.081 | -2026-03-27T14:05:26.0826402Z 15:05:26.082 | DisplayProgressNotification: Build Successful -2026-03-27T14:05:26.0831718Z 15:05:26.082 | Build Finished, Result: Success. -2026-03-27T14:05:26.4944514Z 15:05:26.493 | ##utp:{"type":"PlayerBuildInfo","version":2,"phase":"Immediate","time":1774620326146,"processId":7096,"steps":[{"description":"Preprocess Player","duration":312},{"description":"Prepare For Build","duration":1},{"description":"ProducePlayerScriptAssemblies","duration":15675},{"description":"Verify Build setup","duration":37},{"description":"Prepare assets for target platform","duration":1178},{"description":"Prepare splash screen","duration":56},{"description":"Building scenes","duration":579},{"description":"Build scripts DLLs","duration":2055},{"description":"Build GlobalGameManagers file","duration":392},{"description":"Writing asset files","duration":2254},{"description":"Building Resources/unity_builtin_extra","duration":16351},{"description":"Write data build dirty tracking information","duration":50},{"description":"Postprocess built player","duration":145933}],"duration":184873} -2026-03-27T14:05:26.4948762Z 15:05:26.494 | Unloading 0 Unused Serialized files (Serialized files now loaded: 0) -2026-03-27T14:05:26.4954676Z 15:05:26.495 | Loaded scene 'Temp/__Backupscenes/0.backup' -2026-03-27T14:05:26.4961134Z 15:05:26.495 | Deserialize: 1.109 ms -2026-03-27T14:05:26.4966567Z 15:05:26.496 | Integration: 5.991 ms -2026-03-27T14:05:26.4972485Z 15:05:26.496 | Integration of assets: 0.002 ms -2026-03-27T14:05:26.4978612Z 15:05:26.497 | Thread Wait Time: 0.014 ms -2026-03-27T14:05:26.4984501Z 15:05:26.498 | Total Operation Time: 7.116 ms -2026-03-27T14:05:26.4990535Z 15:05:26.498 | Unloading 0 unused Assets / (153 B). Loaded Objects now: 1130. -2026-03-27T14:05:26.4996108Z 15:05:26.499 | Memory consumption went from 105.3 MB to 105.3 MB. -2026-03-27T14:05:26.5002035Z 15:05:26.499 | Total: 6.429300 ms (FindLiveObjects: 0.066000 ms CreateObjectMapping: 0.013700 ms MarkObjects: 6.343500 ms DeleteObjects: 0.004800 ms) -2026-03-27T14:05:26.5008346Z 15:05:26.500 | -2026-03-27T14:05:26.5014755Z 15:05:26.501 | Builder: Build result at outputPath: C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build/test -2026-03-27T14:05:26.5021843Z 15:05:26.501 | Builder: Build succeeded: 1452215066 bytes -2026-03-27T14:05:26.5027463Z 15:05:26.502 | Builder: Build succeeded with 2 warnings. -2026-03-27T14:05:26.5034335Z 15:05:26.502 | Batchmode quit successfully invoked - shutting down! -2026-03-27T14:05:26.5042705Z 15:05:26.503 | Killing ADB server in 0.158995 seconds. -2026-03-27T14:05:26.9131435Z 15:05:26.912 | [Physics::Module] Cleanup current backend. -2026-03-27T14:05:26.9138037Z 15:05:26.913 | [Physics::Module] Id: 0xf2b8ea05 -2026-03-27T14:05:26.9143994Z 15:05:26.913 | Input System module state changed to: ShutdownInProgress. -2026-03-27T14:05:26.9149554Z 15:05:26.914 | Input System polling thread exited. -2026-03-27T14:05:26.9155537Z 15:05:26.915 | Input System module state changed to: Shutdown. -2026-03-27T14:05:26.9162934Z 15:05:26.915 | [Licensing::IpcConnector] LicenseClient-github-runner-notifications channel disconnected successfully. -2026-03-27T14:05:26.9168664Z 15:05:26.916 | [Licensing::IpcConnector] LicenseClient-github-runner channel disconnected successfully. -2026-03-27T14:05:26.9174109Z 15:05:26.916 | AcceleratorClientConnectionCallback - disconnected - :0 -2026-03-27T14:05:26.9179840Z 15:05:26.917 | Cleanup mono -2026-03-27T14:05:27.7429337Z 15:05:27.742 | Exiting batchmode successfully now! -2026-03-27T14:05:28.1530585Z 15:05:28.150 | Exiting without the bug reporter. Application will terminate with return code 0 -2026-03-27T14:05:28.5626701Z ##[endgroup] -2026-03-27T14:05:28.5651619Z Unity finished successfully. Time taken: 00:03:23.812 -2026-03-27T14:05:28.5661226Z 15:05:28.565 | Build output: -2026-03-27T14:05:28.5763439Z 15:05:28.575 | test -2026-03-27T14:05:28.5775359Z 15:05:28.577 | [OK] Project built -2026-03-27T14:05:28.5784221Z 15:05:28.577 | Skipping tests (-SkipTests flag set) -2026-03-27T14:05:28.7611478Z ##[group]Run $buildDir = "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build" -2026-03-27T14:05:28.7612817Z $buildDir = "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build" -2026-03-27T14:05:28.7613524Z Write-Host "Build output structure:" -2026-03-27T14:05:28.7613975Z Get-ChildItem -Path $buildDir -Recurse -Depth 2 | ForEach-Object { -2026-03-27T14:05:28.7615215Z  Write-Host " $($_.FullName.Replace($buildDir, '.'))" -2026-03-27T14:05:28.7615524Z } -2026-03-27T14:05:28.7615941Z $config = Get-ChildItem -Path $buildDir -Filter "MicrosoftGame.config" -Recurse | Select-Object -First 1 -2026-03-27T14:05:28.7616431Z if ($config) { -2026-03-27T14:05:28.7616799Z  Write-Host "`nUnity-generated MicrosoftGame.config:" -2026-03-27T14:05:28.7617207Z  Get-Content $config.FullName -2026-03-27T14:05:28.7617453Z } -2026-03-27T14:05:28.7713914Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" -2026-03-27T14:05:28.7714242Z env: -2026-03-27T14:05:28.7714678Z GH_TOKEN: *** -2026-03-27T14:05:28.7714858Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T14:05:28.7715128Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T14:05:28.7715431Z GDK_VERSION: 250400 -2026-03-27T14:05:28.7715828Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T14:05:28.7716491Z SENTRY_AUTH_TOKEN: *** -2026-03-27T14:05:28.7716677Z ##[endgroup] -2026-03-27T14:05:29.2460471Z Build output structure: -2026-03-27T14:05:29.2893666Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test -2026-03-27T14:05:29.2908318Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp -2026-03-27T14:05:29.2913189Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose -2026-03-27T14:05:29.2918059Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols -2026-03-27T14:05:29.2931616Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Symbols -2026-03-27T14:05:29.2952796Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\__Generated_CodeGen.c -2026-03-27T14:05:29.2958093Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\__Generated.cpp -2026-03-27T14:05:29.2963190Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\analytics.json -2026-03-27T14:05:29.2969377Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Assembly-CSharp_CodeGen.c -2026-03-27T14:05:29.2974256Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Assembly-CSharp.cpp -2026-03-27T14:05:29.2979378Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\CppPlugin.cpp -2026-03-27T14:05:29.2984750Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__1.cpp -2026-03-27T14:05:29.2989866Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__10.cpp -2026-03-27T14:05:29.2997727Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__11.cpp -2026-03-27T14:05:29.3000349Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__12.cpp -2026-03-27T14:05:29.3005129Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__13.cpp -2026-03-27T14:05:29.3010118Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__14.cpp -2026-03-27T14:05:29.3015433Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__15.cpp -2026-03-27T14:05:29.3020985Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__16.cpp -2026-03-27T14:05:29.3026764Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__17.cpp -2026-03-27T14:05:29.3032081Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__18.cpp -2026-03-27T14:05:29.3036890Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__19.cpp -2026-03-27T14:05:29.3041808Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__2.cpp -2026-03-27T14:05:29.3047083Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__20.cpp -2026-03-27T14:05:29.3051820Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__21.cpp -2026-03-27T14:05:29.3056564Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__22.cpp -2026-03-27T14:05:29.3061390Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__23.cpp -2026-03-27T14:05:29.3066367Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__24.cpp -2026-03-27T14:05:29.3071440Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__25.cpp -2026-03-27T14:05:29.3076190Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__26.cpp -2026-03-27T14:05:29.3081308Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__27.cpp -2026-03-27T14:05:29.3085882Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__28.cpp -2026-03-27T14:05:29.3092558Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__29.cpp -2026-03-27T14:05:29.3097396Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__3.cpp -2026-03-27T14:05:29.3102174Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__30.cpp -2026-03-27T14:05:29.3108955Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__4.cpp -2026-03-27T14:05:29.3112693Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__5.cpp -2026-03-27T14:05:29.3117510Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__6.cpp -2026-03-27T14:05:29.3122684Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__7.cpp -2026-03-27T14:05:29.3129245Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__8.cpp -2026-03-27T14:05:29.3138117Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods__9.cpp -2026-03-27T14:05:29.3144803Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\GenericMethods.cpp -2026-03-27T14:05:29.3151140Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__1.cpp -2026-03-27T14:05:29.3155945Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__10.cpp -2026-03-27T14:05:29.3160639Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__11.cpp -2026-03-27T14:05:29.3167041Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__12.cpp -2026-03-27T14:05:29.3178552Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__13.cpp -2026-03-27T14:05:29.3179680Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__14.cpp -2026-03-27T14:05:29.3180881Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__15.cpp -2026-03-27T14:05:29.3185995Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__16.cpp -2026-03-27T14:05:29.3190883Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__17.cpp -2026-03-27T14:05:29.3195583Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__18.cpp -2026-03-27T14:05:29.3200674Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__19.cpp -2026-03-27T14:05:29.3205215Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__2.cpp -2026-03-27T14:05:29.3210888Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__20.cpp -2026-03-27T14:05:29.3215657Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__21.cpp -2026-03-27T14:05:29.3220267Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__22.cpp -2026-03-27T14:05:29.3225820Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__23.cpp -2026-03-27T14:05:29.3229474Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__24.cpp -2026-03-27T14:05:29.3234144Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__25.cpp -2026-03-27T14:05:29.3238696Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__26.cpp -2026-03-27T14:05:29.3243380Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__27.cpp -2026-03-27T14:05:29.3248524Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__28.cpp -2026-03-27T14:05:29.3253217Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__29.cpp -2026-03-27T14:05:29.3257776Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__3.cpp -2026-03-27T14:05:29.3262414Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__30.cpp -2026-03-27T14:05:29.3267074Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__31.cpp -2026-03-27T14:05:29.3271919Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__32.cpp -2026-03-27T14:05:29.3276421Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__33.cpp -2026-03-27T14:05:29.3284299Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__34.cpp -2026-03-27T14:05:29.3289488Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__35.cpp -2026-03-27T14:05:29.3294165Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__36.cpp -2026-03-27T14:05:29.3299101Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__37.cpp -2026-03-27T14:05:29.3303737Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__38.cpp -2026-03-27T14:05:29.3308057Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__39.cpp -2026-03-27T14:05:29.3312376Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__4.cpp -2026-03-27T14:05:29.3317128Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__40.cpp -2026-03-27T14:05:29.3321591Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__41.cpp -2026-03-27T14:05:29.3326169Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__42.cpp -2026-03-27T14:05:29.3330667Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__43.cpp -2026-03-27T14:05:29.3336009Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__44.cpp -2026-03-27T14:05:29.3340003Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__45.cpp -2026-03-27T14:05:29.3345112Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__46.cpp -2026-03-27T14:05:29.3349466Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__47.cpp -2026-03-27T14:05:29.3357104Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__48.cpp -2026-03-27T14:05:29.3362123Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__49.cpp -2026-03-27T14:05:29.3369463Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__5.cpp -2026-03-27T14:05:29.3375565Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__50.cpp -2026-03-27T14:05:29.3381469Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__51.cpp -2026-03-27T14:05:29.3386550Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__52.cpp -2026-03-27T14:05:29.3391483Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__53.cpp -2026-03-27T14:05:29.3396544Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__54.cpp -2026-03-27T14:05:29.3401176Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__55.cpp -2026-03-27T14:05:29.3406606Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__56.cpp -2026-03-27T14:05:29.3411898Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__57.cpp -2026-03-27T14:05:29.3416971Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__58.cpp -2026-03-27T14:05:29.3421988Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__59.cpp -2026-03-27T14:05:29.3426799Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__6.cpp -2026-03-27T14:05:29.3431796Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__60.cpp -2026-03-27T14:05:29.3436451Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__61.cpp -2026-03-27T14:05:29.3443621Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__62.cpp -2026-03-27T14:05:29.3449334Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__63.cpp -2026-03-27T14:05:29.3454740Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__64.cpp -2026-03-27T14:05:29.3461058Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__65.cpp -2026-03-27T14:05:29.3464313Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__66.cpp -2026-03-27T14:05:29.3469112Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__67.cpp -2026-03-27T14:05:29.3474277Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__68.cpp -2026-03-27T14:05:29.3479203Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__69.cpp -2026-03-27T14:05:29.3484187Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__7.cpp -2026-03-27T14:05:29.3489229Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__70.cpp -2026-03-27T14:05:29.3494151Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__71.cpp -2026-03-27T14:05:29.3499113Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__72.cpp -2026-03-27T14:05:29.3504224Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__73.cpp -2026-03-27T14:05:29.3508943Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__74.cpp -2026-03-27T14:05:29.3513993Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__75.cpp -2026-03-27T14:05:29.3519015Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__76.cpp -2026-03-27T14:05:29.3523823Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__77.cpp -2026-03-27T14:05:29.3528939Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__78.cpp -2026-03-27T14:05:29.3533819Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__79.cpp -2026-03-27T14:05:29.3539371Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__8.cpp -2026-03-27T14:05:29.3544726Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__80.cpp -2026-03-27T14:05:29.3549893Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__81.cpp -2026-03-27T14:05:29.3554646Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__82.cpp -2026-03-27T14:05:29.3559500Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__83.cpp -2026-03-27T14:05:29.3564174Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__84.cpp -2026-03-27T14:05:29.3570162Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__85.cpp -2026-03-27T14:05:29.3573578Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__86.cpp -2026-03-27T14:05:29.3578686Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__87.cpp -2026-03-27T14:05:29.3583445Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__88.cpp -2026-03-27T14:05:29.3587924Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__89.cpp -2026-03-27T14:05:29.3593584Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__9.cpp -2026-03-27T14:05:29.3601273Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__90.cpp -2026-03-27T14:05:29.3606745Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__91.cpp -2026-03-27T14:05:29.3611387Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__92.cpp -2026-03-27T14:05:29.3616350Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__93.cpp -2026-03-27T14:05:29.3621433Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__94.cpp -2026-03-27T14:05:29.3626317Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__95.cpp -2026-03-27T14:05:29.3631131Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__96.cpp -2026-03-27T14:05:29.3635949Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__97.cpp -2026-03-27T14:05:29.3640948Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics__98.cpp -2026-03-27T14:05:29.3645626Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Generics.cpp -2026-03-27T14:05:29.3651426Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateFieldValues.cpp -2026-03-27T14:05:29.3655926Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateFieldValues1.cpp -2026-03-27T14:05:29.3660513Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateFieldValues2.cpp -2026-03-27T14:05:29.3665492Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateTypeValues.cpp -2026-03-27T14:05:29.3670202Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCalculateTypeValues1.cpp -2026-03-27T14:05:29.3674965Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCFieldValuesTable.c -2026-03-27T14:05:29.3680593Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCCTypeValuesTable.c -2026-03-27T14:05:29.3684506Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppCodeRegistration.cpp -2026-03-27T14:05:29.3689417Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericAdjustorThunkTable.c -2026-03-27T14:05:29.3694140Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericClassTable.c -2026-03-27T14:05:29.3698959Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericInstDefinitions.c -2026-03-27T14:05:29.3703871Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericMethodDefinitions.c -2026-03-27T14:05:29.3708615Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericMethodPointerTable.c -2026-03-27T14:05:29.3713186Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppGenericMethodTable.c -2026-03-27T14:05:29.3717973Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppInteropDataTable.cpp -2026-03-27T14:05:29.3722694Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppInvokerTable.cpp -2026-03-27T14:05:29.3728058Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppMetadataRegistration.c -2026-03-27T14:05:29.3732775Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppMetadataUsage.c -2026-03-27T14:05:29.3737330Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppReversePInvokeWrapperTable.cpp -2026-03-27T14:05:29.3741920Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppRgctxTable.c -2026-03-27T14:05:29.3746917Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppTypeDefinitions.c -2026-03-27T14:05:29.3754283Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Il2CppUnresolvedIndirectCallStubs.cpp -2026-03-27T14:05:29.3760445Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\io.sentry.unity.runtime_CodeGen.c -2026-03-27T14:05:29.3765604Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\io.sentry.unity.runtime.cpp -2026-03-27T14:05:29.3771171Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Mono.Security__1.cpp -2026-03-27T14:05:29.3776490Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Mono.Security_CodeGen.c -2026-03-27T14:05:29.3781336Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Mono.Security.cpp -2026-03-27T14:05:29.3786022Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__1.cpp -2026-03-27T14:05:29.3792058Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__10.cpp -2026-03-27T14:05:29.3796472Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__11.cpp -2026-03-27T14:05:29.3801128Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__12.cpp -2026-03-27T14:05:29.3805784Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__13.cpp -2026-03-27T14:05:29.3810514Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__14.cpp -2026-03-27T14:05:29.3815025Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__15.cpp -2026-03-27T14:05:29.3819947Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__16.cpp -2026-03-27T14:05:29.3824828Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__17.cpp -2026-03-27T14:05:29.3829606Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__18.cpp -2026-03-27T14:05:29.3834461Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__19.cpp -2026-03-27T14:05:29.3839308Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__2.cpp -2026-03-27T14:05:29.3844481Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__20.cpp -2026-03-27T14:05:29.3849005Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__21.cpp -2026-03-27T14:05:29.3853635Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__3.cpp -2026-03-27T14:05:29.3944314Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__4.cpp -2026-03-27T14:05:29.3949037Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__5.cpp -2026-03-27T14:05:29.3953958Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__6.cpp -2026-03-27T14:05:29.3958922Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__7.cpp -2026-03-27T14:05:29.3963553Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__8.cpp -2026-03-27T14:05:29.3968198Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib__9.cpp -2026-03-27T14:05:29.3972592Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib_CodeGen.c -2026-03-27T14:05:29.3977211Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\mscorlib.cpp -2026-03-27T14:05:29.3983200Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry__1.cpp -2026-03-27T14:05:29.3986998Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry__2.cpp -2026-03-27T14:05:29.3991789Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry__3.cpp -2026-03-27T14:05:29.3996076Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry__4.cpp -2026-03-27T14:05:29.4000808Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry_CodeGen.c -2026-03-27T14:05:29.4005282Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\sentry_utils.c -2026-03-27T14:05:29.4010379Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.cpp -2026-03-27T14:05:29.4015209Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Microsoft.Bcl.AsyncInterfaces_CodeGen.c -2026-03-27T14:05:29.4020222Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Microsoft.Bcl.AsyncInterfaces.cpp -2026-03-27T14:05:29.4024786Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Buffers_CodeGen.c -2026-03-27T14:05:29.4029567Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Buffers.cpp -2026-03-27T14:05:29.4034625Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Collections.Immutable_CodeGen.c -2026-03-27T14:05:29.4039070Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Collections.Immutable.cpp -2026-03-27T14:05:29.4043468Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Memory_CodeGen.c -2026-03-27T14:05:29.4048698Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Memory.cpp -2026-03-27T14:05:29.4053420Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Numerics.Vectors_CodeGen.c -2026-03-27T14:05:29.4058381Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Numerics.Vectors.cpp -2026-03-27T14:05:29.4062906Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Reflection.Metadata_CodeGen.c -2026-03-27T14:05:29.4067736Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Reflection.Metadata.cpp -2026-03-27T14:05:29.4075451Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Runtime.CompilerServices.Unsafe_CodeGen.c -2026-03-27T14:05:29.4080797Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Runtime.CompilerServices.Unsafe.cpp -2026-03-27T14:05:29.4086680Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Encodings.Web_CodeGen.c -2026-03-27T14:05:29.4090752Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Encodings.Web.cpp -2026-03-27T14:05:29.4095335Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Json__1.cpp -2026-03-27T14:05:29.4099773Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Json__2.cpp -2026-03-27T14:05:29.4104516Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Json_CodeGen.c -2026-03-27T14:05:29.4108955Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Text.Json.cpp -2026-03-27T14:05:29.4114443Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Threading.Tasks.Extensions_CodeGen.c -2026-03-27T14:05:29.4118589Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.System.Threading.Tasks.Extensions.cpp -2026-03-27T14:05:29.4123311Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity__1.cpp -2026-03-27T14:05:29.4128611Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity_CodeGen.c -2026-03-27T14:05:29.4133425Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity.cpp -2026-03-27T14:05:29.4138355Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity.Native_CodeGen.c -2026-03-27T14:05:29.4142971Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\Sentry.Unity.Native.cpp -2026-03-27T14:05:29.4147677Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__1.cpp -2026-03-27T14:05:29.4152356Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__10.cpp -2026-03-27T14:05:29.4157250Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__2.cpp -2026-03-27T14:05:29.4162284Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__3.cpp -2026-03-27T14:05:29.4167515Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__4.cpp -2026-03-27T14:05:29.4172389Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__5.cpp -2026-03-27T14:05:29.4176780Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__6.cpp -2026-03-27T14:05:29.4181646Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__7.cpp -2026-03-27T14:05:29.4186386Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__8.cpp -2026-03-27T14:05:29.4191897Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System__9.cpp -2026-03-27T14:05:29.4195897Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System_CodeGen.c -2026-03-27T14:05:29.4207746Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Core_CodeGen.c -2026-03-27T14:05:29.4209141Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Core.cpp -2026-03-27T14:05:29.4211179Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.cpp -2026-03-27T14:05:29.4216186Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Net.Http_CodeGen.c -2026-03-27T14:05:29.4220843Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Net.Http.cpp -2026-03-27T14:05:29.4226055Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Numerics_CodeGen.c -2026-03-27T14:05:29.4232203Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\System.Numerics.cpp -2026-03-27T14:05:29.4236991Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine_CodeGen.c -2026-03-27T14:05:29.4241928Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AccessibilityModule_CodeGen.c -2026-03-27T14:05:29.4246888Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AccessibilityModule.cpp -2026-03-27T14:05:29.4251682Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AdaptivePerformanceModule__1.cpp -2026-03-27T14:05:29.4256029Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AdaptivePerformanceModule_CodeGen.c -2026-03-27T14:05:29.4260878Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AdaptivePerformanceModule.cpp -2026-03-27T14:05:29.4265185Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AIModule_CodeGen.c -2026-03-27T14:05:29.4269591Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AIModule.cpp -2026-03-27T14:05:29.4274374Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AndroidJNIModule_CodeGen.c -2026-03-27T14:05:29.4278941Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AndroidJNIModule.cpp -2026-03-27T14:05:29.4283625Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AnimationModule_CodeGen.c -2026-03-27T14:05:29.4288795Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AnimationModule.cpp -2026-03-27T14:05:29.4294357Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AssetBundleModule_CodeGen.c -2026-03-27T14:05:29.4298291Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AssetBundleModule.cpp -2026-03-27T14:05:29.4303338Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AudioModule_CodeGen.c -2026-03-27T14:05:29.4308400Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.AudioModule.cpp -2026-03-27T14:05:29.4313156Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule__1.cpp -2026-03-27T14:05:29.4318056Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule__2.cpp -2026-03-27T14:05:29.4323228Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule__3.cpp -2026-03-27T14:05:29.4328136Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule_CodeGen.c -2026-03-27T14:05:29.4333101Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.CoreModule.cpp -2026-03-27T14:05:29.4337561Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.cpp -2026-03-27T14:05:29.4342687Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.DirectorModule_CodeGen.c -2026-03-27T14:05:29.4347272Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.DirectorModule.cpp -2026-03-27T14:05:29.4351777Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.GameCoreModule_CodeGen.c -2026-03-27T14:05:29.4356425Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.GameCoreModule.cpp -2026-03-27T14:05:29.4361096Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.GridModule_CodeGen.c -2026-03-27T14:05:29.4366517Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.GridModule.cpp -2026-03-27T14:05:29.4370566Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.HierarchyCoreModule_CodeGen.c -2026-03-27T14:05:29.4376035Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.HierarchyCoreModule.cpp -2026-03-27T14:05:29.4381905Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ImageConversionModule_CodeGen.c -2026-03-27T14:05:29.4387947Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ImageConversionModule.cpp -2026-03-27T14:05:29.4393223Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.IMGUIModule__1.cpp -2026-03-27T14:05:29.4399273Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.IMGUIModule_CodeGen.c -2026-03-27T14:05:29.4402824Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.IMGUIModule.cpp -2026-03-27T14:05:29.4407820Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputForUIModule_CodeGen.c -2026-03-27T14:05:29.4412586Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputForUIModule.cpp -2026-03-27T14:05:29.4417490Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputLegacyModule_CodeGen.c -2026-03-27T14:05:29.4422213Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputLegacyModule.cpp -2026-03-27T14:05:29.4427271Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputModule_CodeGen.c -2026-03-27T14:05:29.4432213Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.InputModule.cpp -2026-03-27T14:05:29.4436875Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.MultiplayerModule_CodeGen.c -2026-03-27T14:05:29.4441889Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.MultiplayerModule.cpp -2026-03-27T14:05:29.4447315Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ParticleSystemModule_CodeGen.c -2026-03-27T14:05:29.4452779Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ParticleSystemModule.cpp -2026-03-27T14:05:29.4457350Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.Physics2DModule_CodeGen.c -2026-03-27T14:05:29.4461676Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.Physics2DModule.cpp -2026-03-27T14:05:29.4466339Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.PhysicsModule_CodeGen.c -2026-03-27T14:05:29.4471035Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.PhysicsModule.cpp -2026-03-27T14:05:29.4475759Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.PropertiesModule_CodeGen.c -2026-03-27T14:05:29.4480539Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.PropertiesModule.cpp -2026-03-27T14:05:29.4485297Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ScreenCaptureModule_CodeGen.c -2026-03-27T14:05:29.4490239Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.ScreenCaptureModule.cpp -2026-03-27T14:05:29.4494997Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SharedInternalsModule_CodeGen.c -2026-03-27T14:05:29.4500449Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SharedInternalsModule.cpp -2026-03-27T14:05:29.4504403Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SpriteShapeModule_CodeGen.c -2026-03-27T14:05:29.4509090Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SpriteShapeModule.cpp -2026-03-27T14:05:29.4513796Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SubsystemsModule_CodeGen.c -2026-03-27T14:05:29.4518620Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.SubsystemsModule.cpp -2026-03-27T14:05:29.4523288Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TerrainModule_CodeGen.c -2026-03-27T14:05:29.4528127Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TerrainModule.cpp -2026-03-27T14:05:29.4532762Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreFontEngineModule_CodeGen.c -2026-03-27T14:05:29.4539130Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreFontEngineModule.cpp -2026-03-27T14:05:29.4543812Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule__1.cpp -2026-03-27T14:05:29.4548513Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule__2.cpp -2026-03-27T14:05:29.4553389Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule__3.cpp -2026-03-27T14:05:29.4558112Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule_CodeGen.c -2026-03-27T14:05:29.4562743Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextCoreTextEngineModule.cpp -2026-03-27T14:05:29.4567694Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextRenderingModule_CodeGen.c -2026-03-27T14:05:29.4572298Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TextRenderingModule.cpp -2026-03-27T14:05:29.4576849Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TilemapModule_CodeGen.c -2026-03-27T14:05:29.4581484Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.TilemapModule.cpp -2026-03-27T14:05:29.4586359Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI__1.cpp -2026-03-27T14:05:29.4591747Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI__2.cpp -2026-03-27T14:05:29.4596959Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI__3.cpp -2026-03-27T14:05:29.4600909Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI_CodeGen.c -2026-03-27T14:05:29.4605728Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UI.cpp -2026-03-27T14:05:29.4612611Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__1.cpp -2026-03-27T14:05:29.4617379Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__10.cpp -2026-03-27T14:05:29.4622190Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__11.cpp -2026-03-27T14:05:29.4626820Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__12.cpp -2026-03-27T14:05:29.4631485Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__13.cpp -2026-03-27T14:05:29.4636465Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__14.cpp -2026-03-27T14:05:29.4640789Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__15.cpp -2026-03-27T14:05:29.4645200Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__16.cpp -2026-03-27T14:05:29.4650498Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__17.cpp -2026-03-27T14:05:29.4655110Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__18.cpp -2026-03-27T14:05:29.4659575Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__19.cpp -2026-03-27T14:05:29.4663962Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__2.cpp -2026-03-27T14:05:29.4668438Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__20.cpp -2026-03-27T14:05:29.4672909Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__21.cpp -2026-03-27T14:05:29.4677601Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__22.cpp -2026-03-27T14:05:29.4682073Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__3.cpp -2026-03-27T14:05:29.4687545Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__4.cpp -2026-03-27T14:05:29.4692865Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__5.cpp -2026-03-27T14:05:29.4700435Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__6.cpp -2026-03-27T14:05:29.4703187Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__7.cpp -2026-03-27T14:05:29.4708201Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__8.cpp -2026-03-27T14:05:29.4713120Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule__9.cpp -2026-03-27T14:05:29.4718184Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule_CodeGen.c -2026-03-27T14:05:29.4722724Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIElementsModule.cpp -2026-03-27T14:05:29.4728172Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIModule_CodeGen.c -2026-03-27T14:05:29.4733051Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UIModule.cpp -2026-03-27T14:05:29.4738009Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityAnalyticsCommonModule_CodeGen.c -2026-03-27T14:05:29.4742254Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityAnalyticsCommonModule.cpp -2026-03-27T14:05:29.4747195Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityConsentModule_CodeGen.c -2026-03-27T14:05:29.4751329Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityConsentModule.cpp -2026-03-27T14:05:29.4756741Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityWebRequestModule_CodeGen.c -2026-03-27T14:05:29.4762069Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.UnityWebRequestModule.cpp -2026-03-27T14:05:29.4767207Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.VFXModule_CodeGen.c -2026-03-27T14:05:29.4773654Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.VFXModule.cpp -2026-03-27T14:05:29.4779244Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.VideoModule_CodeGen.c -2026-03-27T14:05:29.4785505Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.VideoModule.cpp -2026-03-27T14:05:29.4790552Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.WindowsGamesModule_CodeGen.c -2026-03-27T14:05:29.4795877Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.WindowsGamesModule.cpp -2026-03-27T14:05:29.4803062Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.XRModule_CodeGen.c -2026-03-27T14:05:29.4808824Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\GeneratedCpp\UnityEngine.XRModule.cpp -2026-03-27T14:05:29.4819112Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\Data -2026-03-27T14:05:29.4827575Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\baselib.dll -2026-03-27T14:05:29.4832501Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\concrt140.dll -2026-03-27T14:05:29.4838210Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\GameChat2.dll -2026-03-27T14:05:29.4843664Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\GameOS.Xvd -2026-03-27T14:05:29.4849682Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\IntegrationTest6000.3.8f1.exe -2026-03-27T14:05:29.4857072Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\libHttpClient.GDK.dll -2026-03-27T14:05:29.4870567Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\Logo.png -2026-03-27T14:05:29.4880831Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\MicrosoftGame.Config -2026-03-27T14:05:29.4887531Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140_1.dll -2026-03-27T14:05:29.4894278Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140_2.dll -2026-03-27T14:05:29.4899825Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140_atomic_wait.dll -2026-03-27T14:05:29.4904210Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140_codecvt_ids.dll -2026-03-27T14:05:29.4910089Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\msvcp140.dll -2026-03-27T14:05:29.4916141Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\SmallLogo.png -2026-03-27T14:05:29.4920954Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\SplashScreen.png -2026-03-27T14:05:29.4926687Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\StoreLogo.png -2026-03-27T14:05:29.4932771Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\vccorlib140.dll -2026-03-27T14:05:29.4938434Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\vcruntime140_1.dll -2026-03-27T14:05:29.4942976Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\vcruntime140_threads.dll -2026-03-27T14:05:29.4948183Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\vcruntime140.dll -2026-03-27T14:05:29.4953738Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\XCurl.dll -2026-03-27T14:05:29.4964570Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\Data -2026-03-27T14:05:29.4973269Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\baselib_GameCoreScarlett_master.pdb -2026-03-27T14:05:29.4978461Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\GameChat2.pdb -2026-03-27T14:05:29.4983821Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\GameCoreScarlettPlayerNoDevelopment_Master.pdb -2026-03-27T14:05:29.4989129Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\libHttpClient.GDK.pdb -2026-03-27T14:05:29.4994464Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Symbols\XCurl.pdb -2026-03-27T14:05:29.5168094Z -2026-03-27T14:05:29.5168452Z Unity-generated MicrosoftGame.config: -2026-03-27T14:05:29.5220869Z -2026-03-27T14:05:29.5222312Z -2026-03-27T14:05:29.5223478Z -2026-03-27T14:05:29.5225598Z -2026-03-27T14:05:29.5227093Z -2026-03-27T14:05:29.5227948Z -2026-03-27T14:05:29.5228696Z -2026-03-27T14:05:29.5229693Z -2026-03-27T14:05:29.5231303Z -2026-03-27T14:05:29.8714405Z ##[group]Run $buildDir = "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build" -2026-03-27T14:05:29.8715605Z $buildDir = "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-unity/samples/IntegrationTest6000.3.8f1/Build" -2026-03-27T14:05:29.8716455Z $exe = Get-ChildItem -Path $buildDir -Filter "*.exe" -Recurse | Select-Object -First 1 -2026-03-27T14:05:29.8716916Z if (-not $exe) { -2026-03-27T14:05:29.8717170Z  throw "No .exe found in build output" -2026-03-27T14:05:29.8717449Z } -2026-03-27T14:05:29.8717694Z Write-Host "Packaging executable: $($exe.FullName)" -2026-03-27T14:05:29.8718332Z & "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-xbox/test/packaging/build-package.ps1" ` -2026-03-27T14:05:29.8718924Z  -ExecutablePath $exe.FullName ` -2026-03-27T14:05:29.8719508Z  -PackageDirectory "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/unity-xbox-package" ` -2026-03-27T14:05:29.8720319Z  -ConfigDirectory "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/sentry-xbox/unity/packaging" -2026-03-27T14:05:29.8813561Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" -2026-03-27T14:05:29.8813883Z env: -2026-03-27T14:05:29.8814224Z GH_TOKEN: *** -2026-03-27T14:05:29.8814395Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T14:05:29.8814668Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T14:05:29.8814962Z GDK_VERSION: 250400 -2026-03-27T14:05:29.8815365Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T14:05:29.8816028Z SENTRY_AUTH_TOKEN: *** -2026-03-27T14:05:29.8816218Z ##[endgroup] -2026-03-27T14:05:30.4184701Z Packaging executable: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\IntegrationTest6000.3.8f1.exe -2026-03-27T14:05:30.4647086Z Building Xbox package... -2026-03-27T14:05:30.4695403Z Executable: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\IntegrationTest6000.3.8f1.exe -2026-03-27T14:05:30.4705911Z Source: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose -2026-03-27T14:05:30.4708096Z Output: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/unity-xbox-package -2026-03-27T14:05:30.4758829Z Using executable: IntegrationTest6000.3.8f1.exe -2026-03-27T14:05:30.4792581Z Keeping existing MicrosoftGame.config from build output -2026-03-27T14:05:30.4971232Z Copied layout.xml to source directory -2026-03-27T14:05:30.4978833Z Keeping existing StoreLogo.png from build output -2026-03-27T14:05:30.4985071Z Keeping existing Logo.png from build output -2026-03-27T14:05:30.4991486Z Keeping existing SmallLogo.png from build output -2026-03-27T14:05:30.4997855Z Keeping existing SplashScreen.png from build output -2026-03-27T14:05:30.5020411Z Running MakePkg... -2026-03-27T14:05:30.6071971Z Making package from 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\layout.xml' -2026-03-27T14:05:30.6075072Z [2026-03-27_14:05:30:593] PACKAGING START -2026-03-27T14:05:30.6284315Z No GameOS file specified with /gameos switch. Defaulting to C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\samples\IntegrationTest6000.3.8f1\Build\test\Loose\gameos.xvd -2026-03-27T14:05:30.6686808Z Warning: Skipping file '.\GameOS.Xvd' in chunk '1000' because it matches the Game OS for this title and should not be located in a chunk. -2026-03-27T14:05:30.6749380Z [2026-03-27_14:05:30:673] FILE LAYOUT GENERATION START -2026-03-27T14:05:30.6783867Z Marking '1000' as launch chunk -2026-03-27T14:05:30.6855827Z [2026-03-27_14:05:30:684] FILE LAYOUT GENERATION END : 00:00:00:016 -2026-03-27T14:05:30.6858304Z [2026-03-27_14:05:30:684] FILE COPY START -2026-03-27T14:05:30.6858624Z Generating container... -2026-03-27T14:05:35.0627417Z Preparing Container... -2026-03-27T14:05:35.0629781Z Copied 0 % -2026-03-27T14:05:35.0634483Z Copied 5 % -2026-03-27T14:05:35.0648952Z Copied 6 % -2026-03-27T14:05:35.0661220Z Copied 7 % -2026-03-27T14:05:35.0840820Z Copied 11 % -2026-03-27T14:05:35.0854473Z Copied 92 % -2026-03-27T14:05:35.0863554Z Copied 95 % -2026-03-27T14:05:35.0875296Z Copied 96 % -2026-03-27T14:05:35.0896083Z Copied 97 % -2026-03-27T14:05:35.0901686Z Copied 98 % -2026-03-27T14:05:35.2418660Z Copied 99 % -2026-03-27T14:05:35.2418972Z [2026-03-27_14:05:35:239] FILE COPY END : 00:00:04:547 -2026-03-27T14:05:35.3050613Z [2026-03-27_14:05:35:304] XVC ENCRYPTION START -2026-03-27T14:05:35.3056351Z Encrypting package 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\clear.IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xvc' -2026-03-27T14:05:36.6467578Z Encrypted 0 % -2026-03-27T14:05:36.6540377Z Encrypted 3 % -2026-03-27T14:05:36.6595765Z Encrypted 4 % -2026-03-27T14:05:36.6599435Z Encrypted 8 % -2026-03-27T14:05:36.6609302Z Encrypted 11 % -2026-03-27T14:05:36.6609959Z Encrypted 13 % -2026-03-27T14:05:36.6610160Z Encrypted 16 % -2026-03-27T14:05:36.6869213Z Encrypted 17 % -2026-03-27T14:05:36.6885238Z Encrypted 21 % -2026-03-27T14:05:36.6885840Z Encrypted 24 % -2026-03-27T14:05:36.6893612Z Encrypted 28 % -2026-03-27T14:05:36.7039632Z Encrypted 31 % -2026-03-27T14:05:36.7126944Z Encrypted 35 % -2026-03-27T14:05:36.7184991Z Encrypted 38 % -2026-03-27T14:05:36.7252444Z Encrypted 42 % -2026-03-27T14:05:36.7308332Z Encrypted 45 % -2026-03-27T14:05:36.7375617Z Encrypted 49 % -2026-03-27T14:05:36.7441687Z Encrypted 53 % -2026-03-27T14:05:36.7499894Z Encrypted 56 % -2026-03-27T14:05:36.8070166Z Encrypted 60 % -2026-03-27T14:05:36.8127197Z Encrypted 63 % -2026-03-27T14:05:36.8839914Z Encrypted 67 % -2026-03-27T14:05:36.8894506Z Encrypted 70 % -2026-03-27T14:05:36.8964228Z Encrypted 74 % -2026-03-27T14:05:36.9129427Z Encrypted 78 % -2026-03-27T14:05:36.9192813Z Encrypted 81 % -2026-03-27T14:05:36.9264759Z Encrypted 85 % -2026-03-27T14:05:36.9318804Z Encrypted 88 % -2026-03-27T14:05:36.9348178Z Encrypted 92 % -2026-03-27T14:05:36.9403874Z Encrypted 93 % -2026-03-27T14:05:36.9450728Z Encrypted 95 % -2026-03-27T14:05:36.9464983Z Encrypted 96 % -2026-03-27T14:05:36.9504342Z Encrypted 97 % -2026-03-27T14:05:36.9521674Z Encrypted 98 % -2026-03-27T14:05:36.9543161Z Encrypted 99 % -2026-03-27T14:05:37.1078637Z Encrypted 100 % -2026-03-27T14:05:37.1650107Z [2026-03-27_14:05:37:162] XVC ENCRYPTION END : 00:00:01:859 -2026-03-27T14:05:37.1654340Z [2026-03-27_14:05:37:163] TOC GENERATION START -2026-03-27T14:05:37.1758750Z [2026-03-27_14:05:37:174] TOC GENERATION END : 00:00:00:000 -2026-03-27T14:05:37.1772296Z Skipping packaging validation step. -2026-03-27T14:05:37.1773078Z Successfully created package 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xvc' -2026-03-27T14:05:37.1773857Z ContentId is '{734DD866-00FC-A8D8-6E42-A845B3306A25}' -2026-03-27T14:05:37.1774176Z ProductId is '{00000000-0000-0000-0000-000000000000}' -2026-03-27T14:05:37.1782972Z Total size of all 'launch set' chunks = 36360192 bytes -2026-03-27T14:05:37.1789227Z See the Submission Validator log file at 'C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\Validator_IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xml' for details about per device minimum and maximum sizes for the launch set. -2026-03-27T14:05:37.1790505Z [2026-03-27_14:05:37:177] PACKAGING END: 00:00:06:578 -2026-03-27T14:05:37.1926773Z ✅ Package built successfully! -2026-03-27T14:05:37.1939871Z Package: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xvc -2026-03-27T14:05:37.2025008Z Size: 367.51 MB -2026-03-27T14:05:37.2037755Z C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\unity-xbox-package\IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe_xs.xvc -2026-03-27T14:05:37.5878129Z ##[group]Run "XBCONNECT_TARGET=$($env:DEVKIT_Scarlett_IP)" | Out-File -FilePath $env:GITHUB_ENV -Append -2026-03-27T14:05:37.5879002Z "XBCONNECT_TARGET=$($env:DEVKIT_Scarlett_IP)" | Out-File -FilePath $env:GITHUB_ENV -Append -2026-03-27T14:05:37.5979619Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" -2026-03-27T14:05:37.5979968Z env: -2026-03-27T14:05:37.5980302Z GH_TOKEN: *** -2026-03-27T14:05:37.5980478Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T14:05:37.5980783Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T14:05:37.5981111Z GDK_VERSION: 250400 -2026-03-27T14:05:37.5981547Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T14:05:37.5982314Z SENTRY_AUTH_TOKEN: *** -2026-03-27T14:05:37.5982521Z ##[endgroup] -2026-03-27T14:05:38.3928159Z ##[group]Run $result = Invoke-Pester -Path test/IntegrationTest/Integration.Tests.ps1 -PassThru -2026-03-27T14:05:38.3928957Z $result = Invoke-Pester -Path test/IntegrationTest/Integration.Tests.ps1 -PassThru -2026-03-27T14:05:38.3929435Z $result.TotalCount | Should -BeGreaterThan 0 -2026-03-27T14:05:38.3929765Z $result.FailedCount | Should -Be 0 -2026-03-27T14:05:38.4024106Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" -2026-03-27T14:05:38.4024529Z env: -2026-03-27T14:05:38.4024858Z GH_TOKEN: *** -2026-03-27T14:05:38.4025030Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T14:05:38.4025297Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T14:05:38.4025595Z GDK_VERSION: 250400 -2026-03-27T14:05:38.4026059Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T14:05:38.4026714Z SENTRY_AUTH_TOKEN: *** -2026-03-27T14:05:38.4026938Z XBCONNECT_TARGET: 10.2.1.54 -2026-03-27T14:05:38.4027153Z SENTRY_TEST_PLATFORM: Xbox -2026-03-27T14:05:38.4027621Z SENTRY_TEST_APP: C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/unity-xbox-package -2026-03-27T14:05:38.4028046Z ##[endgroup] -2026-03-27T14:05:40.1679568Z  -2026-03-27T14:05:40.1679857Z Starting discovery in 1 files. -2026-03-27T14:05:41.6618090Z Discovery found 57 tests in 1.48s. -2026-03-27T14:05:41.6912805Z Running tests. -2026-03-27T14:06:41.9848900Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (60s elapsed, ~59 minute(s) remaining)... -2026-03-27T14:07:41.9955800Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (120s elapsed, ~58 minute(s) remaining)... -2026-03-27T14:08:42.0051757Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (180s elapsed, ~57 minute(s) remaining)... -2026-03-27T14:09:42.0190098Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (240s elapsed, ~56 minute(s) remaining)... -2026-03-27T14:10:42.0279058Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (300s elapsed, ~55 minute(s) remaining)... -2026-03-27T14:11:42.0413063Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (360s elapsed, ~54 minute(s) remaining)... -2026-03-27T14:12:42.0485191Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (420s elapsed, ~53 minute(s) remaining)... -2026-03-27T14:13:42.0635156Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (480s elapsed, ~52 minute(s) remaining)... -2026-03-27T14:14:42.0692364Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (540s elapsed, ~51 minute(s) remaining)... -2026-03-27T14:15:42.0827974Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (600s elapsed, ~50 minute(s) remaining)... -2026-03-27T14:16:42.0897745Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (660s elapsed, ~49 minute(s) remaining)... -2026-03-27T14:17:42.1039732Z WARNING: Still waiting for exclusive access to 'Xbox-Default' (720s elapsed, ~48 minute(s) remaining)... -2026-03-27T14:18:38.1649480Z Uninstalling existing package: IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe -2026-03-27T14:18:40.0892807Z Installing package to Xbox... -2026-03-27T14:18:52.9918511Z Verifying package installation... -2026-03-27T14:18:54.0741318Z Package verified to be installed on device: IntegrationTest6000.3.8f1_1.0.0.0_neutral__8wekyb3d8bbwe -2026-03-27T14:18:54.1359973Z Using AUMID: IntegrationTest6000.3.8f1_8wekyb3d8bbwe!Game -2026-03-27T14:18:54.1712922Z Running message-capture... -2026-03-27T14:18:54.8875330Z ##[group]Run log -2026-03-27T14:19:00.7587881Z ##[endgroup] -2026-03-27T14:19:00.7651269Z WARNING: Xbox app exited with code 1 — the log file may not have been created. -2026-03-27T14:19:31.8785546Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState -2026-03-27T14:19:33.8025298Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:19:33.8027631Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:33.8028068Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:33.8028448Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:33.8028938Z Started : Fri, Mar 27, 2026 15:19:33 -2026-03-27T14:19:33.8029317Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState -2026-03-27T14:19:33.8030329Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState -2026-03-27T14:19:33.8031159Z Files : * -2026-03-27T14:19:33.8031323Z Exc dirs : -2026-03-27T14:19:33.8031476Z Exc files : -2026-03-27T14:19:33.8040567Z Options : /mirror -2026-03-27T14:19:33.8040908Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:33.8041326Z Status % Done Size U Path -2026-03-27T14:19:33.8041708Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:33.8042223Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:33.8042665Z Total Copied Skipped Failed -2026-03-27T14:19:33.8043030Z Files : 0 0 0 0 -2026-03-27T14:19:33.8043380Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:33.8043703Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:33.8043982Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:33.8044265Z Ended : Fri, Mar 27, 2026 15:19:33 -2026-03-27T14:19:33.8045038Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:33.8045840Z WARNING: === End of original output. === -2026-03-27T14:19:33.8245398Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:19:33.8253277Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState -2026-03-27T14:19:35.7397907Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:19:35.7400785Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:35.7401361Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:35.7401749Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:35.7402132Z Started : Fri, Mar 27, 2026 15:19:35 -2026-03-27T14:19:35.7402535Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState -2026-03-27T14:19:35.7405304Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState -2026-03-27T14:19:35.7406428Z Files : * -2026-03-27T14:19:35.7406611Z Exc dirs : -2026-03-27T14:19:35.7407176Z Exc files : -2026-03-27T14:19:35.7407461Z Options : /mirror -2026-03-27T14:19:35.7407799Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:35.7408218Z Status % Done Size U Path -2026-03-27T14:19:35.7408599Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:35.7409163Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:35.7409599Z Total Copied Skipped Failed -2026-03-27T14:19:35.7409935Z Files : 0 0 0 0 -2026-03-27T14:19:35.7410271Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:35.7410588Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:35.7410855Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:35.7411155Z Ended : Fri, Mar 27, 2026 15:19:35 -2026-03-27T14:19:35.7411639Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:35.7413025Z WARNING: === End of original output. === -2026-03-27T14:19:35.7418371Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:19:35.7423957Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState -2026-03-27T14:19:37.8424144Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:19:37.8426139Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:37.8426638Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:37.8427095Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:37.8427545Z Started : Fri, Mar 27, 2026 15:19:37 -2026-03-27T14:19:37.8427959Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState -2026-03-27T14:19:37.8429082Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState -2026-03-27T14:19:37.8430086Z Files : * -2026-03-27T14:19:37.8430255Z Exc dirs : -2026-03-27T14:19:37.8430416Z Exc files : -2026-03-27T14:19:37.8430589Z Options : /mirror -2026-03-27T14:19:37.8430950Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:37.8431382Z Status % Done Size U Path -2026-03-27T14:19:37.8431769Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:37.8432342Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:37.8432790Z Total Copied Skipped Failed -2026-03-27T14:19:37.8433120Z Files : 0 0 0 0 -2026-03-27T14:19:37.8433547Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:37.8433844Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:37.8434115Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:37.8435174Z Ended : Fri, Mar 27, 2026 15:19:37 -2026-03-27T14:19:37.8435719Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:37.8436371Z WARNING: === End of original output. === -2026-03-27T14:19:37.8442275Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:19:37.8451877Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState -2026-03-27T14:19:39.1618472Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:19:39.1620337Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:39.1620791Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:39.1621167Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:39.1622459Z Started : Fri, Mar 27, 2026 15:19:39 -2026-03-27T14:19:39.1622904Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState -2026-03-27T14:19:39.1623925Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState -2026-03-27T14:19:39.1624777Z Files : * -2026-03-27T14:19:39.1624955Z Exc dirs : -2026-03-27T14:19:39.1625105Z Exc files : -2026-03-27T14:19:39.1625274Z Options : /mirror -2026-03-27T14:19:39.1625610Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:39.1626030Z Status % Done Size U Path -2026-03-27T14:19:39.1626413Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:39.1626947Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:39.1627396Z Total Copied Skipped Failed -2026-03-27T14:19:39.1627746Z Files : 0 0 0 0 -2026-03-27T14:19:39.1628105Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:39.1628426Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:39.1628722Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:39.1628995Z Ended : Fri, Mar 27, 2026 15:19:39 -2026-03-27T14:19:39.1629500Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:39.1630193Z WARNING: === End of original output. === -2026-03-27T14:19:39.1636198Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:19:39.1641391Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp -2026-03-27T14:19:40.4674654Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:19:40.4676622Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:40.4677933Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:40.4678414Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:40.4678897Z Started : Fri, Mar 27, 2026 15:19:40 -2026-03-27T14:19:40.4679304Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp -2026-03-27T14:19:40.4680287Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp -2026-03-27T14:19:40.4681097Z Files : * -2026-03-27T14:19:40.4681255Z Exc dirs : -2026-03-27T14:19:40.4681405Z Exc files : -2026-03-27T14:19:40.4681562Z Options : /mirror -2026-03-27T14:19:40.4681879Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:40.4682280Z Status % Done Size U Path -2026-03-27T14:19:40.4682655Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:40.4683249Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:40.4683667Z Total Copied Skipped Failed -2026-03-27T14:19:40.4684882Z Files : 0 0 0 0 -2026-03-27T14:19:40.4685247Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:40.4685580Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:40.4685944Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:40.4686205Z Ended : Fri, Mar 27, 2026 15:19:40 -2026-03-27T14:19:40.4686684Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:40.4687381Z WARNING: === End of original output. === -2026-03-27T14:19:40.4693042Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp (Command (xbcopy) failed with exit code 2) -2026-03-27T14:19:40.4700435Z Trying to retrieve log from: D:\Logs -2026-03-27T14:19:41.8029101Z Copied files: SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) SentryPlayground.log (79366 bytes) SentryTower.log (96101 bytes) -2026-03-27T14:19:41.8037117Z Trying to retrieve log from: T: -2026-03-27T14:19:43.6266488Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xT:\" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/T_" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:19:43.6267735Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.6268178Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:43.6268547Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.6268929Z Started : Fri, Mar 27, 2026 15:19:43 -2026-03-27T14:19:43.6269148Z Source : xT:\ -2026-03-27T14:19:43.6269672Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/message-capture/T_ -2026-03-27T14:19:43.6270249Z Files : * -2026-03-27T14:19:43.6270402Z Exc dirs : -2026-03-27T14:19:43.6270543Z Exc files : -2026-03-27T14:19:43.6272317Z Options : /mirror -2026-03-27T14:19:43.6272703Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.6273087Z Status % Done Size U Path -2026-03-27T14:19:43.6273452Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.6273950Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.6274368Z Total Copied Skipped Failed -2026-03-27T14:19:43.6274698Z Files : 1 0 1 0 -2026-03-27T14:19:43.6275028Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B -2026-03-27T14:19:43.6275335Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:43.6275613Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:43.6275880Z Ended : Fri, Mar 27, 2026 15:19:43 -2026-03-27T14:19:43.6276529Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. -2026-03-27T14:19:43.6277341Z WARNING: === End of original output. === -2026-03-27T14:19:43.6279096Z Not found at T: (Command (xbcopy) failed with exit code 2) -2026-03-27T14:19:43.6280923Z WARNING: Log file not found at any candidate path. Listing directories for diagnostics: -2026-03-27T14:19:43.6287888Z ##[group]Xbox directory diagnostics -2026-03-27T14:19:43.6294677Z -2026-03-27T14:19:43.6294916Z --- D:\ root --- -2026-03-27T14:19:43.6308800Z Listing xD:\ -2026-03-27T14:19:43.7327865Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.7332681Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:43.7338294Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.7342678Z -2026-03-27T14:19:43.7346809Z Started : Fri, Mar 27, 2026 15:19:43 -2026-03-27T14:19:43.7351299Z Source : xD:\ -2026-03-27T14:19:43.7355420Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005 -2026-03-27T14:19:43.7359757Z -2026-03-27T14:19:43.7363852Z Files : * -2026-03-27T14:19:43.7368060Z -2026-03-27T14:19:43.7372157Z Exc dirs : -2026-03-27T14:19:43.7376069Z -2026-03-27T14:19:43.7380103Z Exc files : -2026-03-27T14:19:43.7384098Z -2026-03-27T14:19:43.7388106Z Options : /mirror -2026-03-27T14:19:43.7392030Z -2026-03-27T14:19:43.7396276Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.7400630Z Status % Done Size U Path -2026-03-27T14:19:43.7407107Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.7410600Z -2026-03-27T14:19:43.7415470Z [BEGIN] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullException.dmp -2026-03-27T14:19:43.7420056Z [COPYING] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullException.dmp -2026-03-27T14:19:43.7424624Z [COPYING] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullException.dmp -2026-03-27T14:19:43.7429192Z [DONE] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullException.dmp -2026-03-27T14:19:43.7433779Z [BEGIN] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullExceptionLogFile.txt -2026-03-27T14:19:43.7438319Z [COPYING] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullExceptionLogFile.txt -2026-03-27T14:19:43.7443642Z [COPYING] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullExceptionLogFile.txt -2026-03-27T14:19:43.7447665Z [DONE] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\FullExceptionLogFile.txt -2026-03-27T14:19:43.7451340Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stderr.txt -2026-03-27T14:19:43.7455838Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stderr.txt -2026-03-27T14:19:43.7460367Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stderr.txt -2026-03-27T14:19:43.7464904Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stderr.txt -2026-03-27T14:19:43.7469471Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stdout.txt -2026-03-27T14:19:43.7474085Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stdout.txt -2026-03-27T14:19:43.7478553Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stdout.txt -2026-03-27T14:19:43.7483193Z [BEGIN] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:19:43.7488049Z [COPYING] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:19:43.7492605Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\latest_stdout.txt -2026-03-27T14:19:43.7497192Z [COPYING] 67.43 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:19:43.7501477Z [COPYING] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:19:43.7505970Z [DONE] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-py15lcv5.005\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:19:43.7510353Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.7514655Z -2026-03-27T14:19:43.7518890Z Total Copied Skipped Failed -2026-03-27T14:19:43.7523159Z Files : 5 5 0 0 -2026-03-27T14:19:43.7527540Z Size : 854.24 KB 854.24 KB 0.00 B 0.00 B -2026-03-27T14:19:43.7531478Z -2026-03-27T14:19:43.7535686Z Speed : 28217612.90 Bytes/sec. -2026-03-27T14:19:43.7539847Z Speed : 26.91 MegaBytes/sec. -2026-03-27T14:19:43.7544016Z Ended : Fri, Mar 27, 2026 15:19:43 -2026-03-27T14:19:43.7548191Z -2026-03-27T14:19:43.7552567Z Result : Operation completed successfully -2026-03-27T14:19:43.7678028Z Contents: -2026-03-27T14:19:43.7698470Z \FullException.dmp (97125 bytes) -2026-03-27T14:19:43.7705691Z \FullExceptionLogFile.txt (44 bytes) -2026-03-27T14:19:43.7711828Z \latest_stderr.txt (0 bytes) -2026-03-27T14:19:43.7716423Z \latest_stdout.txt (0 bytes) -2026-03-27T14:19:43.7721040Z \unreal-v0-2025.10.10-01.48.52.dmp (777577 bytes) -2026-03-27T14:19:43.7919515Z -2026-03-27T14:19:43.7919768Z --- D:\DevelopmentFiles\ --- -2026-03-27T14:19:43.7926085Z Listing xD:\DevelopmentFiles\ -2026-03-27T14:19:43.8769787Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.8773974Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:43.8778105Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.8782667Z -2026-03-27T14:19:43.8786009Z Started : Fri, Mar 27, 2026 15:19:43 -2026-03-27T14:19:43.8789934Z Source : xD:\DevelopmentFiles\ -2026-03-27T14:19:43.8797125Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-e0lu3ujt.icb -2026-03-27T14:19:43.8800817Z -2026-03-27T14:19:43.8805261Z Files : * -2026-03-27T14:19:43.8809537Z -2026-03-27T14:19:43.8813645Z Exc dirs : -2026-03-27T14:19:43.8817715Z -2026-03-27T14:19:43.8821993Z Exc files : -2026-03-27T14:19:43.8827301Z -2026-03-27T14:19:43.8831573Z Options : /mirror -2026-03-27T14:19:43.8835760Z -2026-03-27T14:19:43.8840216Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.8844259Z Status % Done Size U Path -2026-03-27T14:19:43.8848698Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.8852736Z -2026-03-27T14:19:43.8856930Z -2026-03-27T14:19:43.8861444Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:43.8865656Z -2026-03-27T14:19:43.8870119Z Total Copied Skipped Failed -2026-03-27T14:19:43.8874249Z Files : 0 0 0 0 -2026-03-27T14:19:43.8877895Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:43.8881404Z -2026-03-27T14:19:43.8885011Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:43.8889113Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:43.8892718Z Ended : Fri, Mar 27, 2026 15:19:43 -2026-03-27T14:19:43.8896259Z -2026-03-27T14:19:43.8899933Z Result : No files were found -2026-03-27T14:19:43.9148995Z -2026-03-27T14:19:43.9149387Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ --- -2026-03-27T14:19:43.9155873Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ -2026-03-27T14:19:44.0047455Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.0053958Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:44.0060522Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.0064660Z -2026-03-27T14:19:44.0068914Z Started : Fri, Mar 27, 2026 15:19:43 -2026-03-27T14:19:44.0073266Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ -2026-03-27T14:19:44.0077369Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qqsizpmt.utq -2026-03-27T14:19:44.0081543Z -2026-03-27T14:19:44.0085559Z Files : * -2026-03-27T14:19:44.0089499Z -2026-03-27T14:19:44.0093421Z Exc dirs : -2026-03-27T14:19:44.0097692Z -2026-03-27T14:19:44.0102089Z Exc files : -2026-03-27T14:19:44.0105971Z -2026-03-27T14:19:44.0110227Z Options : /mirror -2026-03-27T14:19:44.0114356Z -2026-03-27T14:19:44.0118136Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.0121607Z Status % Done Size U Path -2026-03-27T14:19:44.0125383Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.0128841Z -2026-03-27T14:19:44.0133859Z -2026-03-27T14:19:44.0137207Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.0140620Z -2026-03-27T14:19:44.0144547Z Total Copied Skipped Failed -2026-03-27T14:19:44.0148427Z Files : 0 0 0 0 -2026-03-27T14:19:44.0171207Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:44.0174305Z -2026-03-27T14:19:44.0178078Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:44.0182394Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:44.0186830Z Ended : Fri, Mar 27, 2026 15:19:43 -2026-03-27T14:19:44.0191068Z -2026-03-27T14:19:44.0195803Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:44.0201200Z -2026-03-27T14:19:44.0436448Z -2026-03-27T14:19:44.0436907Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ --- -2026-03-27T14:19:44.0443878Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ -2026-03-27T14:19:44.1320967Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.1328510Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:44.1333798Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.1338220Z -2026-03-27T14:19:44.1345431Z Started : Fri, Mar 27, 2026 15:19:44 -2026-03-27T14:19:44.1350098Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ -2026-03-27T14:19:44.1353706Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-z4jtdt3n.aec -2026-03-27T14:19:44.1357180Z -2026-03-27T14:19:44.1361144Z Files : * -2026-03-27T14:19:44.1364962Z -2026-03-27T14:19:44.1368611Z Exc dirs : -2026-03-27T14:19:44.1372857Z -2026-03-27T14:19:44.1377439Z Exc files : -2026-03-27T14:19:44.1380974Z -2026-03-27T14:19:44.1384619Z Options : /mirror -2026-03-27T14:19:44.1388123Z -2026-03-27T14:19:44.1391849Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.1395278Z Status % Done Size U Path -2026-03-27T14:19:44.1398947Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.1402593Z -2026-03-27T14:19:44.1406175Z -2026-03-27T14:19:44.1411985Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.1418184Z -2026-03-27T14:19:44.1422137Z Total Copied Skipped Failed -2026-03-27T14:19:44.1426181Z Files : 0 0 0 0 -2026-03-27T14:19:44.1429832Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:44.1433326Z -2026-03-27T14:19:44.1436972Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:44.1440562Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:44.1445483Z Ended : Fri, Mar 27, 2026 15:19:44 -2026-03-27T14:19:44.1449784Z -2026-03-27T14:19:44.1454084Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:44.1459165Z -2026-03-27T14:19:44.1699803Z -2026-03-27T14:19:44.1700125Z --- D:\Logs\ --- -2026-03-27T14:19:44.1708515Z Listing xD:\Logs\ -2026-03-27T14:19:44.3085091Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.3090651Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:44.3094779Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.3098627Z -2026-03-27T14:19:44.3102547Z Started : Fri, Mar 27, 2026 15:19:44 -2026-03-27T14:19:44.3106485Z Source : xD:\Logs\ -2026-03-27T14:19:44.3110535Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu -2026-03-27T14:19:44.3114262Z -2026-03-27T14:19:44.3118139Z Files : * -2026-03-27T14:19:44.3122080Z -2026-03-27T14:19:44.3127855Z Exc dirs : -2026-03-27T14:19:44.3131031Z -2026-03-27T14:19:44.3134897Z Exc files : -2026-03-27T14:19:44.3138751Z -2026-03-27T14:19:44.3143193Z Options : /mirror -2026-03-27T14:19:44.3146967Z -2026-03-27T14:19:44.3151067Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.3154864Z Status % Done Size U Path -2026-03-27T14:19:44.3159459Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.3163837Z -2026-03-27T14:19:44.3168927Z [BEGIN] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:19:44.3172747Z [COPYING] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:19:44.3177097Z [COPYING] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:19:44.3181348Z [DONE] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:19:44.3186055Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:19:44.3190410Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:19:44.3194778Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:19:44.3199521Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:19:44.3204201Z [BEGIN] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:19:44.3208378Z [COPYING] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:19:44.3212358Z [COPYING] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:19:44.3216737Z [DONE] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:19:44.3221052Z [BEGIN] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:19:44.3225394Z [COPYING] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:19:44.3229702Z [COPYING] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:19:44.3233763Z [DONE] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:19:44.3238112Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:19:44.3242487Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:19:44.3247100Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:19:44.3251771Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:19:44.3255332Z [BEGIN] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:19:44.3258875Z [COPYING] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:19:44.3263135Z [COPYING] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:19:44.3267416Z [DONE] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:19:44.3271940Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:19:44.3275535Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:19:44.3279116Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:19:44.3282714Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:19:44.3287626Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:19:44.3290990Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:19:44.3294592Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:19:44.3298919Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:19:44.3303156Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:19:44.3306742Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:19:44.3310350Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:19:44.3313905Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:19:44.3318144Z [BEGIN] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:19:44.3322637Z [COPYING] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:19:44.3326410Z [COPYING] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:19:44.3330532Z [DONE] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:19:44.3333987Z [BEGIN] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground.log -2026-03-27T14:19:44.3339103Z [COPYING] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground.log -2026-03-27T14:19:44.3342790Z [COPYING] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground.log -2026-03-27T14:19:44.3346349Z [DONE] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryPlayground.log -2026-03-27T14:19:44.3349846Z [BEGIN] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryTower.log -2026-03-27T14:19:44.3354565Z [COPYING] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryTower.log -2026-03-27T14:19:44.3358135Z [COPYING] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryTower.log -2026-03-27T14:19:44.3361673Z [DONE] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qciqnhjz.2pu\SentryTower.log -2026-03-27T14:19:44.3365150Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.3369369Z -2026-03-27T14:19:44.3373047Z Total Copied Skipped Failed -2026-03-27T14:19:44.3376599Z Files : 12 12 0 0 -2026-03-27T14:19:44.3380187Z Size : 917.57 KB 917.57 KB 0.00 B 0.00 B -2026-03-27T14:19:44.3384465Z -2026-03-27T14:19:44.3388361Z Speed : 15154645.16 Bytes/sec. -2026-03-27T14:19:44.3392718Z Speed : 14.45 MegaBytes/sec. -2026-03-27T14:19:44.3397149Z Ended : Fri, Mar 27, 2026 15:19:44 -2026-03-27T14:19:44.3401468Z -2026-03-27T14:19:44.3405435Z Result : Operation completed successfully -2026-03-27T14:19:44.3524345Z Contents: -2026-03-27T14:19:44.3532832Z \SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) -2026-03-27T14:19:44.3538575Z \SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) -2026-03-27T14:19:44.3542579Z \SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) -2026-03-27T14:19:44.3546847Z \SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) -2026-03-27T14:19:44.3550869Z \SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) -2026-03-27T14:19:44.3554906Z \SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) -2026-03-27T14:19:44.3558947Z \SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) -2026-03-27T14:19:44.3563012Z \SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) -2026-03-27T14:19:44.3567162Z \SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) -2026-03-27T14:19:44.3570881Z \SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) -2026-03-27T14:19:44.3574650Z \SentryPlayground.log (79366 bytes) -2026-03-27T14:19:44.3578485Z \SentryTower.log (96101 bytes) -2026-03-27T14:19:44.3782993Z -2026-03-27T14:19:44.3783420Z --- T:\ root --- -2026-03-27T14:19:44.3791099Z Listing xT:\ -2026-03-27T14:19:44.9757521Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.9763396Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:44.9767957Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.9771758Z -2026-03-27T14:19:44.9775779Z Started : Fri, Mar 27, 2026 15:19:44 -2026-03-27T14:19:44.9779737Z Source : xT:\ -2026-03-27T14:19:44.9783936Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-xcusc5gr.5ki -2026-03-27T14:19:44.9787786Z -2026-03-27T14:19:44.9791868Z Files : * -2026-03-27T14:19:44.9795979Z -2026-03-27T14:19:44.9800039Z Exc dirs : -2026-03-27T14:19:44.9804058Z -2026-03-27T14:19:44.9808736Z Exc files : -2026-03-27T14:19:44.9812652Z -2026-03-27T14:19:44.9816751Z Options : /mirror -2026-03-27T14:19:44.9821664Z -2026-03-27T14:19:44.9825066Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.9829034Z Status % Done Size U Path -2026-03-27T14:19:44.9833225Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.9837138Z -2026-03-27T14:19:44.9841201Z -2026-03-27T14:19:44.9845404Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:44.9849750Z -2026-03-27T14:19:44.9853978Z Total Copied Skipped Failed -2026-03-27T14:19:44.9858009Z Files : 1 0 1 0 -2026-03-27T14:19:44.9862077Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B -2026-03-27T14:19:44.9868035Z -2026-03-27T14:19:44.9872900Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:44.9879251Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:44.9883661Z Ended : Fri, Mar 27, 2026 15:19:44 -2026-03-27T14:19:44.9887539Z -2026-03-27T14:19:44.9891865Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. -2026-03-27T14:19:44.9896109Z -2026-03-27T14:19:45.0124871Z -2026-03-27T14:19:45.0125118Z --- S:\ root --- -2026-03-27T14:19:45.0134571Z Listing xS:\ -2026-03-27T14:19:45.1002727Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:45.1007458Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:45.1010895Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:45.1014948Z -2026-03-27T14:19:45.1018697Z Started : Fri, Mar 27, 2026 15:19:45 -2026-03-27T14:19:45.1022268Z Source : xS:\ -2026-03-27T14:19:45.1025865Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-f1ddfn0d.e4q -2026-03-27T14:19:45.1029188Z -2026-03-27T14:19:45.1032723Z Files : * -2026-03-27T14:19:45.1036708Z -2026-03-27T14:19:45.1040188Z Exc dirs : -2026-03-27T14:19:45.1043678Z -2026-03-27T14:19:45.1047254Z Exc files : -2026-03-27T14:19:45.1050487Z -2026-03-27T14:19:45.1054034Z Options : /mirror -2026-03-27T14:19:45.1058973Z -2026-03-27T14:19:45.1061163Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:45.1064528Z Status % Done Size U Path -2026-03-27T14:19:45.1068125Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:45.1071449Z -2026-03-27T14:19:45.1074945Z -2026-03-27T14:19:45.1078635Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:45.1081924Z -2026-03-27T14:19:45.1085494Z Total Copied Skipped Failed -2026-03-27T14:19:45.1089095Z Files : 0 0 0 0 -2026-03-27T14:19:45.1092554Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:45.1096224Z -2026-03-27T14:19:45.1099765Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:45.1104068Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:45.1108820Z Ended : Fri, Mar 27, 2026 15:19:45 -2026-03-27T14:19:45.1112250Z -2026-03-27T14:19:45.1115792Z Result : No files were found -2026-03-27T14:19:45.1349766Z ##[endgroup] -2026-03-27T14:19:45.2279781Z ##[error][-] Context Unity Xbox Integration Tests.Message Capture failed -2026-03-27T14:19:45.2285895Z ##[group]Message -2026-03-27T14:19:45.2287395Z RuntimeException: Failed to retrieve Xbox log file (unity-integration-test.log). See directory diagnostics above. -2026-03-27T14:19:45.2288564Z at Get-XboxLogOutput, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:203 -2026-03-27T14:19:45.2289758Z at Invoke-TestAction, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:290 -2026-03-27T14:19:45.2290997Z at , C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:436 -2026-03-27T14:19:45.2296611Z ##[endgroup] -2026-03-27T14:19:45.2349134Z Running exception-capture... -2026-03-27T14:19:45.8974643Z ##[group]Run log -2026-03-27T14:19:54.1472417Z ##[endgroup] -2026-03-27T14:19:55.6941272Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState -2026-03-27T14:19:57.0994295Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:19:57.0997171Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:57.0997616Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:57.0998025Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:57.0998516Z Started : Fri, Mar 27, 2026 15:19:57 -2026-03-27T14:19:57.0998936Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState -2026-03-27T14:19:57.1000085Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState -2026-03-27T14:19:57.1001005Z Files : * -2026-03-27T14:19:57.1001174Z Exc dirs : -2026-03-27T14:19:57.1001332Z Exc files : -2026-03-27T14:19:57.1001500Z Options : /mirror -2026-03-27T14:19:57.1001824Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:57.1002230Z Status % Done Size U Path -2026-03-27T14:19:57.1002602Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:57.1003199Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:57.1003626Z Total Copied Skipped Failed -2026-03-27T14:19:57.1003941Z Files : 0 0 0 0 -2026-03-27T14:19:57.1004272Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:57.1004562Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:57.1004817Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:57.1005066Z Ended : Fri, Mar 27, 2026 15:19:57 -2026-03-27T14:19:57.1005551Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:57.1006212Z WARNING: === End of original output. === -2026-03-27T14:19:57.1020482Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:19:57.1024659Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState -2026-03-27T14:19:58.4942866Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:19:58.4944648Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:58.4945058Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:58.4945414Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:58.4945778Z Started : Fri, Mar 27, 2026 15:19:58 -2026-03-27T14:19:58.4948232Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState -2026-03-27T14:19:58.4949858Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState -2026-03-27T14:19:58.4951690Z Files : * -2026-03-27T14:19:58.4951861Z Exc dirs : -2026-03-27T14:19:58.4952013Z Exc files : -2026-03-27T14:19:58.4952165Z Options : /mirror -2026-03-27T14:19:58.4952475Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:58.4952862Z Status % Done Size U Path -2026-03-27T14:19:58.4954498Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:58.4955509Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:58.4955921Z Total Copied Skipped Failed -2026-03-27T14:19:58.4956376Z Files : 0 0 0 0 -2026-03-27T14:19:58.4957135Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:58.4957770Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:58.4958162Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:58.4958409Z Ended : Fri, Mar 27, 2026 15:19:58 -2026-03-27T14:19:58.4958871Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:58.4959534Z WARNING: === End of original output. === -2026-03-27T14:19:58.4962586Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:19:58.4967916Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState -2026-03-27T14:19:59.7832236Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:19:59.7834251Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:59.7834661Z XBCOPY :: Xbox File Copy -2026-03-27T14:19:59.7835021Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:59.7835414Z Started : Fri, Mar 27, 2026 15:19:59 -2026-03-27T14:19:59.7835788Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState -2026-03-27T14:19:59.7836788Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState -2026-03-27T14:19:59.7837627Z Files : * -2026-03-27T14:19:59.7837828Z Exc dirs : -2026-03-27T14:19:59.7837973Z Exc files : -2026-03-27T14:19:59.7838126Z Options : /mirror -2026-03-27T14:19:59.7839288Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:59.7839722Z Status % Done Size U Path -2026-03-27T14:19:59.7840083Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:59.7840586Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:19:59.7841007Z Total Copied Skipped Failed -2026-03-27T14:19:59.7841328Z Files : 0 0 0 0 -2026-03-27T14:19:59.7841647Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:19:59.7841946Z Speed : 0.00 Bytes/sec. -2026-03-27T14:19:59.7842205Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:19:59.7842467Z Ended : Fri, Mar 27, 2026 15:19:59 -2026-03-27T14:19:59.7842961Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:19:59.7843617Z WARNING: === End of original output. === -2026-03-27T14:19:59.7844301Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:19:59.7845637Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState -2026-03-27T14:20:01.1622427Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:20:01.1624215Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:01.1624625Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:01.1624990Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:01.1625371Z Started : Fri, Mar 27, 2026 15:20:01 -2026-03-27T14:20:01.1625836Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState -2026-03-27T14:20:01.1626882Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState -2026-03-27T14:20:01.1627720Z Files : * -2026-03-27T14:20:01.1627872Z Exc dirs : -2026-03-27T14:20:01.1628014Z Exc files : -2026-03-27T14:20:01.1628168Z Options : /mirror -2026-03-27T14:20:01.1628485Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:01.1628889Z Status % Done Size U Path -2026-03-27T14:20:01.1629263Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:01.1629790Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:01.1630238Z Total Copied Skipped Failed -2026-03-27T14:20:01.1630570Z Files : 0 0 0 0 -2026-03-27T14:20:01.1630904Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:01.1631203Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:01.1631734Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:01.1632028Z Ended : Fri, Mar 27, 2026 15:20:01 -2026-03-27T14:20:01.1632570Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:01.1634060Z WARNING: === End of original output. === -2026-03-27T14:20:01.1638721Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:20:01.1644445Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp -2026-03-27T14:20:02.4496891Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:20:02.4498838Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:02.4499294Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:02.4499698Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:02.4500290Z Started : Fri, Mar 27, 2026 15:20:02 -2026-03-27T14:20:02.4500658Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp -2026-03-27T14:20:02.4501669Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp -2026-03-27T14:20:02.4503370Z Files : * -2026-03-27T14:20:02.4503530Z Exc dirs : -2026-03-27T14:20:02.4503677Z Exc files : -2026-03-27T14:20:02.4503823Z Options : /mirror -2026-03-27T14:20:02.4504133Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:02.4504525Z Status % Done Size U Path -2026-03-27T14:20:02.4504904Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:02.4505582Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:02.4506235Z Total Copied Skipped Failed -2026-03-27T14:20:02.4506595Z Files : 0 0 0 0 -2026-03-27T14:20:02.4506970Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:02.4507288Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:02.4507582Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:02.4507888Z Ended : Fri, Mar 27, 2026 15:20:02 -2026-03-27T14:20:02.4508395Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:02.4509086Z WARNING: === End of original output. === -2026-03-27T14:20:02.4509683Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp (Command (xbcopy) failed with exit code 2) -2026-03-27T14:20:02.4516250Z Trying to retrieve log from: D:\Logs -2026-03-27T14:20:03.8140068Z Copied files: SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) SentryPlayground.log (79366 bytes) SentryTower.log (96101 bytes) -2026-03-27T14:20:03.8149555Z Trying to retrieve log from: T: -2026-03-27T14:20:05.6368174Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xT:\" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/T_" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:20:05.6369552Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.6369970Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:05.6370328Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.6370700Z Started : Fri, Mar 27, 2026 15:20:05 -2026-03-27T14:20:05.6370923Z Source : xT:\ -2026-03-27T14:20:05.6371449Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/exception-capture/T_ -2026-03-27T14:20:05.6372022Z Files : * -2026-03-27T14:20:05.6372228Z Exc dirs : -2026-03-27T14:20:05.6372369Z Exc files : -2026-03-27T14:20:05.6372523Z Options : /mirror -2026-03-27T14:20:05.6372885Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.6373274Z Status % Done Size U Path -2026-03-27T14:20:05.6373630Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.6374137Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.6386553Z Total Copied Skipped Failed -2026-03-27T14:20:05.6386895Z Files : 1 0 1 0 -2026-03-27T14:20:05.6387223Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B -2026-03-27T14:20:05.6387518Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:05.6387767Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:05.6388020Z Ended : Fri, Mar 27, 2026 15:20:05 -2026-03-27T14:20:05.6388634Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. -2026-03-27T14:20:05.6389423Z WARNING: === End of original output. === -2026-03-27T14:20:05.6389776Z Not found at T: (Command (xbcopy) failed with exit code 2) -2026-03-27T14:20:05.6390327Z WARNING: Log file not found at any candidate path. Listing directories for diagnostics: -2026-03-27T14:20:05.6390972Z ##[group]Xbox directory diagnostics -2026-03-27T14:20:05.6391133Z -2026-03-27T14:20:05.6391204Z --- D:\ root --- -2026-03-27T14:20:05.6395635Z Listing xD:\ -2026-03-27T14:20:05.7401568Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.7406316Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:05.7410187Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.7413931Z -2026-03-27T14:20:05.7417803Z Started : Fri, Mar 27, 2026 15:20:05 -2026-03-27T14:20:05.7421618Z Source : xD:\ -2026-03-27T14:20:05.7425614Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03 -2026-03-27T14:20:05.7429331Z -2026-03-27T14:20:05.7433188Z Files : * -2026-03-27T14:20:05.7436987Z -2026-03-27T14:20:05.7440830Z Exc dirs : -2026-03-27T14:20:05.7444636Z -2026-03-27T14:20:05.7448958Z Exc files : -2026-03-27T14:20:05.7452791Z -2026-03-27T14:20:05.7457915Z Options : /mirror -2026-03-27T14:20:05.7461689Z -2026-03-27T14:20:05.7465684Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.7469416Z Status % Done Size U Path -2026-03-27T14:20:05.7473420Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.7477139Z -2026-03-27T14:20:05.7482025Z [BEGIN] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullException.dmp -2026-03-27T14:20:05.7485063Z [COPYING] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullException.dmp -2026-03-27T14:20:05.7489001Z [COPYING] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullException.dmp -2026-03-27T14:20:05.7492842Z [DONE] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullException.dmp -2026-03-27T14:20:05.7496635Z [BEGIN] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullExceptionLogFile.txt -2026-03-27T14:20:05.7500417Z [COPYING] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullExceptionLogFile.txt -2026-03-27T14:20:05.7504206Z [COPYING] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullExceptionLogFile.txt -2026-03-27T14:20:05.7507944Z [DONE] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\FullExceptionLogFile.txt -2026-03-27T14:20:05.7511664Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stderr.txt -2026-03-27T14:20:05.7515442Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stderr.txt -2026-03-27T14:20:05.7519230Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stderr.txt -2026-03-27T14:20:05.7522974Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stderr.txt -2026-03-27T14:20:05.7526741Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stdout.txt -2026-03-27T14:20:05.7530737Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stdout.txt -2026-03-27T14:20:05.7534774Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stdout.txt -2026-03-27T14:20:05.7538964Z [BEGIN] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:05.7543040Z [COPYING] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:05.7547058Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\latest_stdout.txt -2026-03-27T14:20:05.7551243Z [COPYING] 67.43 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:05.7555263Z [COPYING] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:05.7559389Z [DONE] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1aa0kles.r03\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:05.7563329Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.7567364Z -2026-03-27T14:20:05.7570652Z Total Copied Skipped Failed -2026-03-27T14:20:05.7574402Z Files : 5 5 0 0 -2026-03-27T14:20:05.7578156Z Size : 854.24 KB 854.24 KB 0.00 B 0.00 B -2026-03-27T14:20:05.7581834Z -2026-03-27T14:20:05.7586944Z Speed : 27335812.50 Bytes/sec. -2026-03-27T14:20:05.7590813Z Speed : 26.07 MegaBytes/sec. -2026-03-27T14:20:05.7594560Z Ended : Fri, Mar 27, 2026 15:20:05 -2026-03-27T14:20:05.7598281Z -2026-03-27T14:20:05.7602671Z Result : Operation completed successfully -2026-03-27T14:20:05.7725121Z Contents: -2026-03-27T14:20:05.7734349Z \FullException.dmp (97125 bytes) -2026-03-27T14:20:05.7739128Z \FullExceptionLogFile.txt (44 bytes) -2026-03-27T14:20:05.7745994Z \latest_stderr.txt (0 bytes) -2026-03-27T14:20:05.7750956Z \latest_stdout.txt (0 bytes) -2026-03-27T14:20:05.7754859Z \unreal-v0-2025.10.10-01.48.52.dmp (777577 bytes) -2026-03-27T14:20:05.7919654Z -2026-03-27T14:20:05.7920526Z --- D:\DevelopmentFiles\ --- -2026-03-27T14:20:05.7926290Z Listing xD:\DevelopmentFiles\ -2026-03-27T14:20:05.8810910Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.8816970Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:05.8820911Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.8824593Z -2026-03-27T14:20:05.8828493Z Started : Fri, Mar 27, 2026 15:20:05 -2026-03-27T14:20:05.8832748Z Source : xD:\DevelopmentFiles\ -2026-03-27T14:20:05.8836696Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-3fy4gtv0.0y1 -2026-03-27T14:20:05.8840380Z -2026-03-27T14:20:05.8844129Z Files : * -2026-03-27T14:20:05.8847968Z -2026-03-27T14:20:05.8851607Z Exc dirs : -2026-03-27T14:20:05.8855496Z -2026-03-27T14:20:05.8860636Z Exc files : -2026-03-27T14:20:05.8864435Z -2026-03-27T14:20:05.8868285Z Options : /mirror -2026-03-27T14:20:05.8872077Z -2026-03-27T14:20:05.8876085Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.8879756Z Status % Done Size U Path -2026-03-27T14:20:05.8884210Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.8888690Z -2026-03-27T14:20:05.8892654Z -2026-03-27T14:20:05.8896607Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:05.8900186Z -2026-03-27T14:20:05.8904026Z Total Copied Skipped Failed -2026-03-27T14:20:05.8907804Z Files : 0 0 0 0 -2026-03-27T14:20:05.8926612Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:05.8930638Z -2026-03-27T14:20:05.8934476Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:05.8938246Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:05.8941990Z Ended : Fri, Mar 27, 2026 15:20:05 -2026-03-27T14:20:05.8945707Z -2026-03-27T14:20:05.8949452Z Result : No files were found -2026-03-27T14:20:05.9187493Z -2026-03-27T14:20:05.9188068Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ --- -2026-03-27T14:20:05.9195230Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ -2026-03-27T14:20:06.0056117Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.0062382Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:06.0066297Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.0069980Z -2026-03-27T14:20:06.0074503Z Started : Fri, Mar 27, 2026 15:20:05 -2026-03-27T14:20:06.0078559Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ -2026-03-27T14:20:06.0084043Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-rqkfx23x.5k0 -2026-03-27T14:20:06.0088067Z -2026-03-27T14:20:06.0092404Z Files : * -2026-03-27T14:20:06.0096286Z -2026-03-27T14:20:06.0100158Z Exc dirs : -2026-03-27T14:20:06.0104377Z -2026-03-27T14:20:06.0108230Z Exc files : -2026-03-27T14:20:06.0112126Z -2026-03-27T14:20:06.0116934Z Options : /mirror -2026-03-27T14:20:06.0120004Z -2026-03-27T14:20:06.0124120Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.0128349Z Status % Done Size U Path -2026-03-27T14:20:06.0132146Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.0135785Z -2026-03-27T14:20:06.0139428Z -2026-03-27T14:20:06.0143511Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.0147044Z -2026-03-27T14:20:06.0151025Z Total Copied Skipped Failed -2026-03-27T14:20:06.0154681Z Files : 0 0 0 0 -2026-03-27T14:20:06.0158473Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:06.0162069Z -2026-03-27T14:20:06.0165986Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:06.0169830Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:06.0173668Z Ended : Fri, Mar 27, 2026 15:20:05 -2026-03-27T14:20:06.0177416Z -2026-03-27T14:20:06.0181475Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:06.0185084Z -2026-03-27T14:20:06.0426974Z -2026-03-27T14:20:06.0427475Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ --- -2026-03-27T14:20:06.0434906Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ -2026-03-27T14:20:06.1396617Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.1402460Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:06.1406423Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.1410471Z -2026-03-27T14:20:06.1414497Z Started : Fri, Mar 27, 2026 15:20:06 -2026-03-27T14:20:06.1418263Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ -2026-03-27T14:20:06.1422011Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-4ypytjos.3hz -2026-03-27T14:20:06.1425660Z -2026-03-27T14:20:06.1429580Z Files : * -2026-03-27T14:20:06.1433166Z -2026-03-27T14:20:06.1436894Z Exc dirs : -2026-03-27T14:20:06.1440631Z -2026-03-27T14:20:06.1444412Z Exc files : -2026-03-27T14:20:06.1448629Z -2026-03-27T14:20:06.1452285Z Options : /mirror -2026-03-27T14:20:06.1456068Z -2026-03-27T14:20:06.1460348Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.1464094Z Status % Done Size U Path -2026-03-27T14:20:06.1468207Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.1472096Z -2026-03-27T14:20:06.1475744Z -2026-03-27T14:20:06.1479632Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.1483174Z -2026-03-27T14:20:06.1490185Z Total Copied Skipped Failed -2026-03-27T14:20:06.1494125Z Files : 0 0 0 0 -2026-03-27T14:20:06.1497800Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:06.1501382Z -2026-03-27T14:20:06.1505151Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:06.1508857Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:06.1512470Z Ended : Fri, Mar 27, 2026 15:20:06 -2026-03-27T14:20:06.1516176Z -2026-03-27T14:20:06.1520987Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:06.1523527Z -2026-03-27T14:20:06.1760413Z -2026-03-27T14:20:06.1761869Z --- D:\Logs\ --- -2026-03-27T14:20:06.1769505Z Listing xD:\Logs\ -2026-03-27T14:20:06.3070179Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.3076686Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:06.3080896Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.3084403Z -2026-03-27T14:20:06.3088996Z Started : Fri, Mar 27, 2026 15:20:06 -2026-03-27T14:20:06.3093020Z Source : xD:\Logs\ -2026-03-27T14:20:06.3096779Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b -2026-03-27T14:20:06.3100690Z -2026-03-27T14:20:06.3105110Z Files : * -2026-03-27T14:20:06.3108883Z -2026-03-27T14:20:06.3112944Z Exc dirs : -2026-03-27T14:20:06.3117003Z -2026-03-27T14:20:06.3121103Z Exc files : -2026-03-27T14:20:06.3125142Z -2026-03-27T14:20:06.3129244Z Options : /mirror -2026-03-27T14:20:06.3133299Z -2026-03-27T14:20:06.3137622Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.3141549Z Status % Done Size U Path -2026-03-27T14:20:06.3146114Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.3150026Z -2026-03-27T14:20:06.3159911Z [BEGIN] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:20:06.3160955Z [COPYING] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:20:06.3165274Z [COPYING] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:20:06.3170239Z [DONE] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:20:06.3174997Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:20:06.3179549Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:20:06.3184005Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:20:06.3190418Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:20:06.3194300Z [BEGIN] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:20:06.3200360Z [COPYING] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:20:06.3204174Z [COPYING] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:20:06.3208903Z [DONE] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:20:06.3212773Z [BEGIN] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:20:06.3217432Z [COPYING] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:20:06.3220637Z [COPYING] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:20:06.3224213Z [DONE] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:20:06.3230283Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:20:06.3234156Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:20:06.3237848Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:20:06.3241603Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:20:06.3245351Z [BEGIN] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:20:06.3249164Z [COPYING] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:20:06.3252945Z [COPYING] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:20:06.3256725Z [DONE] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:20:06.3260577Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:20:06.3264476Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:20:06.3268332Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:20:06.3272194Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:20:06.3275956Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:20:06.3279787Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:20:06.3283308Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:20:06.3287235Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:20:06.3291574Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:20:06.3295400Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:20:06.3299084Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:20:06.3302743Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:20:06.3307168Z [BEGIN] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:20:06.3310064Z [COPYING] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:20:06.3313768Z [COPYING] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:20:06.3317544Z [DONE] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:20:06.3321108Z [BEGIN] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground.log -2026-03-27T14:20:06.3324815Z [COPYING] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground.log -2026-03-27T14:20:06.3330842Z [COPYING] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground.log -2026-03-27T14:20:06.3337689Z [DONE] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryPlayground.log -2026-03-27T14:20:06.3343221Z [BEGIN] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryTower.log -2026-03-27T14:20:06.3347045Z [COPYING] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryTower.log -2026-03-27T14:20:06.3350745Z [COPYING] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryTower.log -2026-03-27T14:20:06.3359055Z [DONE] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-lplgwmza.i5b\SentryTower.log -2026-03-27T14:20:06.3364926Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.3369752Z -2026-03-27T14:20:06.3375979Z Total Copied Skipped Failed -2026-03-27T14:20:06.3379120Z Files : 12 12 0 0 -2026-03-27T14:20:06.3382687Z Size : 917.57 KB 917.57 KB 0.00 B 0.00 B -2026-03-27T14:20:06.3386162Z -2026-03-27T14:20:06.3389747Z Speed : 15154645.16 Bytes/sec. -2026-03-27T14:20:06.3393322Z Speed : 14.45 MegaBytes/sec. -2026-03-27T14:20:06.3396937Z Ended : Fri, Mar 27, 2026 15:20:06 -2026-03-27T14:20:06.3400424Z -2026-03-27T14:20:06.3404010Z Result : Operation completed successfully -2026-03-27T14:20:06.3522357Z Contents: -2026-03-27T14:20:06.3534263Z \SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) -2026-03-27T14:20:06.3541160Z \SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) -2026-03-27T14:20:06.3546547Z \SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) -2026-03-27T14:20:06.3551141Z \SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) -2026-03-27T14:20:06.3556597Z \SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) -2026-03-27T14:20:06.3561044Z \SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) -2026-03-27T14:20:06.3565075Z \SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) -2026-03-27T14:20:06.3569557Z \SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) -2026-03-27T14:20:06.3573463Z \SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) -2026-03-27T14:20:06.3577375Z \SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) -2026-03-27T14:20:06.3581638Z \SentryPlayground.log (79366 bytes) -2026-03-27T14:20:06.3585714Z \SentryTower.log (96101 bytes) -2026-03-27T14:20:06.3805037Z -2026-03-27T14:20:06.3806293Z --- T:\ root --- -2026-03-27T14:20:06.3812633Z Listing xT:\ -2026-03-27T14:20:06.9764544Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.9769728Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:06.9774224Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.9778062Z -2026-03-27T14:20:06.9782246Z Started : Fri, Mar 27, 2026 15:20:06 -2026-03-27T14:20:06.9786299Z Source : xT:\ -2026-03-27T14:20:06.9790600Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-qwq43wvd.3id -2026-03-27T14:20:06.9794449Z -2026-03-27T14:20:06.9798572Z Files : * -2026-03-27T14:20:06.9802600Z -2026-03-27T14:20:06.9806653Z Exc dirs : -2026-03-27T14:20:06.9810806Z -2026-03-27T14:20:06.9815305Z Exc files : -2026-03-27T14:20:06.9819304Z -2026-03-27T14:20:06.9823413Z Options : /mirror -2026-03-27T14:20:06.9827408Z -2026-03-27T14:20:06.9831721Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.9835594Z Status % Done Size U Path -2026-03-27T14:20:06.9839678Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.9843627Z -2026-03-27T14:20:06.9847524Z -2026-03-27T14:20:06.9851449Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:06.9855728Z -2026-03-27T14:20:06.9859888Z Total Copied Skipped Failed -2026-03-27T14:20:06.9863970Z Files : 1 0 1 0 -2026-03-27T14:20:06.9867959Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B -2026-03-27T14:20:06.9871907Z -2026-03-27T14:20:06.9876029Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:06.9881372Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:06.9886000Z Ended : Fri, Mar 27, 2026 15:20:06 -2026-03-27T14:20:06.9890310Z -2026-03-27T14:20:06.9895002Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. -2026-03-27T14:20:06.9899911Z -2026-03-27T14:20:07.0137981Z -2026-03-27T14:20:07.0138750Z --- S:\ root --- -2026-03-27T14:20:07.0147687Z Listing xS:\ -2026-03-27T14:20:07.1092195Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:07.1098010Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:07.1101804Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:07.1106037Z -2026-03-27T14:20:07.1109922Z Started : Fri, Mar 27, 2026 15:20:07 -2026-03-27T14:20:07.1113856Z Source : xS:\ -2026-03-27T14:20:07.1118514Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-zppmo1oz.uwr -2026-03-27T14:20:07.1122637Z -2026-03-27T14:20:07.1126488Z Files : * -2026-03-27T14:20:07.1130565Z -2026-03-27T14:20:07.1134407Z Exc dirs : -2026-03-27T14:20:07.1138378Z -2026-03-27T14:20:07.1142237Z Exc files : -2026-03-27T14:20:07.1147926Z -2026-03-27T14:20:07.1151366Z Options : /mirror -2026-03-27T14:20:07.1155253Z -2026-03-27T14:20:07.1159192Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:07.1162897Z Status % Done Size U Path -2026-03-27T14:20:07.1167610Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:07.1171563Z -2026-03-27T14:20:07.1175916Z -2026-03-27T14:20:07.1180288Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:07.1184951Z -2026-03-27T14:20:07.1188044Z Total Copied Skipped Failed -2026-03-27T14:20:07.1191889Z Files : 0 0 0 0 -2026-03-27T14:20:07.1195847Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:07.1199472Z -2026-03-27T14:20:07.1203325Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:07.1207172Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:07.1210839Z Ended : Fri, Mar 27, 2026 15:20:07 -2026-03-27T14:20:07.1214541Z -2026-03-27T14:20:07.1218282Z Result : No files were found -2026-03-27T14:20:07.1457975Z ##[endgroup] -2026-03-27T14:20:07.1550039Z ##[error][-] Context Unity Xbox Integration Tests.Exception Capture failed -2026-03-27T14:20:07.1559773Z ##[group]Message -2026-03-27T14:20:07.1564519Z RuntimeException: Failed to retrieve Xbox log file (unity-integration-test.log). See directory diagnostics above. -2026-03-27T14:20:07.1570856Z at Get-XboxLogOutput, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:203 -2026-03-27T14:20:07.1576441Z at Invoke-TestAction, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:290 -2026-03-27T14:20:07.1582180Z at , C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:462 -2026-03-27T14:20:07.1587441Z ##[endgroup] -2026-03-27T14:20:07.1692211Z Running crash-capture... -2026-03-27T14:20:07.8304010Z ##[group]Run log -2026-03-27T14:20:15.9237287Z ##[endgroup] -2026-03-27T14:20:17.4730630Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState -2026-03-27T14:20:18.8575176Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:20:18.8577232Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:18.8577694Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:18.8578106Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:18.8578579Z Started : Fri, Mar 27, 2026 15:20:18 -2026-03-27T14:20:18.8578989Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState -2026-03-27T14:20:18.8580132Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_LocalState -2026-03-27T14:20:18.8581102Z Files : * -2026-03-27T14:20:18.8581272Z Exc dirs : -2026-03-27T14:20:18.8581421Z Exc files : -2026-03-27T14:20:18.8581582Z Options : /mirror -2026-03-27T14:20:18.8581938Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:18.8582394Z Status % Done Size U Path -2026-03-27T14:20:18.8582785Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:18.8583303Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:18.8583746Z Total Copied Skipped Failed -2026-03-27T14:20:18.8584077Z Files : 0 0 0 0 -2026-03-27T14:20:18.8584400Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:18.8585453Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:18.8585757Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:18.8586009Z Ended : Fri, Mar 27, 2026 15:20:18 -2026-03-27T14:20:18.8586482Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:18.8587112Z WARNING: === End of original output. === -2026-03-27T14:20:18.8588755Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\LocalState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:20:18.8594852Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState -2026-03-27T14:20:20.2514917Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:20:20.2516915Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:20.2517488Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:20.2519193Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:20.2520167Z Started : Fri, Mar 27, 2026 15:20:20 -2026-03-27T14:20:20.2521094Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState -2026-03-27T14:20:20.2522255Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_LocalState -2026-03-27T14:20:20.2523186Z Files : * -2026-03-27T14:20:20.2523346Z Exc dirs : -2026-03-27T14:20:20.2523511Z Exc files : -2026-03-27T14:20:20.2523675Z Options : /mirror -2026-03-27T14:20:20.2524196Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:20.2524637Z Status % Done Size U Path -2026-03-27T14:20:20.2525054Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:20.2525654Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:20.2527359Z Total Copied Skipped Failed -2026-03-27T14:20:20.2527726Z Files : 0 0 0 0 -2026-03-27T14:20:20.2528080Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:20.2528414Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:20.2528698Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:20.2528996Z Ended : Fri, Mar 27, 2026 15:20:20 -2026-03-27T14:20:20.2529547Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:20.2530333Z WARNING: === End of original output. === -2026-03-27T14:20:20.2530957Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\LocalState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:20:20.2531729Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState -2026-03-27T14:20:21.5404620Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:20:21.5407572Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:21.5408163Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:21.5408570Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:21.5409024Z Started : Fri, Mar 27, 2026 15:20:21 -2026-03-27T14:20:21.5409435Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState -2026-03-27T14:20:21.5410608Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_TempState -2026-03-27T14:20:21.5411559Z Files : * -2026-03-27T14:20:21.5411736Z Exc dirs : -2026-03-27T14:20:21.5411886Z Exc files : -2026-03-27T14:20:21.5412044Z Options : /mirror -2026-03-27T14:20:21.5412403Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:21.5412876Z Status % Done Size U Path -2026-03-27T14:20:21.5413310Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:21.5413878Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:21.5414995Z Total Copied Skipped Failed -2026-03-27T14:20:21.5415312Z Files : 0 0 0 0 -2026-03-27T14:20:21.5415633Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:21.5415922Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:21.5416188Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:21.5416453Z Ended : Fri, Mar 27, 2026 15:20:21 -2026-03-27T14:20:21.5417033Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:21.5417707Z WARNING: === End of original output. === -2026-03-27T14:20:21.5418295Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\TempState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:20:21.5425799Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState -2026-03-27T14:20:23.7305657Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:20:23.7310209Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:23.7310810Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:23.7311631Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:23.7312102Z Started : Fri, Mar 27, 2026 15:20:23 -2026-03-27T14:20:23.7312530Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState -2026-03-27T14:20:23.7313808Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_TempState -2026-03-27T14:20:23.7314949Z Files : * -2026-03-27T14:20:23.7315356Z Exc dirs : -2026-03-27T14:20:23.7315572Z Exc files : -2026-03-27T14:20:23.7315735Z Options : /mirror -2026-03-27T14:20:23.7316348Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:23.7316796Z Status % Done Size U Path -2026-03-27T14:20:23.7318207Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:23.7318990Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:23.7319428Z Total Copied Skipped Failed -2026-03-27T14:20:23.7319759Z Files : 0 0 0 0 -2026-03-27T14:20:23.7320083Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:23.7320372Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:23.7320629Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:23.7320883Z Ended : Fri, Mar 27, 2026 15:20:23 -2026-03-27T14:20:23.7321474Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:23.7322164Z WARNING: === End of original output. === -2026-03-27T14:20:23.7322786Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\TempState (Command (xbcopy) failed with exit code 2) -2026-03-27T14:20:23.7323539Z Trying to retrieve log from: D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp -2026-03-27T14:20:25.0340744Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:20:25.0343368Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:25.0343780Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:25.0344142Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:25.0344528Z Started : Fri, Mar 27, 2026 15:20:24 -2026-03-27T14:20:25.0344894Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp -2026-03-27T14:20:25.0345858Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/D__DevelopmentFiles_IntegrationTest6000.3.8f1_8wekyb3d8bbwe_AC_Temp -2026-03-27T14:20:25.0346730Z Files : * -2026-03-27T14:20:25.0346887Z Exc dirs : -2026-03-27T14:20:25.0347027Z Exc files : -2026-03-27T14:20:25.0347181Z Options : /mirror -2026-03-27T14:20:25.0347494Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:25.0347883Z Status % Done Size U Path -2026-03-27T14:20:25.0348249Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:25.0348771Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:25.0349208Z Total Copied Skipped Failed -2026-03-27T14:20:25.0349588Z Files : 0 0 0 0 -2026-03-27T14:20:25.0349919Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:25.0350231Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:25.0350496Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:25.0350756Z Ended : Fri, Mar 27, 2026 15:20:24 -2026-03-27T14:20:25.0351258Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:25.0351942Z WARNING: === End of original output. === -2026-03-27T14:20:25.0352536Z Not found at D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\Temp (Command (xbcopy) failed with exit code 2) -2026-03-27T14:20:25.0353086Z Trying to retrieve log from: D:\Logs -2026-03-27T14:20:26.3684923Z Copied files: SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) SentryPlayground.log (79366 bytes) SentryTower.log (96101 bytes) -2026-03-27T14:20:26.3690986Z Trying to retrieve log from: T: -2026-03-27T14:20:28.1683533Z WARNING: Command (xbcopy: & 'C:\Program Files (x86)\Microsoft GDK\bin\xbcopy.exe' "xT:\" "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/T_" /mirror 2>&1) failed with exit code 2 and output: -2026-03-27T14:20:28.1684946Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.1685403Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:28.1685813Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.1687470Z Started : Fri, Mar 27, 2026 15:20:27 -2026-03-27T14:20:28.1687714Z Source : xT:\ -2026-03-27T14:20:28.1688359Z Dest : C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest/results/xbox-logs/crash-capture/T_ -2026-03-27T14:20:28.1688953Z Files : * -2026-03-27T14:20:28.1689110Z Exc dirs : -2026-03-27T14:20:28.1689252Z Exc files : -2026-03-27T14:20:28.1689408Z Options : /mirror -2026-03-27T14:20:28.1689727Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.1690183Z Status % Done Size U Path -2026-03-27T14:20:28.1690571Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.1691087Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.1691531Z Total Copied Skipped Failed -2026-03-27T14:20:28.1691886Z Files : 1 0 1 0 -2026-03-27T14:20:28.1692236Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B -2026-03-27T14:20:28.1692966Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:28.1693318Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:28.1693598Z Ended : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.1694296Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. -2026-03-27T14:20:28.1695893Z WARNING: === End of original output. === -2026-03-27T14:20:28.1696649Z Not found at T: (Command (xbcopy) failed with exit code 2) -2026-03-27T14:20:28.1698009Z WARNING: Log file not found at any candidate path. Listing directories for diagnostics: -2026-03-27T14:20:28.1699184Z ##[group]Xbox directory diagnostics -2026-03-27T14:20:28.1707209Z -2026-03-27T14:20:28.1707477Z --- D:\ root --- -2026-03-27T14:20:28.1713029Z Listing xD:\ -2026-03-27T14:20:28.2737579Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.2745881Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:28.2749882Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.2753587Z -2026-03-27T14:20:28.2757507Z Started : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.2761350Z Source : xD:\ -2026-03-27T14:20:28.2766202Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa -2026-03-27T14:20:28.2769504Z -2026-03-27T14:20:28.2773415Z Files : * -2026-03-27T14:20:28.2777289Z -2026-03-27T14:20:28.2781157Z Exc dirs : -2026-03-27T14:20:28.2785020Z -2026-03-27T14:20:28.2788889Z Exc files : -2026-03-27T14:20:28.2792729Z -2026-03-27T14:20:28.2796611Z Options : /mirror -2026-03-27T14:20:28.2800481Z -2026-03-27T14:20:28.2804506Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.2808398Z Status % Done Size U Path -2026-03-27T14:20:28.2812387Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.2816115Z -2026-03-27T14:20:28.2820263Z [BEGIN] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullException.dmp -2026-03-27T14:20:28.2826292Z [COPYING] 0.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullException.dmp -2026-03-27T14:20:28.2830117Z [COPYING] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullException.dmp -2026-03-27T14:20:28.2833507Z [DONE] 100.00 94.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullException.dmp -2026-03-27T14:20:28.2837271Z [BEGIN] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullExceptionLogFile.txt -2026-03-27T14:20:28.2841058Z [COPYING] 0.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullExceptionLogFile.txt -2026-03-27T14:20:28.2844818Z [COPYING] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullExceptionLogFile.txt -2026-03-27T14:20:28.2848719Z [DONE] 100.00 44.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\FullExceptionLogFile.txt -2026-03-27T14:20:28.2852487Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stderr.txt -2026-03-27T14:20:28.2856277Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stderr.txt -2026-03-27T14:20:28.2860049Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stderr.txt -2026-03-27T14:20:28.2864059Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stderr.txt -2026-03-27T14:20:28.2867815Z [BEGIN] 0.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stdout.txt -2026-03-27T14:20:28.2871596Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stdout.txt -2026-03-27T14:20:28.2875418Z [COPYING] -1.#J 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stdout.txt -2026-03-27T14:20:28.2879266Z [BEGIN] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:28.2883009Z [COPYING] 0.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:28.2886697Z [DONE] 100.00 0.00 B C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\latest_stdout.txt -2026-03-27T14:20:28.2890923Z [COPYING] 67.43 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:28.2894688Z [COPYING] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:28.2899042Z [DONE] 100.00 759.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-jo53zaib.spa\unreal-v0-2025.10.10-01.48.52.dmp -2026-03-27T14:20:28.2904223Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.2907372Z -2026-03-27T14:20:28.2910767Z Total Copied Skipped Failed -2026-03-27T14:20:28.2916895Z Files : 5 5 0 0 -2026-03-27T14:20:28.2921841Z Size : 854.24 KB 854.24 KB 0.00 B 0.00 B -2026-03-27T14:20:28.2926089Z -2026-03-27T14:20:28.2929639Z Speed : 28217612.90 Bytes/sec. -2026-03-27T14:20:28.2933114Z Speed : 26.91 MegaBytes/sec. -2026-03-27T14:20:28.2936563Z Ended : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.2940007Z -2026-03-27T14:20:28.2943551Z Result : Operation completed successfully -2026-03-27T14:20:28.3060134Z Contents: -2026-03-27T14:20:28.3069190Z \FullException.dmp (97125 bytes) -2026-03-27T14:20:28.3073849Z \FullExceptionLogFile.txt (44 bytes) -2026-03-27T14:20:28.3077899Z \latest_stderr.txt (0 bytes) -2026-03-27T14:20:28.3082335Z \latest_stdout.txt (0 bytes) -2026-03-27T14:20:28.3086299Z \unreal-v0-2025.10.10-01.48.52.dmp (777577 bytes) -2026-03-27T14:20:28.3243039Z -2026-03-27T14:20:28.3244412Z --- D:\DevelopmentFiles\ --- -2026-03-27T14:20:28.3251296Z Listing xD:\DevelopmentFiles\ -2026-03-27T14:20:28.4104032Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.4108345Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:28.4113975Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.4115707Z -2026-03-27T14:20:28.4119597Z Started : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.4123383Z Source : xD:\DevelopmentFiles\ -2026-03-27T14:20:28.4127541Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-tcqmsuhz.32j -2026-03-27T14:20:28.4131452Z -2026-03-27T14:20:28.4136093Z Files : * -2026-03-27T14:20:28.4141798Z -2026-03-27T14:20:28.4144436Z Exc dirs : -2026-03-27T14:20:28.4149072Z -2026-03-27T14:20:28.4153674Z Exc files : -2026-03-27T14:20:28.4157389Z -2026-03-27T14:20:28.4161163Z Options : /mirror -2026-03-27T14:20:28.4164910Z -2026-03-27T14:20:28.4169905Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.4173454Z Status % Done Size U Path -2026-03-27T14:20:28.4177059Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.4180392Z -2026-03-27T14:20:28.4183867Z -2026-03-27T14:20:28.4187517Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.4190860Z -2026-03-27T14:20:28.4194406Z Total Copied Skipped Failed -2026-03-27T14:20:28.4197934Z Files : 0 0 0 0 -2026-03-27T14:20:28.4201435Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:28.4204955Z -2026-03-27T14:20:28.4209252Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:28.4212986Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:28.4216475Z Ended : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.4219917Z -2026-03-27T14:20:28.4223438Z Result : No files were found -2026-03-27T14:20:28.4484891Z -2026-03-27T14:20:28.4486472Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ --- -2026-03-27T14:20:28.4494652Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ -2026-03-27T14:20:28.5368770Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.5375945Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:28.5383231Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.5386376Z -2026-03-27T14:20:28.5390238Z Started : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.5394232Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\ -2026-03-27T14:20:28.5398049Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-fw1anxhd.nd3 -2026-03-27T14:20:28.5401737Z -2026-03-27T14:20:28.5405593Z Files : * -2026-03-27T14:20:28.5409798Z -2026-03-27T14:20:28.5413642Z Exc dirs : -2026-03-27T14:20:28.5417290Z -2026-03-27T14:20:28.5421146Z Exc files : -2026-03-27T14:20:28.5424858Z -2026-03-27T14:20:28.5428633Z Options : /mirror -2026-03-27T14:20:28.5432358Z -2026-03-27T14:20:28.5436237Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.5439852Z Status % Done Size U Path -2026-03-27T14:20:28.5443716Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.5447250Z -2026-03-27T14:20:28.5450892Z -2026-03-27T14:20:28.5454806Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.5458389Z -2026-03-27T14:20:28.5462236Z Total Copied Skipped Failed -2026-03-27T14:20:28.5465873Z Files : 0 0 0 0 -2026-03-27T14:20:28.5469596Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:28.5473177Z -2026-03-27T14:20:28.5476673Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:28.5480164Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:28.5483555Z Ended : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.5487215Z -2026-03-27T14:20:28.5490731Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:28.5493902Z -2026-03-27T14:20:28.5730750Z -2026-03-27T14:20:28.5732269Z --- D:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ --- -2026-03-27T14:20:28.5740643Z Listing xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ -2026-03-27T14:20:28.6615524Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.6622124Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:28.6626431Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.6630147Z -2026-03-27T14:20:28.6634060Z Started : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.6638056Z Source : xD:\DevelopmentFiles\IntegrationTest6000.3.8f1_8wekyb3d8bbwe\AC\ -2026-03-27T14:20:28.6641885Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-1jkmy201.rsq -2026-03-27T14:20:28.6645590Z -2026-03-27T14:20:28.6649898Z Files : * -2026-03-27T14:20:28.6653757Z -2026-03-27T14:20:28.6657579Z Exc dirs : -2026-03-27T14:20:28.6661466Z -2026-03-27T14:20:28.6665432Z Exc files : -2026-03-27T14:20:28.6669261Z -2026-03-27T14:20:28.6673520Z Options : /mirror -2026-03-27T14:20:28.6677330Z -2026-03-27T14:20:28.6681226Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.6684928Z Status % Done Size U Path -2026-03-27T14:20:28.6688958Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.6692634Z -2026-03-27T14:20:28.6696342Z -2026-03-27T14:20:28.6701871Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.6704017Z -2026-03-27T14:20:28.6707997Z Total Copied Skipped Failed -2026-03-27T14:20:28.6711758Z Files : 0 0 0 0 -2026-03-27T14:20:28.6715560Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:28.6719349Z -2026-03-27T14:20:28.6722940Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:28.6727019Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:28.6730718Z Ended : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.6734427Z -2026-03-27T14:20:28.6738240Z Result : Failed with error (0x80070002). Failed with error (0x80070002): The system cannot find the file specified. -2026-03-27T14:20:28.6741703Z -2026-03-27T14:20:28.6985685Z -2026-03-27T14:20:28.6986954Z --- D:\Logs\ --- -2026-03-27T14:20:28.6994798Z Listing xD:\Logs\ -2026-03-27T14:20:28.8300553Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.8305650Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:28.8309693Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.8313703Z -2026-03-27T14:20:28.8317530Z Started : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.8321372Z Source : xD:\Logs\ -2026-03-27T14:20:28.8325193Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn -2026-03-27T14:20:28.8329148Z -2026-03-27T14:20:28.8333312Z Files : * -2026-03-27T14:20:28.8336974Z -2026-03-27T14:20:28.8342409Z Exc dirs : -2026-03-27T14:20:28.8346338Z -2026-03-27T14:20:28.8350140Z Exc files : -2026-03-27T14:20:28.8353720Z -2026-03-27T14:20:28.8357441Z Options : /mirror -2026-03-27T14:20:28.8361276Z -2026-03-27T14:20:28.8365045Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.8369439Z Status % Done Size U Path -2026-03-27T14:20:28.8373231Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.8376864Z -2026-03-27T14:20:28.8381021Z [BEGIN] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:20:28.8384825Z [COPYING] 0.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:20:28.8388656Z [COPYING] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:20:28.8392395Z [DONE] 100.00 77.49 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-07.39.07.log -2026-03-27T14:20:28.8396162Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:20:28.8399939Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:20:28.8403701Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:20:28.8407675Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.11.log -2026-03-27T14:20:28.8412057Z [BEGIN] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:20:28.8415092Z [COPYING] 0.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:20:28.8418576Z [COPYING] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:20:28.8422335Z [DONE] 100.00 78.38 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-08.35.25.log -2026-03-27T14:20:28.8426116Z [BEGIN] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:20:28.8429855Z [COPYING] 0.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:20:28.8433521Z [COPYING] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:20:28.8437287Z [DONE] 100.00 71.26 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.44.53.log -2026-03-27T14:20:28.8441009Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:20:28.8444748Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:20:28.8449111Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:20:28.8452760Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-10.45.07.log -2026-03-27T14:20:28.8456489Z [BEGIN] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:20:28.8460266Z [COPYING] 0.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:20:28.8463949Z [COPYING] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:20:28.8467720Z [DONE] 100.00 71.21 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.27.log -2026-03-27T14:20:28.8471459Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:20:28.8475191Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:20:28.8478948Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:20:28.8482430Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-11.15.41.log -2026-03-27T14:20:28.8486125Z [BEGIN] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:20:28.8490574Z [COPYING] 0.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:20:28.8494111Z [COPYING] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:20:28.8498508Z [DONE] 100.00 71.23 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.23.log -2026-03-27T14:20:28.8501606Z [BEGIN] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:20:28.8505676Z [COPYING] 0.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:20:28.8509428Z [COPYING] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:20:28.8513237Z [DONE] 100.00 78.35 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.33.38.log -2026-03-27T14:20:28.8516733Z [BEGIN] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:20:28.8520491Z [COPYING] 0.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:20:28.8524593Z [COPYING] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:20:28.8528822Z [DONE] 100.00 70.36 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground-backup-2026.03.27-12.42.41.log -2026-03-27T14:20:28.8532664Z [BEGIN] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground.log -2026-03-27T14:20:28.8536539Z [COPYING] 0.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground.log -2026-03-27T14:20:28.8540360Z [COPYING] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground.log -2026-03-27T14:20:28.8544482Z [DONE] 100.00 77.51 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryPlayground.log -2026-03-27T14:20:28.8548513Z [BEGIN] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryTower.log -2026-03-27T14:20:28.8552711Z [COPYING] 0.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryTower.log -2026-03-27T14:20:28.8556806Z [COPYING] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryTower.log -2026-03-27T14:20:28.8560874Z [DONE] 100.00 93.85 KB C:\Users\github-runner\AppData\Local\Temp\xbox-diag-potivhkd.bhn\SentryTower.log -2026-03-27T14:20:28.8564873Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:28.8568964Z -2026-03-27T14:20:28.8572558Z Total Copied Skipped Failed -2026-03-27T14:20:28.8576305Z Files : 12 12 0 0 -2026-03-27T14:20:28.8580026Z Size : 917.57 KB 917.57 KB 0.00 B 0.00 B -2026-03-27T14:20:28.8583703Z -2026-03-27T14:20:28.8587438Z Speed : 15154645.16 Bytes/sec. -2026-03-27T14:20:28.8591194Z Speed : 14.45 MegaBytes/sec. -2026-03-27T14:20:28.8595038Z Ended : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:28.8598703Z -2026-03-27T14:20:28.8602489Z Result : Operation completed successfully -2026-03-27T14:20:28.8721430Z Contents: -2026-03-27T14:20:28.8729401Z \SentryPlayground-backup-2026.03.27-07.39.07.log (79348 bytes) -2026-03-27T14:20:28.8733301Z \SentryPlayground-backup-2026.03.27-08.35.11.log (72944 bytes) -2026-03-27T14:20:28.8737326Z \SentryPlayground-backup-2026.03.27-08.35.25.log (80259 bytes) -2026-03-27T14:20:28.8741947Z \SentryPlayground-backup-2026.03.27-10.44.53.log (72974 bytes) -2026-03-27T14:20:28.8745150Z \SentryPlayground-backup-2026.03.27-10.45.07.log (80229 bytes) -2026-03-27T14:20:28.8748442Z \SentryPlayground-backup-2026.03.27-11.15.27.log (72914 bytes) -2026-03-27T14:20:28.8752913Z \SentryPlayground-backup-2026.03.27-11.15.41.log (80229 bytes) -2026-03-27T14:20:28.8756668Z \SentryPlayground-backup-2026.03.27-12.33.23.log (72944 bytes) -2026-03-27T14:20:28.8760712Z \SentryPlayground-backup-2026.03.27-12.33.38.log (80229 bytes) -2026-03-27T14:20:28.8764472Z \SentryPlayground-backup-2026.03.27-12.42.41.log (72051 bytes) -2026-03-27T14:20:28.8768497Z \SentryPlayground.log (79366 bytes) -2026-03-27T14:20:28.8772245Z \SentryTower.log (96101 bytes) -2026-03-27T14:20:28.8981518Z -2026-03-27T14:20:28.8982725Z --- T:\ root --- -2026-03-27T14:20:28.8989306Z Listing xT:\ -2026-03-27T14:20:29.4980041Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.4986301Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:29.4990805Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.4995220Z -2026-03-27T14:20:29.4999300Z Started : Fri, Mar 27, 2026 15:20:28 -2026-03-27T14:20:29.5004406Z Source : xT:\ -2026-03-27T14:20:29.5008949Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-dgi1kujw.qr2 -2026-03-27T14:20:29.5013398Z -2026-03-27T14:20:29.5017459Z Files : * -2026-03-27T14:20:29.5021522Z -2026-03-27T14:20:29.5025613Z Exc dirs : -2026-03-27T14:20:29.5029670Z -2026-03-27T14:20:29.5033726Z Exc files : -2026-03-27T14:20:29.5037669Z -2026-03-27T14:20:29.5041432Z Options : /mirror -2026-03-27T14:20:29.5045246Z -2026-03-27T14:20:29.5049694Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.5053466Z Status % Done Size U Path -2026-03-27T14:20:29.5057346Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.5060846Z -2026-03-27T14:20:29.5065170Z -2026-03-27T14:20:29.5069116Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.5072659Z -2026-03-27T14:20:29.5076472Z Total Copied Skipped Failed -2026-03-27T14:20:29.5080315Z Files : 1 0 1 0 -2026-03-27T14:20:29.5084217Z Size : 1.50 GB 0.00 B 1.50 GB 0.00 B -2026-03-27T14:20:29.5087474Z -2026-03-27T14:20:29.5091727Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:29.5095504Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:29.5099120Z Ended : Fri, Mar 27, 2026 15:20:29 -2026-03-27T14:20:29.5102764Z -2026-03-27T14:20:29.5106833Z Result : Failed with error (0x80070020). Failed with error (0x80070020): The process cannot access the file because it is being used by another process. -2026-03-27T14:20:29.5110111Z -2026-03-27T14:20:29.5344386Z -2026-03-27T14:20:29.5345632Z --- S:\ root --- -2026-03-27T14:20:29.5353655Z Listing xS:\ -2026-03-27T14:20:29.6206919Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.6212840Z XBCOPY :: Xbox File Copy -2026-03-27T14:20:29.6217285Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.6221230Z -2026-03-27T14:20:29.6225443Z Started : Fri, Mar 27, 2026 15:20:29 -2026-03-27T14:20:29.6229254Z Source : xS:\ -2026-03-27T14:20:29.6233162Z Dest : C:\Users\github-runner\AppData\Local\Temp\xbox-diag-efss0vpf.rzr -2026-03-27T14:20:29.6237629Z -2026-03-27T14:20:29.6240783Z Files : * -2026-03-27T14:20:29.6244243Z -2026-03-27T14:20:29.6249103Z Exc dirs : -2026-03-27T14:20:29.6252910Z -2026-03-27T14:20:29.6257786Z Exc files : -2026-03-27T14:20:29.6262369Z -2026-03-27T14:20:29.6266362Z Options : /mirror -2026-03-27T14:20:29.6270450Z -2026-03-27T14:20:29.6274399Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.6278033Z Status % Done Size U Path -2026-03-27T14:20:29.6298051Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.6301680Z -2026-03-27T14:20:29.6305417Z -2026-03-27T14:20:29.6309394Z ------------------------------------------------------------------------------------------------------- -2026-03-27T14:20:29.6312948Z -2026-03-27T14:20:29.6316729Z Total Copied Skipped Failed -2026-03-27T14:20:29.6320210Z Files : 0 0 0 0 -2026-03-27T14:20:29.6323735Z Size : 0.00 B 0.00 B 0.00 B 0.00 B -2026-03-27T14:20:29.6327361Z -2026-03-27T14:20:29.6331012Z Speed : 0.00 Bytes/sec. -2026-03-27T14:20:29.6334561Z Speed : 0.00 MegaBytes/sec. -2026-03-27T14:20:29.6338030Z Ended : Fri, Mar 27, 2026 15:20:29 -2026-03-27T14:20:29.6341483Z -2026-03-27T14:20:29.6345018Z Result : No files were found -2026-03-27T14:20:29.6578057Z ##[endgroup] -2026-03-27T14:20:29.6651105Z ##[error][-] Context Unity Xbox Crash Tests.Crash Capture failed -2026-03-27T14:20:29.6660039Z ##[group]Message -2026-03-27T14:20:29.6665019Z RuntimeException: Failed to retrieve Xbox log file (unity-integration-test.log). See directory diagnostics above. -2026-03-27T14:20:29.6670804Z at Get-XboxLogOutput, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:203 -2026-03-27T14:20:29.6676236Z at Invoke-TestAction, C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:290 -2026-03-27T14:20:29.6681727Z at , C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity\test\IntegrationTest\Integration.Tests.ps1:500 -2026-03-27T14:20:29.6686652Z ##[endgroup] -2026-03-27T14:20:30.0116687Z Tests completed in 889.69s -2026-03-27T14:20:30.0225453Z Tests Passed: 0, Failed: 57, Skipped: 0, Inconclusive: 0, NotRun: 0 -2026-03-27T14:20:30.0235613Z BeforeAll \ AfterAll failed: 3 -2026-03-27T14:20:30.0251112Z  - Unity Xbox Integration Tests.Message Capture -2026-03-27T14:20:30.0251549Z  - Unity Xbox Integration Tests.Exception Capture -2026-03-27T14:20:30.0251973Z  - Unity Xbox Crash Tests.Crash Capture -2026-03-27T14:20:30.1496835Z InvalidResult: C:\github_runners\vie_runner_0\_work\_temp\d083afdb-9116-43fc-9a4d-8c4674b16343.ps1 -2026-03-27T14:20:30.1497413Z Line | -2026-03-27T14:20:30.1497791Z  4 | $result.FailedCount | Should -Be 0 -2026-03-27T14:20:30.1498325Z  | Expected 0, but got 57. -2026-03-27T14:20:30.1818678Z ##[error]Process completed with exit code 1. -2026-03-27T14:20:30.2377035Z ##[group]Run try { -2026-03-27T14:20:30.2377344Z try { -2026-03-27T14:20:30.2377566Z  . modules/app-runner/import-modules.ps1 -2026-03-27T14:20:30.2378072Z  # Reconnect — the Pester AfterAll block already called Disconnect-Device -2026-03-27T14:20:30.2378576Z  Connect-Device -Platform Xbox -Target $env:XBCONNECT_TARGET -2026-03-27T14:20:30.2379229Z  Get-DeviceDiagnostics -OutputDirectory "C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox/diagnostics" -2026-03-27T14:20:30.2379790Z  Disconnect-Device -2026-03-27T14:20:30.2380011Z } catch { -2026-03-27T14:20:30.2380261Z  Write-Warning "Failed to collect diagnostics: $_" -2026-03-27T14:20:30.2380549Z } -2026-03-27T14:20:30.2468122Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'" -2026-03-27T14:20:30.2468457Z env: -2026-03-27T14:20:30.2468808Z GH_TOKEN: *** -2026-03-27T14:20:30.2469002Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T14:20:30.2469269Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T14:20:30.2469561Z GDK_VERSION: 250400 -2026-03-27T14:20:30.2469948Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T14:20:30.2470575Z SENTRY_AUTH_TOKEN: *** -2026-03-27T14:20:30.2470762Z XBCONNECT_TARGET: 10.2.1.54 -2026-03-27T14:20:30.2470953Z ##[endgroup] -2026-03-27T14:20:52.5161478Z ##[error]The operation was canceled. -2026-03-27T14:20:52.7113632Z ##[group]Run actions/upload-artifact@v4 -2026-03-27T14:20:52.7114055Z with: -2026-03-27T14:20:52.7114261Z name: unity-integration-test-outputs -2026-03-27T14:20:52.7114641Z path: sentry-unity/test/IntegrationTest/results/ -diagnostics/ - -2026-03-27T14:20:52.7115005Z if-no-files-found: warn -2026-03-27T14:20:52.7116040Z compression-level: 6 -2026-03-27T14:20:52.7116242Z overwrite: false -2026-03-27T14:20:52.7116448Z include-hidden-files: false -2026-03-27T14:20:52.7116669Z env: -2026-03-27T14:20:52.7117027Z GH_TOKEN: *** -2026-03-27T14:20:52.7117219Z UNITY_VERSION: 6000.3.8f1 -2026-03-27T14:20:52.7117534Z UNITY_ROOT: C:\Program Files\Unity\Hub\Editor\6000.3.8f1\Editor -2026-03-27T14:20:52.7117869Z GDK_VERSION: 250400 -2026-03-27T14:20:52.7118315Z SENTRY_TEST_DSN: https://4d13f6b933966b334207c30b90a44f10@o447951.ingest.us.sentry.io/4509756342730752 -2026-03-27T14:20:52.7119069Z SENTRY_AUTH_TOKEN: *** -2026-03-27T14:20:52.7119321Z XBCONNECT_TARGET: 10.2.1.54 -2026-03-27T14:20:52.7119543Z ##[endgroup] -2026-03-27T14:20:53.4427912Z Multiple search paths detected. Calculating the least common ancestor of all paths -2026-03-27T14:20:53.4450361Z The least common ancestor is C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox. This will be the root directory of the artifact -2026-03-27T14:20:53.4451415Z With the provided path, there will be 72 files uploaded -2026-03-27T14:20:53.4458129Z Artifact name is valid! -2026-03-27T14:20:53.4458390Z Root directory input is valid! -2026-03-27T14:20:53.9409393Z Beginning upload of artifact content to blob storage -2026-03-27T14:20:55.3112871Z Uploaded bytes 1120306 -2026-03-27T14:20:55.4238671Z Finished uploading artifact content to blob storage! -2026-03-27T14:20:55.4249527Z SHA256 digest of uploaded artifact zip is 7738b2868aca3c1321027d1e13fd8974ac097ad66753f2d5ef5e7237e9cae02e -2026-03-27T14:20:55.4251318Z Finalizing artifact upload -2026-03-27T14:20:55.8578333Z Artifact unity-integration-test-outputs.zip successfully finalized. Artifact ID 6145552815 -2026-03-27T14:20:55.8581150Z Artifact unity-integration-test-outputs has been successfully uploaded! Final size is 1120306 bytes. Artifact ID is 6145552815 -2026-03-27T14:20:55.8583053Z Artifact download URL: https://github.com/getsentry/sentry-xbox/actions/runs/23649555595/artifacts/6145552815 -2026-03-27T14:20:55.9991257Z Post job cleanup. -2026-03-27T14:20:56.2891467Z [command]"C:\Program Files\Git\cmd\git.exe" version -2026-03-27T14:20:56.4050948Z git version 2.51.1.windows.1 -2026-03-27T14:20:56.4165069Z Temporarily overriding HOME='C:\github_runners\vie_runner_0\_work\_temp\7ac2f467-70cc-4660-9017-7dad8f3fbff0' before making global git config changes -2026-03-27T14:20:56.4177599Z Adding repository directory to the temporary git global config as a safe directory -2026-03-27T14:20:56.4178544Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-unity -2026-03-27T14:20:56.5451268Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand -2026-03-27T14:20:56.6788646Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" -2026-03-27T14:20:58.6884556Z Entering 'modules/app-runner' -2026-03-27T14:20:59.0287953Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2026-03-27T14:20:59.1301694Z http.https://github.com/.extraheader -2026-03-27T14:20:59.1368180Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader -2026-03-27T14:20:59.2455906Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" -2026-03-27T14:21:01.1460475Z Entering 'modules/app-runner' -2026-03-27T14:21:01.4915931Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir: -2026-03-27T14:21:01.6047745Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url" -2026-03-27T14:21:03.5057881Z Entering 'modules/app-runner' -2026-03-27T14:21:03.6496340Z file:C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/.git/modules/modules/app-runner/config remote.origin.url -2026-03-27T14:21:03.7188516Z [command]"C:\Program Files\Git\cmd\git.exe" config --file C:/github_runners/vie_runner_0/_work/sentry-xbox/sentry-xbox/sentry-unity/.git/modules/modules/app-runner/config --name-only --get-regexp ^includeIf\.gitdir: -2026-03-27T14:21:03.9439295Z Post job cleanup. -2026-03-27T14:21:04.2261467Z [command]"C:\Program Files\Git\cmd\git.exe" version -2026-03-27T14:21:04.3249228Z git version 2.51.1.windows.1 -2026-03-27T14:21:04.3345067Z Temporarily overriding HOME='C:\github_runners\vie_runner_0\_work\_temp\07d91ca4-cfb6-4408-ae1b-9075aca3a7ea' before making global git config changes -2026-03-27T14:21:04.3345863Z Adding repository directory to the temporary git global config as a safe directory -2026-03-27T14:21:04.3354948Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\github_runners\vie_runner_0\_work\sentry-xbox\sentry-xbox\sentry-xbox -2026-03-27T14:21:04.4445953Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand -2026-03-27T14:21:04.5507748Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" -2026-03-27T14:21:06.4911146Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2026-03-27T14:21:06.5925243Z http.https://github.com/.extraheader -2026-03-27T14:21:06.5987071Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader -2026-03-27T14:21:06.7086226Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" -2026-03-27T14:21:08.6161209Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir: -2026-03-27T14:21:08.7220316Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url" -2026-03-27T14:21:10.6195509Z Cleaning up orphan processes -2026-03-27T14:21:10.6669780Z ##[warning]Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5, actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093, actions/upload-artifact@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ From 389f1ebfdb4e51ae1ce342ea923035f2155f821d Mon Sep 17 00:00:00 2001 From: bitsandfoxes Date: Tue, 31 Mar 2026 16:31:17 +0200 Subject: [PATCH 4/4] updated changelog.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 660a4056a..1ac85dcaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## Features + +- The _Metrics_ APIs are now stable: removed `Experimental` from `SentrySdk` and `SentryOptions` ([#2615](https://github.com/getsentry/sentry-unity/pull/2615)) + ### Dependencies - Bump Cocoa SDK from v9.7.0 to v9.8.0 ([#2596](https://github.com/getsentry/sentry-unity/pull/2596))