fix(shared,bot,discordbot): make club-picker Dapper calls AOT-safe (v3.9.2)
The 3.9.1 hotfix only repaired WizardDraftRepository, the most common
Dapper call in the wizard. The same AOT-unsafe CommandDefinition pattern
remained in 4 other places that the user hit immediately after the
deploy: the 'Choose visibility' wizard step triggers GetOwnerClubsAsync
when the user picks 'Публичная в витрине клуба' or 'Только для членов
клуба'. The wizard swallowed PlatformNotSupportedException, the
callback ack replied with '⚠️ Ошибка', and the next step never rendered.
Privacy 'didn't stick' from the user's perspective.
Two changes to fix the Discord side as well:
1. Switched GetOwnerClubsAsync / LoadClubsAsync / LoadManagerUserIdsAsync
to the direct (sql, params) overload across TelegramWizardMessenger,
DiscordWizardMessenger, DiscordWizardInteractionModule, and
DiscordPermissionLookup — same pattern as the 3.9.1 fix.
2. Added Dapper.AOT module attribute ([module: Dapper.DapperAot]) and
InterceptorsPreviewNamespaces to the DiscordBot project. The
DiscordBot assembly was previously skipped by the AOT source
generator, so even the direct-overload fix wouldn't have produced
interceptors for the Discord-specific Dapper call sites. With this
addition, the generator emits 3 DiscordBot-specific interceptors
(DiscordWizardMessenger, DiscordWizardInteractionModule,
DiscordPermissionLookup) and the AssemblyLoad ships with the right
GmRelay.DiscordBot.generated.cs.
Also expanded the AOT shape regression tests to cover all 4
CommandDefinition sites + added a 'containingClass' parameter to
ExtractMethodBody to disambiguate the duplicated LoadClubsAsync names
in DiscordWizardInteractionModule.
Bumps: 3.9.1 -> 3.9.2.
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 450 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 498 KiB |
@@ -6,7 +6,7 @@ on:
|
||||
- main
|
||||
|
||||
env:
|
||||
VERSION: 3.9.1
|
||||
VERSION: 3.9.2
|
||||
|
||||
jobs:
|
||||
# ЧАСТЬ 1: Собираем образы и кладем в Gitea (чтобы делиться с ребятами)
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,517 @@
|
||||
version: 1
|
||||
plan:
|
||||
name: 'Discord-визард создания игры/пула (issue #112)'
|
||||
max_concurrency: 1
|
||||
max_consecutive_failures: 2
|
||||
max_cycles: 6
|
||||
verifier_config:
|
||||
default_verifiers: [verifier]
|
||||
audit_sample_rate: 0.0
|
||||
tasks:
|
||||
- id: wizard-platform-refactor
|
||||
title: 'Рефакторинг визарда под платформо-нейтральный IWizardMessenger'
|
||||
prompt: |
|
||||
Задача: подготовить визард создания игр (issue #112) к переиспользованию
|
||||
из Discord-бота. Текущая стейт-машина Telegram-визарда завязана на
|
||||
`ITelegramWizardMessenger` и `Telegram.Bot.Types`. Нужно вынести ядро в
|
||||
`GmRelay.Shared`, оставив существующее Telegram-поведение работоспособным.
|
||||
|
||||
## Контекст репозитория (D:\Projects\Game)
|
||||
|
||||
Ключевые файлы (прочитай их перед началом работы):
|
||||
- `src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/GameCreationWizard.cs`
|
||||
(504 строки) — стейт-машина визарда, сейчас принимает `Update` от
|
||||
`Telegram.Bot`.
|
||||
- `src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/ITelegramWizardMessenger.cs`
|
||||
— 4 метода с `long chatId`/`int? messageThreadId`/`long ownerTelegramId`.
|
||||
- `src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/TelegramWizardMessenger.cs`
|
||||
— реализация.
|
||||
- `src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/WizardStep.cs` —
|
||||
рендер шагов в `InlineKeyboardMarkup` (Telegram-only).
|
||||
- `src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/WizardStepNames.cs`
|
||||
— имена шагов.
|
||||
- `src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/WizardCallbackData.cs`
|
||||
— сериализация callback data.
|
||||
- `src/GmRelay.Shared/Features/Sessions/CreateSession/Wizard/WizardDraft.cs` —
|
||||
`ChatId long`, `MessageThreadId int?`, `OwnerTelegramId long`,
|
||||
`DraftMessageId long?`, `Step string`, `PayloadJson string`.
|
||||
- `src/GmRelay.Shared/Features/Sessions/CreateSession/Wizard/IWizardDraftRepository.cs`
|
||||
— платформо-нейтральный (уже в Shared).
|
||||
- `src/GmRelay.Bot/Migrations/V031__add_wizard_drafts.sql` — таблица создана.
|
||||
- `tests/GmRelay.Bot.Tests/Features/Sessions/CreateSession/Wizard/` —
|
||||
7 тестов: WizardStepRender, GameCreationWizardStepTransitions,
|
||||
GameCreationWizardValidation, GameCreationWizardPoolSlot,
|
||||
UpdateRouterDelegation, UpdateRouterResetsDraftOnStaleCommand,
|
||||
WizardTestFakes (хелпер). ВСЕ должны продолжать проходить.
|
||||
- `src/GmRelay.Bot/Program.cs` — DI-регистрация `IWizardDraftRepository`,
|
||||
`ITelegramWizardMessenger`, `GameCreationWizard`.
|
||||
|
||||
## Что сделать
|
||||
|
||||
### 1. Платформо-нейтральный интерфейс в Shared
|
||||
|
||||
Создай `src/GmRelay.Shared/Features/Sessions/CreateSession/Wizard/IWizardMessenger.cs`
|
||||
с контрактом, достаточным для обеих платформ. Минимум:
|
||||
```csharp
|
||||
public interface IWizardMessenger
|
||||
{
|
||||
// Возвращает обновлённый draft message id (string, чтобы покрыть
|
||||
// и Telegram long, и Discord ulong).
|
||||
Task<string> EditDraftMessageAsync(WizardDraft draft, string text, WizardKeyboard keyboard, CancellationToken ct);
|
||||
Task<string> SendDraftMessageAsync(WizardDraft draft, string text, WizardKeyboard keyboard, CancellationToken ct);
|
||||
Task AnswerInteractionAsync(string interactionId, string? text, CancellationToken ct);
|
||||
Task<IReadOnlyList<WizardClubOption>> GetOwnerClubsAsync(string ownerId, CancellationToken ct);
|
||||
}
|
||||
```
|
||||
`WizardKeyboard` — record/класс, описывающий набор рядов и кнопок
|
||||
(линейный список `WizardAction` сгодится, ряды формирует адаптер при
|
||||
рендере шага — на твой выбор, лишь бы был согласованно).
|
||||
`WizardAction` — `(string Label, string Payload, WizardActionStyle Style)`
|
||||
со стилем `Primary|Secondary|Success|Danger` (если решишь делать ряды —
|
||||
добавь `Width` или подобное).
|
||||
|
||||
`WizardClubOption` перенеси из `GmRelay.Bot` в `GmRelay.Shared` (record с
|
||||
`Guid ClubId`, `string Name`).
|
||||
|
||||
### 2. Перенос ядра в Shared
|
||||
|
||||
Перенеси в `src/GmRelay.Shared/Features/Sessions/CreateSession/Wizard/`:
|
||||
- `GameCreationWizard.cs` — перепиши с `IWizardMessenger` вместо
|
||||
`ITelegramWizardMessenger`. `Update`/`Message`/`CallbackQuery` замени
|
||||
на платформо-нейтральный `WizardInteraction` (record с полями
|
||||
`OwnerId string`, `Text string?`, `CallbackPayload string?`,
|
||||
`PhotoFileId string?`, `PhotoUrl string?`, `InteractionId string`).
|
||||
- `WizardStepNames.cs`, `WizardCallbackData.cs`, `WizardStorageException.cs`.
|
||||
- Константы длин и лимитов (MaxTitleLength, MaxDescriptionLength и т.п.)
|
||||
— перенеси в `WizardStepLimits` (статический класс) в Shared.
|
||||
|
||||
Удали старые файлы из `GmRelay.Bot/Features/Sessions/CreateSession/Wizard/`,
|
||||
перенеси их `using`-и. Если в Shared нужны дополнительные зависимости
|
||||
(например, `Microsoft.Extensions.Logging.Abstractions`) — добавь в
|
||||
`GmRelay.Shared.csproj`, проверь, что Shared по-прежнему НЕ зависит от
|
||||
Telegram.Bot.
|
||||
|
||||
`WizardStep.cs` (рендер в `InlineKeyboardMarkup`) ОСТАВЬ в `GmRelay.Bot`
|
||||
— он Telegram-only. Аналогично создашь `DiscordWizardStep` в
|
||||
`GmRelay.DiscordBot` в следующей задаче.
|
||||
|
||||
### 3. Поле platform в wizard_drafts
|
||||
|
||||
Добавь миграцию `src/GmRelay.Bot/Migrations/V032__add_wizard_drafts_platform.sql`:
|
||||
```sql
|
||||
ALTER TABLE wizard_drafts ADD COLUMN platform TEXT NOT NULL DEFAULT 'Telegram';
|
||||
```
|
||||
`WizardDraft` POCO: добавь `string Platform { get; set; } = "Telegram";`.
|
||||
Обнови `WizardDraftRepository` (Dapper.AOT insert/select) — должны
|
||||
включать `platform`. Обнови `FakeWizardDraftRepository` в тестах.
|
||||
|
||||
### 4. Telegram-адаптер под новый контракт
|
||||
|
||||
`TelegramWizardMessenger` в Bot пусть реализует `IWizardMessenger`,
|
||||
конвертируя `(WizardDraft, text, keyboard)` в Telegram-вызовы и обратно.
|
||||
Рендер рядов в `InlineKeyboardMarkup` — внутри адаптера или отдельным
|
||||
хелпером в Bot. Сохрани существующее поведение (BackCancel, SkipBackCancel,
|
||||
AppendBackCancel и т.п.).
|
||||
|
||||
`CreateSessionHandler` в Bot — обнови `StartWizardAsync`, `SubmitDraftAsync`
|
||||
под новый messenger-контракт. `BuildCommand` должен ставить
|
||||
`Platform = "Telegram"`.
|
||||
|
||||
`WizardDraftCleanupService` — без изменений, только подключи
|
||||
обновлённый `IWizardDraftRepository`.
|
||||
|
||||
### 5. DI
|
||||
|
||||
В `src/GmRelay.Bot/Program.cs`:
|
||||
- Убери регистрацию `ITelegramWizardMessenger`, оставь
|
||||
`IWizardMessenger` → `TelegramWizardMessenger`.
|
||||
- Убери регистрацию `GameCreationWizard` из Bot, если он теперь в Shared
|
||||
(Shared не имеет Program.cs — зарегистрируй его в Bot, конструктор
|
||||
принимает `IWizardMessenger` и `IWizardDraftRepository`).
|
||||
|
||||
### 6. Тесты
|
||||
|
||||
Обнови `tests/GmRelay.Bot.Tests/Features/Sessions/CreateSession/Wizard/WizardTestFakes.cs`:
|
||||
- `FakeWizardMessenger` теперь реализует `IWizardMessenger`. Сигнатуры
|
||||
`EditDraftMessageAsync`/`SendDraftMessageAsync` принимают `WizardKeyboard`
|
||||
(или `IReadOnlyList<WizardAction>` — что выберешь).
|
||||
- `NewDraft` ставит `Platform = "Telegram"`.
|
||||
- `CallbackUpdate`/`TextUpdate` — оберни в `WizardInteraction` (helper-метод).
|
||||
|
||||
Цель: ВСЕ 7 существующих wizard-тестов продолжают проходить без
|
||||
изменения бизнес-смысла. Если тесты завязаны на конкретные тексты
|
||||
кнопок или callback-data — обнови assertions под новые форматы (но
|
||||
callback-data формат `wizard:cancel`, `wizard:back`, `wizard:choice:step:value`
|
||||
должен сохраниться для обратной совместимости с Telegram-флоу).
|
||||
|
||||
Добавь `WizardInteractionMapperTests` (минимум 3 кейса): конвертация
|
||||
`Update` → `WizardInteraction` для callback/text/photo.
|
||||
|
||||
## Acceptance
|
||||
|
||||
- `dotnet build` всего решения успешен.
|
||||
- `dotnet test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --verbosity normal`
|
||||
— все тесты зелёные.
|
||||
- `dotnet format --verify-no-changes` — без замечаний.
|
||||
- `git grep "Telegram.Bot" src/GmRelay.Shared/` — пусто.
|
||||
- `git grep "NetCord" src/GmRelay.Bot/` — пусто.
|
||||
- `GameCreationWizard` существует ровно в одном месте — в Shared.
|
||||
- `IWizardMessenger` живёт в Shared, `ITelegramWizardMessenger` удалён
|
||||
(или стал internal алиасом, если проще мигрировать).
|
||||
|
||||
## Не делай
|
||||
|
||||
- Не реализуй Discord-адаптер в этой задаче — это Task 2.
|
||||
- Не дублируй логику стейт-машины в Bot и Shared.
|
||||
- Не используй reflection.
|
||||
- Не ломай callback-data формат без migration-плана.
|
||||
|
||||
## Куда коммитить
|
||||
|
||||
Создай ветку `feat/issue-112-wizard-refactor`. Запиши в
|
||||
`deliverable.md` (корень репо) сводку: какие файлы созданы/изменены,
|
||||
какие тесты прошли, ссылка на ветку/PR.
|
||||
|
||||
Читай `D:\Projects\Game\CLAUDE.md` для команд сборки и тестов.
|
||||
assigned_to: coder
|
||||
verified_by: verifier
|
||||
verify_prompt: |
|
||||
Adversarial verification рефакторинга визарда под платформо-нейтральный
|
||||
контракт. НЕ перечитывай описание исполнителя — перезапускай команды
|
||||
и атакуй поведение.
|
||||
|
||||
## Шаги
|
||||
|
||||
1. `dotnet build D:\Projects\Game\GM-Relay.slnx` — должно собраться.
|
||||
2. `dotnet test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal`
|
||||
— ВСЕ тесты зелёные, особенно 7 wizard-тестов:
|
||||
`GameCreationWizardStepTransitions`,
|
||||
`GameCreationWizardValidation`,
|
||||
`GameCreationWizardPoolSlot`,
|
||||
`UpdateRouterDelegation`,
|
||||
`UpdateRouterResetsDraftOnStaleCommand`,
|
||||
`WizardStepRender`.
|
||||
3. `dotnet format --verify-no-changes --verbosity diagnostic` в
|
||||
`D:\Projects\Game` — без замечаний.
|
||||
4. `dotnet list package --vulnerable --include-transitive` в
|
||||
`D:\Projects\Game\src\GmRelay.Bot` и
|
||||
`D:\Projects\Game\src\GmRelay.DiscordBot` — нет HIGH/CRITICAL.
|
||||
5. `git grep -n "Telegram.Bot" D:\Projects\Game\src\GmRelay.Shared/`
|
||||
— должно быть пусто.
|
||||
6. `git grep -n "NetCord" D:\Projects\Game\src\GmRelay.Bot/`
|
||||
— должно быть пусто.
|
||||
7. `git grep -n "GameCreationWizard" D:\Projects\Game\src\`
|
||||
— `GameCreationWizard.cs` должен существовать РОВНО в одном месте
|
||||
(в `GmRelay.Shared`).
|
||||
8. `git grep -n "IWizardMessenger" D:\Projects\Game\src\`
|
||||
— интерфейс должен быть в `GmRelay.Shared`, а НЕ в Bot.
|
||||
9. `git grep -n "ITelegramWizardMessenger" D:\Projects\Game\src\`
|
||||
— должен быть удалён или заменён на алиас; НЕ должен быть
|
||||
активным контрактом, на который завязан `GameCreationWizard`.
|
||||
10. Проверь наличие миграции
|
||||
`D:\Projects\Game\src\GmRelay.Bot\Migrations\V032__add_wizard_drafts_platform.sql`.
|
||||
11. `git grep -n "Reflection" D:\Projects\Game\src\GmRelay.Shared/`
|
||||
— не должно быть reflection-based логики.
|
||||
12. Прочти `deliverable.md` в корне репо — сводка должна быть.
|
||||
|
||||
## Критерии FAIL
|
||||
|
||||
- Любой тест красный.
|
||||
- `dotnet build` падает.
|
||||
- `dotnet format` ругается.
|
||||
- Есть vulnerable HIGH/CRITICAL пакеты.
|
||||
- Shared зависит от Telegram.Bot.
|
||||
- Bot зависит от NetCord.
|
||||
- `GameCreationWizard` дублируется в Bot и Shared.
|
||||
- `IWizardMessenger` не в Shared.
|
||||
- Существующая text-only `/newsession` Telegram-команда сломана
|
||||
(запусти бот хотя бы на синтаксис — собери, посмотри, что
|
||||
`CreateSessionHandler.StartWizardAsync`/`SubmitDraftAsync`
|
||||
компилируются).
|
||||
- Reflection в AOT-критичном коде.
|
||||
- deliverable.md отсутствует.
|
||||
- Ветка/PR не созданы.
|
||||
|
||||
На FAIL укажи конкретный файл/строку/команду. НЕ просто «кажется,
|
||||
сломалось» — точные доказательства.
|
||||
timeout_ms: 1800000
|
||||
|
||||
- id: discord-wizard-impl
|
||||
title: 'Discord-адаптер визарда: slash-команда, кнопки, модалы, select-меню'
|
||||
prompt: |
|
||||
Задача: реализовать Discord-визард создания игры/пула игр (issue #112)
|
||||
в проекте `src/GmRelay.DiscordBot/`. Переиспользовать общую стейт-машину
|
||||
`GameCreationWizard` и `IWizardMessenger` из Shared (Task 1 уже подготовил
|
||||
контракт). Discord-бот использует NetCord; AOT-friendly код (без
|
||||
reflection, без динамической загрузки).
|
||||
|
||||
## Контекст
|
||||
|
||||
Что уже готово (Task 1):
|
||||
- `GmRelay.Shared/Features/Sessions/CreateSession/Wizard/IWizardMessenger.cs`
|
||||
- `GmRelay.Shared/Features/Sessions/CreateSession/Wizard/GameCreationWizard.cs`
|
||||
- `GmRelay.Shared/Features/Sessions/CreateSession/Wizard/WizardStepNames.cs`
|
||||
- `GmRelay.Shared/Features/Sessions/CreateSession/Wizard/WizardKeyboard.cs` /
|
||||
`WizardAction.cs` — как ты их назвал в Task 1.
|
||||
- Миграция V032 с колонкой `platform`.
|
||||
- Существующие wizard-тесты зелёные.
|
||||
|
||||
Discord-проект (`src/GmRelay.DiscordBot/`):
|
||||
- Использует NetCord, в Program.cs:
|
||||
`AddApplicationCommands<SlashCommandInteraction, SlashCommandContext>()`
|
||||
и `AddComponentInteractions<ButtonInteraction, ButtonInteractionContext>()`.
|
||||
- Содержит `DiscordNewSessionCommand` (text-only `/newsession`),
|
||||
`DiscordNewSessionHandler`, `DiscordSessionInteractionModule`
|
||||
с кнопками `[ComponentInteraction("join_session:...")]`.
|
||||
- Содержит `DiscordPermissionChecker` (owner/co-GM) и
|
||||
`DiscordPlatformMessenger` (для IPlatformMessenger).
|
||||
- Использует `NpgsqlDataSource` (БД общая с Bot).
|
||||
|
||||
## Что сделать
|
||||
|
||||
### 1. DiscordWizardMessenger (реализация IWizardMessenger)
|
||||
|
||||
`src/GmRelay.DiscordBot/Features/Sessions/Wizard/DiscordWizardMessenger.cs`:
|
||||
- `EditDraftMessageAsync` — редактирует embed, в котором `draft_id`
|
||||
зашит в footer или в customId кнопок. Если 15-минутный interaction
|
||||
token истёк — пересоздаёт сообщение в исходном канале, возвращает
|
||||
новый `messageId`.
|
||||
- `SendDraftMessageAsync` — отправляет embed с кнопками.
|
||||
- `AnswerInteractionAsync` — отвечает на interaction (ephemeral при
|
||||
необходимости). Для длительных операций — defer+followup.
|
||||
- `GetOwnerClubsAsync` — SQL-запрос через Dapper.AOT:
|
||||
```sql
|
||||
SELECT cm.club_id, c.name
|
||||
FROM club_memberships cm
|
||||
JOIN clubs c ON c.id = cm.club_id
|
||||
JOIN players p ON p.id = cm.player_id
|
||||
WHERE p.platform = 'Discord'
|
||||
AND p.external_user_id = @OwnerId
|
||||
AND cm.role IN ('Owner', 'CoGm')
|
||||
```
|
||||
Поля классы — в существующей схеме (посмотри V030 миграцию).
|
||||
Owner/co-GM права — в `club_memberships.role`.
|
||||
|
||||
Контекст для отправки/редактирования нужно где-то хранить между
|
||||
вызовами. Сделай in-memory кэш `DiscordWizardContextStore`:
|
||||
- Ключ — `draft.Id` (Guid).
|
||||
- Значение — `DiscordWizardContext(guildId, channelId, messageId,
|
||||
threadId?, lastInteractionToken)`.
|
||||
- При `SendDraftMessageAsync` / `EditDraftMessageAsync` обновляется.
|
||||
- На cancel / confirm — удаляется.
|
||||
|
||||
### 2. DiscordWizardStep (рендер шагов)
|
||||
|
||||
`src/GmRelay.DiscordBot/Features/Sessions/Wizard/DiscordWizardStep.cs`:
|
||||
- Метод `Render(WizardDraft draft, WizardPayload payload, IReadOnlyList<WizardClubOption> clubs) → (string text, WizardKeyboard keyboard, string? openModal)`.
|
||||
- Поле `openModal` — имя шага, для которого нужно открыть модал
|
||||
(`Title`, `Description`, `SystemFreeText`, `DurationFreeText`,
|
||||
`DateTime`, `Capacity`, `PoolSlotDateTime`, `PoolSlotCapacity`,
|
||||
`PoolSystemDurationFreeText`). Если null — просто рендерим embed
|
||||
+ кнопки.
|
||||
- Каждый шаг использует emoji-метки из Telegram-версии (🎲 📅 ⏱ и т.п.),
|
||||
но текст короче (Discord embed description 4096 символов).
|
||||
- CustomId формат: `wizard:btn:<step>:<value>` (кнопки),
|
||||
`wizard:select:<step>` (select menu, value в values[]),
|
||||
`wizard:modal:<step>` (модалы). Длина customId <= 100 символов.
|
||||
|
||||
Конкретные шаги:
|
||||
- `Type` — 2 кнопки single/pool + Cancel.
|
||||
- `Title` / `Description` / `Cover` — modal (Text Input, Short/Paragraph).
|
||||
`Cover` дополнительно принимает URL (Text Input, Short).
|
||||
- `System` — buttons (Dnd5e/Pathfinder2e/CallOfCthulhu7e/GURPS/Fate) +
|
||||
"Другое…" (modal) + "Пропустить" (button).
|
||||
- `Duration` — buttons (3ч/4ч/5ч/6ч) + "Другое…" (modal) + "Пропустить".
|
||||
- `DateTime` — modal с placeholder "ДД.ММ.ГГГГ ЧЧ:ММ".
|
||||
- `Capacity` — modal "Max players" + 2 кнопки waitlist on/off.
|
||||
- `Visibility` — StringSelectMenu (Public/Club/Members) + Back/Cancel.
|
||||
- `PickClub` — StringSelectMenu со списком клубов (max 25 опций).
|
||||
- `Publish` — 2 кнопки yes/no.
|
||||
- `Confirm` — preview-embed + 3 кнопки Create/Back/Cancel.
|
||||
- `PoolSystemDuration` — StringSelectMenu (Dnd5e:240, Pathfinder2e:240,
|
||||
CallOfCthulhu7e:180, GURPS:240) + "Custom" (modal) + Back/Cancel.
|
||||
- `PoolAddSlots` — 2 кнопки add/done + счётчик слотов в embed.
|
||||
- `PoolSlotDateTime` — modal.
|
||||
- `PoolSlotCapacity` — modal "Max players" + 2 кнопки waitlist.
|
||||
- `PoolConfirm` — preview-embed пула + 3 кнопки.
|
||||
|
||||
### 3. Slash-команда
|
||||
|
||||
`src/GmRelay.DiscordBot/Features/Sessions/Wizard/DiscordWizardCommand.cs`:
|
||||
- `[SlashCommand("newsession-wizard", "Пошаговое создание игры или пула")]`
|
||||
- Опциональный параметр `mode` (`single` / `pool`) для пропуска первого шага.
|
||||
- Проверка owner/co-GM прав через `DiscordPermissionChecker`.
|
||||
- Проверка существующего активного draft'а
|
||||
(`IWizardDraftRepository.GetActiveAsync`); если есть — показать
|
||||
ephemeral с кнопками Continue/Start over/Cancel.
|
||||
- Если нет — создать draft (`Platform = "Discord"`, `Step = "Type"`),
|
||||
отправить первое сообщение через `DiscordWizardMessenger`,
|
||||
сохранить `DraftMessageId` (строкой).
|
||||
|
||||
### 4. Interaction handlers
|
||||
|
||||
`src/GmRelay.DiscordBot/Features/Sessions/Wizard/DiscordWizardInteractionModule.cs`:
|
||||
- `[ComponentInteraction("wizard:btn:choice:*:*")]`
|
||||
— кнопки-выборы (Type, System, Duration, Capacity waitlist,
|
||||
Visibility, PickClub, Publish, PoolAddSlots, PoolSlotCapacity,
|
||||
Confirm, Back, Cancel). Парсит `step` и `value` из customId.
|
||||
- `[ComponentInteraction("wizard:btn:cancel")]`,
|
||||
`[ComponentInteraction("wizard:btn:back")]`,
|
||||
`[ComponentInteraction("wizard:btn:create")]` — отдельные (если
|
||||
customId не разбит на части, или разбит по другому).
|
||||
- `[ComponentInteraction("wizard:select:*:*")]`
|
||||
— StringSelectMenu (Visibility, PickClub, PoolSystemDuration).
|
||||
Парсит `step` и `value` из values[].
|
||||
- `[ModalInteraction("wizard:modal:*")]`
|
||||
— модалы. Парсит `step` из customId, поля из ModalInteractionData.
|
||||
Преобразует в `WizardInteraction` (Text = value) и вызывает
|
||||
`GameCreationWizard.HandleUpdateAsync`.
|
||||
|
||||
Каждый обработчик:
|
||||
1. Достаёт `draft_id` из customId (или из data store).
|
||||
2. Загружает draft из `IWizardDraftRepository`.
|
||||
3. Формирует `WizardInteraction` (OwnerId, Text/CallbackPayload,
|
||||
InteractionId).
|
||||
4. Вызывает `GameCreationWizard.HandleUpdateAsync(draft, interaction, ct)`.
|
||||
5. На ошибке валидации — перерендерить шаг с ⚠️ префиксом.
|
||||
6. На cancel — отредактировать сообщение на "❌ Мастер отменён",
|
||||
удалить draft из кэша.
|
||||
7. На confirm (create) — вызвать финализацию (см. п. 5).
|
||||
|
||||
### 5. Финализация (Submit)
|
||||
|
||||
Сделай `DiscordWizardSubmitter` (или метод в `DiscordWizardInteractionModule`):
|
||||
- Загружает `WizardPayload` из `draft.PayloadJson`.
|
||||
- Валидирует полноту (заголовок, система, длительность, видимость;
|
||||
для single — дата/лимит; для pool — >=1 слот).
|
||||
- Строит `CreateSessionCommand` (платформо-нейтральный) и вызывает
|
||||
`GmRelay.Shared.Features.Sessions.CreateSession.CreateSessionHandler.HandleAsync`.
|
||||
- На успехе — отредактировать wizard-сообщение на "✅ Создано: N сессий",
|
||||
удалить draft.
|
||||
- На ошибке — показать retry/cancel кнопки (retry = повтор Submit).
|
||||
|
||||
### 6. DI
|
||||
|
||||
В `src/GmRelay.DiscordBot/Program.cs`:
|
||||
- Зарегистрируй `IWizardDraftRepository` (общий; если реализация в
|
||||
Bot — продублируй в DiscordBot, чтобы не таскать сборку Bot).
|
||||
Dapper.AOT-атрибуты уже работают в обоих проектах.
|
||||
- Зарегистрируй `IWizardMessenger` → `DiscordWizardMessenger`
|
||||
(Singleton, конструктор принимает Discord client и кэш).
|
||||
- Зарегистрируй `GameCreationWizard` (Singleton, берёт
|
||||
`IWizardDraftRepository` + `IWizardMessenger`).
|
||||
- Зарегистрируй `DiscordWizardContextStore`, `DiscordWizardSubmitter`.
|
||||
- Не сломай существующие регистрации (DiscordNewSessionCommand,
|
||||
DiscordSessionInteractionModule, DiscordPlatformMessenger и т.д.).
|
||||
|
||||
### 7. Тесты
|
||||
|
||||
Добавь в `tests/GmRelay.Bot.Tests/Discord/`:
|
||||
- `DiscordWizardMessengerTests` — fake `INetCordClient` / context;
|
||||
проверка edit/send/answer. Используй ручные fakes (без Moq) —
|
||||
проект convention.
|
||||
- `DiscordWizardStepTests` — для каждого шага: правильный набор
|
||||
actions (label/payload/style), правильный customId, корректный
|
||||
`openModal` флаг.
|
||||
- `DiscordWizardSubmitterTests` — happy path (single + pool),
|
||||
missing fields, DB error → retry flow.
|
||||
|
||||
Если не получается замокать NetCord (он registration-based) —
|
||||
вынеси `DiscordWizardContextStore` в отдельный класс с
|
||||
интерфейсом `IWizardContextStore`, тестируй через fake store,
|
||||
а сам submitter / messenger — через интеграционный тест с реальным
|
||||
контекстом (минимум: проверка формата customId, генерации embed).
|
||||
|
||||
## Acceptance
|
||||
|
||||
- `dotnet build` решения успешен.
|
||||
- `dotnet test` — все wizard-тесты + Discord-тесты зелёные.
|
||||
- `dotnet format --verify-no-changes` — без замечаний.
|
||||
- `git grep "Telegram.Bot" src/GmRelay.DiscordBot/` — пусто.
|
||||
- `git grep "NetCord" src/GmRelay.Shared/` — пусто.
|
||||
- Существующая команда `/newsession` (text-only) работает.
|
||||
- Новая команда `/newsession-wizard` доступна в Discord.
|
||||
- Стейт-машина одна — в Shared.
|
||||
|
||||
## Не делай
|
||||
|
||||
- Не дублируй логику `GameCreationWizard`.
|
||||
- Не используй reflection.
|
||||
- Не ломай callback-data формат, если он уже согласован с Telegram.
|
||||
- Не пиши большие markdown в embed (лимит 4096, плюс нужен запас).
|
||||
|
||||
## Куда коммитить
|
||||
|
||||
Допиши в ту же ветку `feat/issue-112-wizard-refactor` (или создай
|
||||
`feat/issue-112-discord-wizard` поверх, если refactor ещё не в main).
|
||||
Запиши в `deliverable.md` сводку: какие файлы, какие тесты добавлены,
|
||||
PR-ссылка. Пометь отдельно «открытые вопросы» (если есть).
|
||||
|
||||
Читай `D:\Projects\Game\CLAUDE.md` для команд.
|
||||
assigned_to: coder
|
||||
depends_on: [wizard-platform-refactor]
|
||||
verified_by: verifier
|
||||
verify_prompt: |
|
||||
Adversarial verification Discord-визарда (issue #112). НЕ перечитывай
|
||||
описание исполнителя — перезапускай команды и атакуй поведение.
|
||||
|
||||
## Шаги
|
||||
|
||||
1. `dotnet build D:\Projects\Game\GM-Relay.slnx` — успех.
|
||||
2. `dotnet test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal`
|
||||
— все wizard-тесты + новые Discord-тесты зелёные.
|
||||
3. `dotnet format --verify-no-changes --verbosity diagnostic` —
|
||||
без замечаний.
|
||||
4. `dotnet list package --vulnerable --include-transitive` в
|
||||
`src/GmRelay.Bot` и `src/GmRelay.DiscordBot` — нет HIGH/CRITICAL.
|
||||
5. `git grep "Telegram.Bot" D:\Projects\Game\src\GmRelay.DiscordBot/`
|
||||
— пусто.
|
||||
6. `git grep "NetCord" D:\Projects\Game\src\GmRelay.Shared/`
|
||||
— пусто.
|
||||
7. `git grep "Reflection" D:\Projects\Game\src\GmRelay.DiscordBot/Features/Sessions/Wizard/`
|
||||
— пусто (AOT-safe).
|
||||
8. `git grep "GameCreationWizard" D:\Projects\Game\src\` —
|
||||
существует ровно в `GmRelay.Shared/Features/Sessions/CreateSession/Wizard/`,
|
||||
адаптеры ссылаются через `using`.
|
||||
9. `git grep "DiscordWizardMessenger"` — реализует `IWizardMessenger`.
|
||||
10. CustomId формат: `git grep "wizard:btn:" D:\Projects\Game\src\GmRelay.DiscordBot/`
|
||||
и `git grep "wizard:select:"`, `wizard:modal:` — должны быть
|
||||
использованы последовательно; длина customId не превышает
|
||||
100 символов нигде.
|
||||
11. `DiscordWizardCommand` — slash-команда `/newsession-wizard`
|
||||
(или эквивалент) с проверкой owner/co-GM.
|
||||
12. `DiscordWizardInteractionModule` — обработчики кнопок,
|
||||
select-меню, модалов.
|
||||
13. `DiscordNewSessionCommand` (text-only `/newsession`) — компилируется
|
||||
и зарегистрирована (не сломана).
|
||||
14. `deliverable.md` в корне репо — сводка + ссылка на PR/ветку.
|
||||
|
||||
## Adversarial прогоны (опционально, но желательно)
|
||||
|
||||
- Запусти `dotnet build src/GmRelay.DiscordBot/GmRelay.DiscordBot.csproj --no-restore`
|
||||
и проверь warning list.
|
||||
- Прочти 1-2 самых больших новых файла (DiscordWizardMessenger,
|
||||
DiscordWizardInteractionModule) и найди потенциальные баги:
|
||||
* Возможен NRE при `Context.User as GuildInteractionUser is null`?
|
||||
* CustomId overflow (>100)?
|
||||
* Modal interaction с истёкшим token — корректно ли?
|
||||
* `GetOwnerClubsAsync` фильтрует по роли Owner/CoGm?
|
||||
* Кэш контекста чистится на cancel?
|
||||
|
||||
## Критерии FAIL
|
||||
|
||||
- Любой тест красный.
|
||||
- `dotnet build` падает.
|
||||
- `dotnet format` ругается.
|
||||
- Есть vulnerable HIGH/CRITICAL.
|
||||
- Telegram.Bot в DiscordBot или NetCord в Shared.
|
||||
- Reflection в AOT-критичном коде.
|
||||
- `GameCreationWizard` дублируется.
|
||||
- CustomId > 100 символов где-либо.
|
||||
- `/newsession` text-only сломан.
|
||||
- deliverable.md отсутствует или PR не открыт.
|
||||
- В одном из файлов найдены серьёзные архитектурные косяки
|
||||
(например, `Context.User as GuildInteractionUser` без null-проверки).
|
||||
|
||||
На FAIL укажи конкретный файл/строку/команду и обоснование.
|
||||
timeout_ms: 1800000
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:55:21.294] [000027B4] === Logging started ===
|
||||
[2026-06-05 17:55:21.299] [000027B4] Executing: "C:\Program Files\dotnet\dotnet.exe" build D:\Projects\Game\GM-Relay.slnx, PID: 10164, PPID: 19000
|
||||
[2026-06-05 17:55:21.301] [000027B4] IsElevated: False
|
||||
[2026-06-05 17:55:21.301] [000027B4] Is64BitProcess: True
|
||||
[2026-06-05 17:55:21.301] [000027B4] RebootPending: True
|
||||
[2026-06-05 17:55:21.301] [000027B4] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:55:21.301] [000027B4] HostArchitecture: x64
|
||||
[2026-06-05 17:55:21.301] [000027B4] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:55:21.301] [000027B4] VerifySignatures: False
|
||||
[2026-06-05 17:55:21.301] [000027B4] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:55:32.158] [000027B4] Shutting down
|
||||
[2026-06-05 17:55:32.158] [000027B4] Shutdown completed.
|
||||
[2026-06-05 17:55:32.158] [000027B4] Restart required: False
|
||||
[2026-06-05 17:55:32.159] [000027B4] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:59:53.712] [000027B8] === Logging started ===
|
||||
[2026-06-05 16:59:53.720] [000027B8] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj -- C:\Users\hegin\.nuget\packages\netcord\1.0.0-alpha.489\lib\net10.0\NetCord.dll, PID: 10168, PPID: 41652
|
||||
[2026-06-05 16:59:53.721] [000027B8] IsElevated: False
|
||||
[2026-06-05 16:59:53.721] [000027B8] Is64BitProcess: True
|
||||
[2026-06-05 16:59:53.721] [000027B8] RebootPending: True
|
||||
[2026-06-05 16:59:53.721] [000027B8] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:59:53.721] [000027B8] HostArchitecture: x64
|
||||
[2026-06-05 16:59:53.721] [000027B8] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:59:53.721] [000027B8] VerifySignatures: False
|
||||
[2026-06-05 16:59:53.721] [000027B8] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:59:55.991] [000027B8] Shutting down
|
||||
[2026-06-05 16:59:55.992] [000027B8] Shutdown completed.
|
||||
[2026-06-05 16:59:55.992] [000027B8] Restart required: False
|
||||
[2026-06-05 16:59:55.993] [000027B8] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:07:00.610] [00002AF8] === Logging started ===
|
||||
[2026-06-05 17:07:00.616] [00002AF8] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 11000, PPID: 23124
|
||||
[2026-06-05 17:07:00.617] [00002AF8] IsElevated: False
|
||||
[2026-06-05 17:07:00.617] [00002AF8] Is64BitProcess: True
|
||||
[2026-06-05 17:07:00.617] [00002AF8] RebootPending: True
|
||||
[2026-06-05 17:07:00.617] [00002AF8] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:07:00.617] [00002AF8] HostArchitecture: x64
|
||||
[2026-06-05 17:07:00.617] [00002AF8] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:07:00.617] [00002AF8] VerifySignatures: False
|
||||
[2026-06-05 17:07:00.617] [00002AF8] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:07:02.193] [00002AF8] Shutting down
|
||||
[2026-06-05 17:07:02.193] [00002AF8] Shutdown completed.
|
||||
[2026-06-05 17:07:02.193] [00002AF8] Restart required: False
|
||||
[2026-06-05 17:07:02.193] [00002AF8] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:08:56.853] [00002C6C] === Logging started ===
|
||||
[2026-06-05 17:08:56.858] [00002C6C] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 11372, PPID: 1704
|
||||
[2026-06-05 17:08:56.860] [00002C6C] IsElevated: False
|
||||
[2026-06-05 17:08:56.860] [00002C6C] Is64BitProcess: True
|
||||
[2026-06-05 17:08:56.860] [00002C6C] RebootPending: True
|
||||
[2026-06-05 17:08:56.860] [00002C6C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:08:56.860] [00002C6C] HostArchitecture: x64
|
||||
[2026-06-05 17:08:56.860] [00002C6C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:08:56.860] [00002C6C] VerifySignatures: False
|
||||
[2026-06-05 17:08:56.860] [00002C6C] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:08:57.911] [00002C6C] Shutting down
|
||||
[2026-06-05 17:08:57.911] [00002C6C] Shutdown completed.
|
||||
[2026-06-05 17:08:57.911] [00002C6C] Restart required: False
|
||||
[2026-06-05 17:08:57.911] [00002C6C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:12:00.775] [00002CDC] === Logging started ===
|
||||
[2026-06-05 16:12:00.780] [00002CDC] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.Bot/GmRelay.Bot.csproj --no-restore, PID: 11484, PPID: 40540
|
||||
[2026-06-05 16:12:00.782] [00002CDC] IsElevated: False
|
||||
[2026-06-05 16:12:00.782] [00002CDC] Is64BitProcess: True
|
||||
[2026-06-05 16:12:00.782] [00002CDC] RebootPending: False
|
||||
[2026-06-05 16:12:00.782] [00002CDC] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:12:00.782] [00002CDC] HostArchitecture: x64
|
||||
[2026-06-05 16:12:00.782] [00002CDC] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:12:00.782] [00002CDC] VerifySignatures: False
|
||||
[2026-06-05 16:12:00.782] [00002CDC] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:12:08.702] [00002CDC] Shutting down
|
||||
[2026-06-05 16:12:08.703] [00002CDC] Shutdown completed.
|
||||
[2026-06-05 16:12:08.703] [00002CDC] Restart required: False
|
||||
[2026-06-05 16:12:08.703] [00002CDC] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:34:49.425] [00000494] === Logging started ===
|
||||
[2026-06-05 18:34:49.431] [00000494] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal, PID: 1172, PPID: 13264
|
||||
[2026-06-05 18:34:49.433] [00000494] IsElevated: False
|
||||
[2026-06-05 18:34:49.433] [00000494] Is64BitProcess: True
|
||||
[2026-06-05 18:34:49.433] [00000494] RebootPending: True
|
||||
[2026-06-05 18:34:49.433] [00000494] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:34:49.433] [00000494] HostArchitecture: x64
|
||||
[2026-06-05 18:34:49.433] [00000494] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:34:49.433] [00000494] VerifySignatures: False
|
||||
[2026-06-05 18:34:49.433] [00000494] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:35:11.204] [00000494] Shutting down
|
||||
[2026-06-05 18:35:11.204] [00000494] Shutdown completed.
|
||||
[2026-06-05 18:35:11.204] [00000494] Restart required: False
|
||||
[2026-06-05 18:35:11.204] [00000494] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:26:08.231] [00002E30] === Logging started ===
|
||||
[2026-06-05 16:26:08.236] [00002E30] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal, PID: 11824, PPID: 33224
|
||||
[2026-06-05 16:26:08.238] [00002E30] IsElevated: False
|
||||
[2026-06-05 16:26:08.238] [00002E30] Is64BitProcess: True
|
||||
[2026-06-05 16:26:08.238] [00002E30] RebootPending: False
|
||||
[2026-06-05 16:26:08.238] [00002E30] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:26:08.238] [00002E30] HostArchitecture: x64
|
||||
[2026-06-05 16:26:08.238] [00002E30] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:26:08.238] [00002E30] VerifySignatures: False
|
||||
[2026-06-05 16:26:08.238] [00002E30] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:26:32.400] [00002E30] Shutting down
|
||||
[2026-06-05 16:26:32.400] [00002E30] Shutdown completed.
|
||||
[2026-06-05 16:26:32.400] [00002E30] Restart required: False
|
||||
[2026-06-05 16:26:32.401] [00002E30] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:27:09.150] [00002EF4] === Logging started ===
|
||||
[2026-06-05 16:27:09.155] [00002EF4] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal, PID: 12020, PPID: 21092
|
||||
[2026-06-05 16:27:09.157] [00002EF4] IsElevated: False
|
||||
[2026-06-05 16:27:09.157] [00002EF4] Is64BitProcess: True
|
||||
[2026-06-05 16:27:09.157] [00002EF4] RebootPending: False
|
||||
[2026-06-05 16:27:09.157] [00002EF4] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:27:09.157] [00002EF4] HostArchitecture: x64
|
||||
[2026-06-05 16:27:09.157] [00002EF4] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:27:09.157] [00002EF4] VerifySignatures: False
|
||||
[2026-06-05 16:27:09.157] [00002EF4] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:27:31.125] [00002EF4] Shutting down
|
||||
[2026-06-05 16:27:31.126] [00002EF4] Shutdown completed.
|
||||
[2026-06-05 16:27:31.126] [00002EF4] Restart required: False
|
||||
[2026-06-05 16:27:31.126] [00002EF4] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:05:16.664] [00002FB0] === Logging started ===
|
||||
[2026-06-05 17:05:16.669] [00002FB0] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj -- C:\Users\hegin\.nuget\packages\netcord.hosting\1.0.0-alpha.489\lib\net10.0\NetCord.Hosting.dll, PID: 12208, PPID: 51792
|
||||
[2026-06-05 17:05:16.670] [00002FB0] IsElevated: False
|
||||
[2026-06-05 17:05:16.670] [00002FB0] Is64BitProcess: True
|
||||
[2026-06-05 17:05:16.670] [00002FB0] RebootPending: True
|
||||
[2026-06-05 17:05:16.670] [00002FB0] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:05:16.670] [00002FB0] HostArchitecture: x64
|
||||
[2026-06-05 17:05:16.670] [00002FB0] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:05:16.670] [00002FB0] VerifySignatures: False
|
||||
[2026-06-05 17:05:16.670] [00002FB0] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:05:18.325] [00002FB0] Shutting down
|
||||
[2026-06-05 17:05:18.325] [00002FB0] Shutdown completed.
|
||||
[2026-06-05 17:05:18.325] [00002FB0] Restart required: False
|
||||
[2026-06-05 17:05:18.325] [00002FB0] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:19:41.373] [0000314C] === Logging started ===
|
||||
[2026-06-05 16:19:41.380] [0000314C] Executing: "C:\Program Files\dotnet\dotnet.exe" build --no-restore, PID: 12620, PPID: 45480
|
||||
[2026-06-05 16:19:41.381] [0000314C] IsElevated: False
|
||||
[2026-06-05 16:19:41.381] [0000314C] Is64BitProcess: True
|
||||
[2026-06-05 16:19:41.381] [0000314C] RebootPending: False
|
||||
[2026-06-05 16:19:41.381] [0000314C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:19:41.381] [0000314C] HostArchitecture: x64
|
||||
[2026-06-05 16:19:41.381] [0000314C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:19:41.381] [0000314C] VerifySignatures: False
|
||||
[2026-06-05 16:19:41.381] [0000314C] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:19:47.111] [0000314C] Shutting down
|
||||
[2026-06-05 16:19:47.111] [0000314C] Shutdown completed.
|
||||
[2026-06-05 16:19:47.111] [0000314C] Restart required: False
|
||||
[2026-06-05 16:19:47.111] [0000314C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:55:38.058] [000033D0] === Logging started ===
|
||||
[2026-06-05 17:55:38.064] [000033D0] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal, PID: 13264, PPID: 46572
|
||||
[2026-06-05 17:55:38.066] [000033D0] IsElevated: False
|
||||
[2026-06-05 17:55:38.066] [000033D0] Is64BitProcess: True
|
||||
[2026-06-05 17:55:38.066] [000033D0] RebootPending: True
|
||||
[2026-06-05 17:55:38.066] [000033D0] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:55:38.066] [000033D0] HostArchitecture: x64
|
||||
[2026-06-05 17:55:38.066] [000033D0] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:55:38.066] [000033D0] VerifySignatures: False
|
||||
[2026-06-05 17:55:38.066] [000033D0] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:56:01.432] [000033D0] Shutting down
|
||||
[2026-06-05 17:56:01.432] [000033D0] Shutdown completed.
|
||||
[2026-06-05 17:56:01.432] [000033D0] Restart required: False
|
||||
[2026-06-05 17:56:01.432] [000033D0] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:03:34.206] [000034CC] === Logging started ===
|
||||
[2026-06-05 17:03:34.211] [000034CC] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj -- C:\Users\hegin\.nuget\packages\netcord.hosting\1.0.0-alpha.489\lib\net10.0\NetCord.Hosting.dll, PID: 13516, PPID: 39940
|
||||
[2026-06-05 17:03:34.212] [000034CC] IsElevated: False
|
||||
[2026-06-05 17:03:34.212] [000034CC] Is64BitProcess: True
|
||||
[2026-06-05 17:03:34.212] [000034CC] RebootPending: True
|
||||
[2026-06-05 17:03:34.212] [000034CC] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:03:34.212] [000034CC] HostArchitecture: x64
|
||||
[2026-06-05 17:03:34.212] [000034CC] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:03:34.212] [000034CC] VerifySignatures: False
|
||||
[2026-06-05 17:03:34.212] [000034CC] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:03:39.324] [000034CC] Shutting down
|
||||
[2026-06-05 17:03:39.324] [000034CC] Shutdown completed.
|
||||
[2026-06-05 17:03:39.324] [000034CC] Restart required: False
|
||||
[2026-06-05 17:03:39.325] [000034CC] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:36:22.048] [0000350C] === Logging started ===
|
||||
[2026-06-05 18:36:22.054] [0000350C] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~DiscordWizardInteractionModuleSourceTests --verbosity normal, PID: 13580, PPID: 39160
|
||||
[2026-06-05 18:36:22.056] [0000350C] IsElevated: False
|
||||
[2026-06-05 18:36:22.056] [0000350C] Is64BitProcess: True
|
||||
[2026-06-05 18:36:22.056] [0000350C] RebootPending: True
|
||||
[2026-06-05 18:36:22.056] [0000350C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:36:22.056] [0000350C] HostArchitecture: x64
|
||||
[2026-06-05 18:36:22.056] [0000350C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:36:22.056] [0000350C] VerifySignatures: False
|
||||
[2026-06-05 18:36:22.056] [0000350C] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:36:26.430] [0000350C] Shutting down
|
||||
[2026-06-05 18:36:26.430] [0000350C] Shutdown completed.
|
||||
[2026-06-05 18:36:26.430] [0000350C] Restart required: False
|
||||
[2026-06-05 18:36:26.431] [0000350C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:04:05.511] [00003C60] === Logging started ===
|
||||
[2026-06-05 18:04:05.517] [00003C60] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~DiscordStartupTests.DiscordSessionSlashCommands_ShouldBeDiscoverableByNetCordService --verbosity normal, PID: 15456, PPID: 22200
|
||||
[2026-06-05 18:04:05.518] [00003C60] IsElevated: False
|
||||
[2026-06-05 18:04:05.518] [00003C60] Is64BitProcess: True
|
||||
[2026-06-05 18:04:05.518] [00003C60] RebootPending: True
|
||||
[2026-06-05 18:04:05.518] [00003C60] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:04:05.518] [00003C60] HostArchitecture: x64
|
||||
[2026-06-05 18:04:05.518] [00003C60] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:04:05.518] [00003C60] VerifySignatures: False
|
||||
[2026-06-05 18:04:05.518] [00003C60] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:04:09.909] [00003C60] Shutting down
|
||||
[2026-06-05 18:04:09.909] [00003C60] Shutdown completed.
|
||||
[2026-06-05 18:04:09.909] [00003C60] Restart required: False
|
||||
[2026-06-05 18:04:09.909] [00003C60] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:10:34.259] [00003E70] === Logging started ===
|
||||
[2026-06-05 18:10:34.264] [00003E70] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 15984, PPID: 36992
|
||||
[2026-06-05 18:10:34.266] [00003E70] IsElevated: False
|
||||
[2026-06-05 18:10:34.266] [00003E70] Is64BitProcess: True
|
||||
[2026-06-05 18:10:34.266] [00003E70] RebootPending: True
|
||||
[2026-06-05 18:10:34.266] [00003E70] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:10:34.266] [00003E70] HostArchitecture: x64
|
||||
[2026-06-05 18:10:34.266] [00003E70] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:10:34.266] [00003E70] VerifySignatures: False
|
||||
[2026-06-05 18:10:34.266] [00003E70] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:10:38.156] [00003E70] Shutting down
|
||||
[2026-06-05 18:10:38.156] [00003E70] Shutdown completed.
|
||||
[2026-06-05 18:10:38.156] [00003E70] Restart required: False
|
||||
[2026-06-05 18:10:38.156] [00003E70] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:29:54.365] [00004090] === Logging started ===
|
||||
[2026-06-05 17:29:54.371] [00004090] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.DiscordBot/GmRelay.DiscordBot.csproj --no-restore, PID: 16528, PPID: 22264
|
||||
[2026-06-05 17:29:54.373] [00004090] IsElevated: False
|
||||
[2026-06-05 17:29:54.373] [00004090] Is64BitProcess: True
|
||||
[2026-06-05 17:29:54.373] [00004090] RebootPending: True
|
||||
[2026-06-05 17:29:54.373] [00004090] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:29:54.373] [00004090] HostArchitecture: x64
|
||||
[2026-06-05 17:29:54.373] [00004090] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:29:54.373] [00004090] VerifySignatures: False
|
||||
[2026-06-05 17:29:54.373] [00004090] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:30:02.368] [00004090] Shutting down
|
||||
[2026-06-05 17:30:02.368] [00004090] Shutdown completed.
|
||||
[2026-06-05 17:30:02.368] [00004090] Restart required: False
|
||||
[2026-06-05 17:30:02.369] [00004090] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:22:49.077] [000042EC] === Logging started ===
|
||||
[2026-06-05 18:22:49.084] [000042EC] Executing: "C:\Program Files\dotnet\dotnet.exe" build --no-restore, PID: 17132, PPID: 23212
|
||||
[2026-06-05 18:22:49.086] [000042EC] IsElevated: False
|
||||
[2026-06-05 18:22:49.086] [000042EC] Is64BitProcess: True
|
||||
[2026-06-05 18:22:49.086] [000042EC] RebootPending: True
|
||||
[2026-06-05 18:22:49.086] [000042EC] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:22:49.086] [000042EC] HostArchitecture: x64
|
||||
[2026-06-05 18:22:49.086] [000042EC] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:22:49.086] [000042EC] VerifySignatures: False
|
||||
[2026-06-05 18:22:49.086] [000042EC] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:22:54.568] [000042EC] Shutting down
|
||||
[2026-06-05 18:22:54.568] [000042EC] Shutdown completed.
|
||||
[2026-06-05 18:22:54.568] [000042EC] Restart required: False
|
||||
[2026-06-05 18:22:54.568] [000042EC] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:32:27.743] [00004470] === Logging started ===
|
||||
[2026-06-05 17:32:27.750] [00004470] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 17520, PPID: 47336
|
||||
[2026-06-05 17:32:27.752] [00004470] IsElevated: False
|
||||
[2026-06-05 17:32:27.752] [00004470] Is64BitProcess: True
|
||||
[2026-06-05 17:32:27.752] [00004470] RebootPending: True
|
||||
[2026-06-05 17:32:27.752] [00004470] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:32:27.752] [00004470] HostArchitecture: x64
|
||||
[2026-06-05 17:32:27.752] [00004470] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:32:27.752] [00004470] VerifySignatures: False
|
||||
[2026-06-05 17:32:27.752] [00004470] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:32:29.031] [00004470] Shutting down
|
||||
[2026-06-05 17:32:29.031] [00004470] Shutdown completed.
|
||||
[2026-06-05 17:32:29.031] [00004470] Restart required: False
|
||||
[2026-06-05 17:32:29.032] [00004470] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:08:18.076] [000046CC] === Logging started ===
|
||||
[2026-06-05 17:08:18.082] [000046CC] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 18124, PPID: 33484
|
||||
[2026-06-05 17:08:18.082] [000046CC] IsElevated: False
|
||||
[2026-06-05 17:08:18.082] [000046CC] Is64BitProcess: True
|
||||
[2026-06-05 17:08:18.082] [000046CC] RebootPending: True
|
||||
[2026-06-05 17:08:18.082] [000046CC] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:08:18.082] [000046CC] HostArchitecture: x64
|
||||
[2026-06-05 17:08:18.082] [000046CC] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:08:18.082] [000046CC] VerifySignatures: False
|
||||
[2026-06-05 17:08:18.082] [000046CC] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:08:19.310] [000046CC] Shutting down
|
||||
[2026-06-05 17:08:19.310] [000046CC] Shutdown completed.
|
||||
[2026-06-05 17:08:19.310] [000046CC] Restart required: False
|
||||
[2026-06-05 17:08:19.310] [000046CC] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:43:55.292] [00004718] === Logging started ===
|
||||
[2026-06-05 17:43:55.298] [00004718] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-build --verbosity minimal, PID: 18200, PPID: 33880
|
||||
[2026-06-05 17:43:55.300] [00004718] IsElevated: False
|
||||
[2026-06-05 17:43:55.300] [00004718] Is64BitProcess: True
|
||||
[2026-06-05 17:43:55.300] [00004718] RebootPending: True
|
||||
[2026-06-05 17:43:55.300] [00004718] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:43:55.300] [00004718] HostArchitecture: x64
|
||||
[2026-06-05 17:43:55.300] [00004718] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:43:55.300] [00004718] VerifySignatures: False
|
||||
[2026-06-05 17:43:55.300] [00004718] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:44:14.934] [00004718] Shutting down
|
||||
[2026-06-05 17:44:14.934] [00004718] Shutdown completed.
|
||||
[2026-06-05 17:44:14.934] [00004718] Restart required: False
|
||||
[2026-06-05 17:44:14.934] [00004718] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:15:39.743] [00004A38] === Logging started ===
|
||||
[2026-06-05 18:15:39.749] [00004A38] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 19000, PPID: 24592
|
||||
[2026-06-05 18:15:39.751] [00004A38] IsElevated: False
|
||||
[2026-06-05 18:15:39.751] [00004A38] Is64BitProcess: True
|
||||
[2026-06-05 18:15:39.751] [00004A38] RebootPending: True
|
||||
[2026-06-05 18:15:39.751] [00004A38] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:15:39.751] [00004A38] HostArchitecture: x64
|
||||
[2026-06-05 18:15:39.751] [00004A38] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:15:39.751] [00004A38] VerifySignatures: False
|
||||
[2026-06-05 18:15:39.751] [00004A38] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:15:40.787] [00004A38] Shutting down
|
||||
[2026-06-05 18:15:40.787] [00004A38] Shutdown completed.
|
||||
[2026-06-05 18:15:40.787] [00004A38] Restart required: False
|
||||
[2026-06-05 18:15:40.788] [00004A38] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:33:12.321] [00004C9C] === Logging started ===
|
||||
[2026-06-05 16:33:12.327] [00004C9C] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~CreateSession --verbosity minimal, PID: 19612, PPID: 10324
|
||||
[2026-06-05 16:33:12.328] [00004C9C] IsElevated: False
|
||||
[2026-06-05 16:33:12.328] [00004C9C] Is64BitProcess: True
|
||||
[2026-06-05 16:33:12.328] [00004C9C] RebootPending: True
|
||||
[2026-06-05 16:33:12.328] [00004C9C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:33:12.328] [00004C9C] HostArchitecture: x64
|
||||
[2026-06-05 16:33:12.328] [00004C9C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:33:12.328] [00004C9C] VerifySignatures: False
|
||||
[2026-06-05 16:33:12.328] [00004C9C] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:33:22.794] [00004C9C] Shutting down
|
||||
[2026-06-05 16:33:22.794] [00004C9C] Shutdown completed.
|
||||
[2026-06-05 16:33:22.794] [00004C9C] Restart required: False
|
||||
[2026-06-05 16:33:22.794] [00004C9C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:09:44.245] [00004CC4] === Logging started ===
|
||||
[2026-06-05 17:09:44.251] [00004CC4] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj -- C:\Users\hegin\.nuget\packages\netcord\1.0.0-alpha.489\lib\net10.0\NetCord.dll, PID: 19652, PPID: 54032
|
||||
[2026-06-05 17:09:44.252] [00004CC4] IsElevated: False
|
||||
[2026-06-05 17:09:44.252] [00004CC4] Is64BitProcess: True
|
||||
[2026-06-05 17:09:44.252] [00004CC4] RebootPending: True
|
||||
[2026-06-05 17:09:44.252] [00004CC4] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:09:44.252] [00004CC4] HostArchitecture: x64
|
||||
[2026-06-05 17:09:44.252] [00004CC4] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:09:44.252] [00004CC4] VerifySignatures: False
|
||||
[2026-06-05 17:09:44.252] [00004CC4] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:09:45.774] [00004CC4] Shutting down
|
||||
[2026-06-05 17:09:45.775] [00004CC4] Shutdown completed.
|
||||
[2026-06-05 17:09:45.775] [00004CC4] Restart required: False
|
||||
[2026-06-05 17:09:45.775] [00004CC4] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 22:53:01.938] [00004E28] === Logging started ===
|
||||
[2026-06-05 22:53:01.943] [00004E28] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-build --verbosity minimal, PID: 20008, PPID: 2944
|
||||
[2026-06-05 22:53:01.946] [00004E28] IsElevated: False
|
||||
[2026-06-05 22:53:01.946] [00004E28] Is64BitProcess: True
|
||||
[2026-06-05 22:53:01.946] [00004E28] RebootPending: True
|
||||
[2026-06-05 22:53:01.946] [00004E28] ProcessorArchitecture: amd64
|
||||
[2026-06-05 22:53:01.946] [00004E28] HostArchitecture: x64
|
||||
[2026-06-05 22:53:01.946] [00004E28] SdkDirectory: 10.0.201
|
||||
[2026-06-05 22:53:01.946] [00004E28] VerifySignatures: False
|
||||
[2026-06-05 22:53:01.946] [00004E28] SDK feature band: 10.0.200
|
||||
[2026-06-05 22:53:24.061] [00004E28] Shutting down
|
||||
[2026-06-05 22:53:24.061] [00004E28] Shutdown completed.
|
||||
[2026-06-05 22:53:24.061] [00004E28] Restart required: False
|
||||
[2026-06-05 22:53:24.062] [00004E28] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:16:14.224] [00004E40] === Logging started ===
|
||||
[2026-06-05 16:16:14.230] [00004E40] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-restore --filter FullyQualifiedName~NavMenu_ShouldExposeCurrentProjectVersion --verbosity normal, PID: 20032, PPID: 26780
|
||||
[2026-06-05 16:16:14.231] [00004E40] IsElevated: False
|
||||
[2026-06-05 16:16:14.231] [00004E40] Is64BitProcess: True
|
||||
[2026-06-05 16:16:14.231] [00004E40] RebootPending: False
|
||||
[2026-06-05 16:16:14.231] [00004E40] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:16:14.231] [00004E40] HostArchitecture: x64
|
||||
[2026-06-05 16:16:14.231] [00004E40] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:16:14.231] [00004E40] VerifySignatures: False
|
||||
[2026-06-05 16:16:14.231] [00004E40] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:16:17.523] [00004E40] Shutting down
|
||||
[2026-06-05 16:16:17.523] [00004E40] Shutdown completed.
|
||||
[2026-06-05 16:16:17.523] [00004E40] Restart required: False
|
||||
[2026-06-05 16:16:17.523] [00004E40] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:03:41.960] [00004FE8] === Logging started ===
|
||||
[2026-06-05 18:03:41.965] [00004FE8] Executing: "C:\Program Files\dotnet\dotnet.exe" build D:\Projects\Game\src\GmRelay.DiscordBot\GmRelay.DiscordBot.csproj --no-restore, PID: 20456, PPID: 54032
|
||||
[2026-06-05 18:03:41.967] [00004FE8] IsElevated: False
|
||||
[2026-06-05 18:03:41.967] [00004FE8] Is64BitProcess: True
|
||||
[2026-06-05 18:03:41.967] [00004FE8] RebootPending: True
|
||||
[2026-06-05 18:03:41.967] [00004FE8] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:03:41.967] [00004FE8] HostArchitecture: x64
|
||||
[2026-06-05 18:03:41.967] [00004FE8] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:03:41.967] [00004FE8] VerifySignatures: False
|
||||
[2026-06-05 18:03:41.967] [00004FE8] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:03:42.967] [00004FE8] Shutting down
|
||||
[2026-06-05 18:03:42.967] [00004FE8] Shutdown completed.
|
||||
[2026-06-05 18:03:42.967] [00004FE8] Restart required: False
|
||||
[2026-06-05 18:03:42.967] [00004FE8] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:07:21.385] [000050A8] === Logging started ===
|
||||
[2026-06-05 17:07:21.390] [000050A8] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 20648, PPID: 42132
|
||||
[2026-06-05 17:07:21.391] [000050A8] IsElevated: False
|
||||
[2026-06-05 17:07:21.391] [000050A8] Is64BitProcess: True
|
||||
[2026-06-05 17:07:21.391] [000050A8] RebootPending: True
|
||||
[2026-06-05 17:07:21.391] [000050A8] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:07:21.391] [000050A8] HostArchitecture: x64
|
||||
[2026-06-05 17:07:21.391] [000050A8] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:07:21.391] [000050A8] VerifySignatures: False
|
||||
[2026-06-05 17:07:21.391] [000050A8] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:07:22.954] [000050A8] Shutting down
|
||||
[2026-06-05 17:07:22.954] [000050A8] Shutdown completed.
|
||||
[2026-06-05 17:07:22.954] [000050A8] Restart required: False
|
||||
[2026-06-05 17:07:22.955] [000050A8] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:56:53.006] [000050B8] === Logging started ===
|
||||
[2026-06-05 18:56:53.012] [000050B8] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~Discord|FullyQualifiedName~Wizard --verbosity normal, PID: 20664, PPID: 20456
|
||||
[2026-06-05 18:56:53.013] [000050B8] IsElevated: False
|
||||
[2026-06-05 18:56:53.013] [000050B8] Is64BitProcess: True
|
||||
[2026-06-05 18:56:53.013] [000050B8] RebootPending: True
|
||||
[2026-06-05 18:56:53.013] [000050B8] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:56:53.013] [000050B8] HostArchitecture: x64
|
||||
[2026-06-05 18:56:53.013] [000050B8] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:56:53.013] [000050B8] VerifySignatures: False
|
||||
[2026-06-05 18:56:53.013] [000050B8] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:57:04.204] [000050B8] Shutting down
|
||||
[2026-06-05 18:57:04.204] [000050B8] Shutdown completed.
|
||||
[2026-06-05 18:57:04.204] [000050B8] Restart required: False
|
||||
[2026-06-05 18:57:04.205] [000050B8] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:50:38.699] [00005594] === Logging started ===
|
||||
[2026-06-05 18:50:38.704] [00005594] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.DiscordBot/GmRelay.DiscordBot.csproj --no-restore, PID: 21908, PPID: 31908
|
||||
[2026-06-05 18:50:38.706] [00005594] IsElevated: False
|
||||
[2026-06-05 18:50:38.706] [00005594] Is64BitProcess: True
|
||||
[2026-06-05 18:50:38.706] [00005594] RebootPending: True
|
||||
[2026-06-05 18:50:38.706] [00005594] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:50:38.706] [00005594] HostArchitecture: x64
|
||||
[2026-06-05 18:50:38.706] [00005594] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:50:38.706] [00005594] VerifySignatures: False
|
||||
[2026-06-05 18:50:38.706] [00005594] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:50:40.609] [00005594] Shutting down
|
||||
[2026-06-05 18:50:40.610] [00005594] Shutdown completed.
|
||||
[2026-06-05 18:50:40.610] [00005594] Restart required: False
|
||||
[2026-06-05 18:50:40.610] [00005594] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:14:48.787] [0000561C] === Logging started ===
|
||||
[2026-06-05 16:14:48.792] [0000561C] Executing: "C:\Program Files\dotnet\dotnet.exe" build tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-restore, PID: 22044, PPID: 40128
|
||||
[2026-06-05 16:14:48.794] [0000561C] IsElevated: False
|
||||
[2026-06-05 16:14:48.794] [0000561C] Is64BitProcess: True
|
||||
[2026-06-05 16:14:48.794] [0000561C] RebootPending: False
|
||||
[2026-06-05 16:14:48.794] [0000561C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:14:48.794] [0000561C] HostArchitecture: x64
|
||||
[2026-06-05 16:14:48.794] [0000561C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:14:48.794] [0000561C] VerifySignatures: False
|
||||
[2026-06-05 16:14:48.794] [0000561C] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:14:53.429] [0000561C] Shutting down
|
||||
[2026-06-05 16:14:53.429] [0000561C] Shutdown completed.
|
||||
[2026-06-05 16:14:53.430] [0000561C] Restart required: False
|
||||
[2026-06-05 16:14:53.430] [0000561C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:11:50.166] [000057F4] === Logging started ===
|
||||
[2026-06-05 16:11:50.171] [000057F4] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.Shared/GmRelay.Shared.csproj --no-restore, PID: 22516, PPID: 24884
|
||||
[2026-06-05 16:11:50.173] [000057F4] IsElevated: False
|
||||
[2026-06-05 16:11:50.173] [000057F4] Is64BitProcess: True
|
||||
[2026-06-05 16:11:50.173] [000057F4] RebootPending: False
|
||||
[2026-06-05 16:11:50.173] [000057F4] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:11:50.173] [000057F4] HostArchitecture: x64
|
||||
[2026-06-05 16:11:50.173] [000057F4] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:11:50.173] [000057F4] VerifySignatures: False
|
||||
[2026-06-05 16:11:50.173] [000057F4] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:11:50.855] [000057F4] Shutting down
|
||||
[2026-06-05 16:11:50.855] [000057F4] Shutdown completed.
|
||||
[2026-06-05 16:11:50.855] [000057F4] Restart required: False
|
||||
[2026-06-05 16:11:50.855] [000057F4] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:27:38.518] [00005870] === Logging started ===
|
||||
[2026-06-05 16:27:38.523] [00005870] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal, PID: 22640, PPID: 49712
|
||||
[2026-06-05 16:27:38.526] [00005870] IsElevated: False
|
||||
[2026-06-05 16:27:38.526] [00005870] Is64BitProcess: True
|
||||
[2026-06-05 16:27:38.526] [00005870] RebootPending: False
|
||||
[2026-06-05 16:27:38.526] [00005870] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:27:38.526] [00005870] HostArchitecture: x64
|
||||
[2026-06-05 16:27:38.526] [00005870] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:27:38.526] [00005870] VerifySignatures: False
|
||||
[2026-06-05 16:27:38.526] [00005870] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:28:00.773] [00005870] Shutting down
|
||||
[2026-06-05 16:28:00.773] [00005870] Shutdown completed.
|
||||
[2026-06-05 16:28:00.773] [00005870] Restart required: False
|
||||
[2026-06-05 16:28:00.774] [00005870] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:21:21.388] [00005A80] === Logging started ===
|
||||
[2026-06-05 18:21:21.394] [00005A80] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.DiscordBot/GmRelay.DiscordBot.csproj --no-restore, PID: 23168, PPID: 5284
|
||||
[2026-06-05 18:21:21.395] [00005A80] IsElevated: False
|
||||
[2026-06-05 18:21:21.395] [00005A80] Is64BitProcess: True
|
||||
[2026-06-05 18:21:21.395] [00005A80] RebootPending: True
|
||||
[2026-06-05 18:21:21.395] [00005A80] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:21:21.395] [00005A80] HostArchitecture: x64
|
||||
[2026-06-05 18:21:21.395] [00005A80] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:21:21.395] [00005A80] VerifySignatures: False
|
||||
[2026-06-05 18:21:21.395] [00005A80] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:21:23.116] [00005A80] Shutting down
|
||||
[2026-06-05 18:21:23.117] [00005A80] Shutdown completed.
|
||||
[2026-06-05 18:21:23.117] [00005A80] Restart required: False
|
||||
[2026-06-05 18:21:23.117] [00005A80] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:58:02.720] [00005ADC] === Logging started ===
|
||||
[2026-06-05 16:58:02.727] [00005ADC] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj -- C:\Users\hegin\.nuget\packages\netcord\1.0.0-alpha.489\lib\net10.0\NetCord.dll, PID: 23260, PPID: 48156
|
||||
[2026-06-05 16:58:02.727] [00005ADC] IsElevated: False
|
||||
[2026-06-05 16:58:02.727] [00005ADC] Is64BitProcess: True
|
||||
[2026-06-05 16:58:02.727] [00005ADC] RebootPending: True
|
||||
[2026-06-05 16:58:02.727] [00005ADC] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:58:02.727] [00005ADC] HostArchitecture: x64
|
||||
[2026-06-05 16:58:02.727] [00005ADC] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:58:02.727] [00005ADC] VerifySignatures: False
|
||||
[2026-06-05 16:58:02.727] [00005ADC] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:58:04.112] [00005ADC] Shutting down
|
||||
[2026-06-05 16:58:04.112] [00005ADC] Shutdown completed.
|
||||
[2026-06-05 16:58:04.112] [00005ADC] Restart required: False
|
||||
[2026-06-05 16:58:04.113] [00005ADC] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 22:51:22.283] [00005D70] === Logging started ===
|
||||
[2026-06-05 22:51:22.289] [00005D70] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-build --filter FullyQualifiedName~Discord|FullyQualifiedName~Wizard --verbosity minimal, PID: 23920, PPID: 35120
|
||||
[2026-06-05 22:51:22.290] [00005D70] IsElevated: False
|
||||
[2026-06-05 22:51:22.290] [00005D70] Is64BitProcess: True
|
||||
[2026-06-05 22:51:22.290] [00005D70] RebootPending: True
|
||||
[2026-06-05 22:51:22.290] [00005D70] ProcessorArchitecture: amd64
|
||||
[2026-06-05 22:51:22.290] [00005D70] HostArchitecture: x64
|
||||
[2026-06-05 22:51:22.290] [00005D70] SdkDirectory: 10.0.201
|
||||
[2026-06-05 22:51:22.290] [00005D70] VerifySignatures: False
|
||||
[2026-06-05 22:51:22.290] [00005D70] SDK feature band: 10.0.200
|
||||
[2026-06-05 22:51:30.622] [00005D70] Shutting down
|
||||
[2026-06-05 22:51:30.622] [00005D70] Shutdown completed.
|
||||
[2026-06-05 22:51:30.622] [00005D70] Restart required: False
|
||||
[2026-06-05 22:51:30.622] [00005D70] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:06:37.189] [00005FE8] === Logging started ===
|
||||
[2026-06-05 17:06:37.194] [00005FE8] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj -- C:\Users\hegin\.nuget\packages\netcord.hosting\1.0.0-alpha.489\lib\net10.0\NetCord.Hosting.dll, PID: 24552, PPID: 19704
|
||||
[2026-06-05 17:06:37.195] [00005FE8] IsElevated: False
|
||||
[2026-06-05 17:06:37.195] [00005FE8] Is64BitProcess: True
|
||||
[2026-06-05 17:06:37.195] [00005FE8] RebootPending: True
|
||||
[2026-06-05 17:06:37.195] [00005FE8] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:06:37.195] [00005FE8] HostArchitecture: x64
|
||||
[2026-06-05 17:06:37.195] [00005FE8] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:06:37.195] [00005FE8] VerifySignatures: False
|
||||
[2026-06-05 17:06:37.195] [00005FE8] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:06:38.737] [00005FE8] Shutting down
|
||||
[2026-06-05 17:06:38.737] [00005FE8] Shutdown completed.
|
||||
[2026-06-05 17:06:38.737] [00005FE8] Restart required: False
|
||||
[2026-06-05 17:06:38.738] [00005FE8] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:50:55.511] [00006440] === Logging started ===
|
||||
[2026-06-05 18:50:55.517] [00006440] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-build --filter FullyQualifiedName~Discord|FullyQualifiedName~Wizard --verbosity minimal, PID: 25664, PPID: 29812
|
||||
[2026-06-05 18:50:55.519] [00006440] IsElevated: False
|
||||
[2026-06-05 18:50:55.519] [00006440] Is64BitProcess: True
|
||||
[2026-06-05 18:50:55.519] [00006440] RebootPending: True
|
||||
[2026-06-05 18:50:55.519] [00006440] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:50:55.519] [00006440] HostArchitecture: x64
|
||||
[2026-06-05 18:50:55.519] [00006440] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:50:55.519] [00006440] VerifySignatures: False
|
||||
[2026-06-05 18:50:55.519] [00006440] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:51:02.876] [00006440] Shutting down
|
||||
[2026-06-05 18:51:02.876] [00006440] Shutdown completed.
|
||||
[2026-06-05 18:51:02.876] [00006440] Restart required: False
|
||||
[2026-06-05 18:51:02.876] [00006440] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:26:39.952] [00000A94] === Logging started ===
|
||||
[2026-06-05 16:26:39.958] [00000A94] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal --logger console;verbosity=detailed, PID: 2708, PPID: 20444
|
||||
[2026-06-05 16:26:39.959] [00000A94] IsElevated: False
|
||||
[2026-06-05 16:26:39.959] [00000A94] Is64BitProcess: True
|
||||
[2026-06-05 16:26:39.959] [00000A94] RebootPending: False
|
||||
[2026-06-05 16:26:39.959] [00000A94] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:26:39.959] [00000A94] HostArchitecture: x64
|
||||
[2026-06-05 16:26:39.959] [00000A94] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:26:39.959] [00000A94] VerifySignatures: False
|
||||
[2026-06-05 16:26:39.959] [00000A94] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:27:03.126] [00000A94] Shutting down
|
||||
[2026-06-05 16:27:03.126] [00000A94] Shutdown completed.
|
||||
[2026-06-05 16:27:03.126] [00000A94] Restart required: False
|
||||
[2026-06-05 16:27:03.127] [00000A94] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:23:07.977] [00006C9C] === Logging started ===
|
||||
[2026-06-05 18:23:07.982] [00006C9C] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-build --filter FullyQualifiedName~Discord|FullyQualifiedName~Wizard --verbosity minimal, PID: 27804, PPID: 14528
|
||||
[2026-06-05 18:23:07.984] [00006C9C] IsElevated: False
|
||||
[2026-06-05 18:23:07.984] [00006C9C] Is64BitProcess: True
|
||||
[2026-06-05 18:23:07.984] [00006C9C] RebootPending: True
|
||||
[2026-06-05 18:23:07.984] [00006C9C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:23:07.984] [00006C9C] HostArchitecture: x64
|
||||
[2026-06-05 18:23:07.984] [00006C9C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:23:07.984] [00006C9C] VerifySignatures: False
|
||||
[2026-06-05 18:23:07.984] [00006C9C] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:23:15.704] [00006C9C] Shutting down
|
||||
[2026-06-05 18:23:15.704] [00006C9C] Shutdown completed.
|
||||
[2026-06-05 18:23:15.704] [00006C9C] Restart required: False
|
||||
[2026-06-05 18:23:15.704] [00006C9C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:26:15.426] [00006D78] === Logging started ===
|
||||
[2026-06-05 18:26:15.432] [00006D78] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~DiscordWizardInteractionModuleSourceTests --verbosity normal, PID: 28024, PPID: 18172
|
||||
[2026-06-05 18:26:15.434] [00006D78] IsElevated: False
|
||||
[2026-06-05 18:26:15.434] [00006D78] Is64BitProcess: True
|
||||
[2026-06-05 18:26:15.434] [00006D78] RebootPending: True
|
||||
[2026-06-05 18:26:15.434] [00006D78] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:26:15.434] [00006D78] HostArchitecture: x64
|
||||
[2026-06-05 18:26:15.434] [00006D78] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:26:15.434] [00006D78] VerifySignatures: False
|
||||
[2026-06-05 18:26:15.434] [00006D78] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:26:22.158] [00006D78] Shutting down
|
||||
[2026-06-05 18:26:22.158] [00006D78] Shutdown completed.
|
||||
[2026-06-05 18:26:22.158] [00006D78] Restart required: False
|
||||
[2026-06-05 18:26:22.159] [00006D78] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:35:41.843] [00006E14] === Logging started ===
|
||||
[2026-06-05 16:35:41.849] [00006E14] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~WizardStepRender --verbosity minimal, PID: 28180, PPID: 21084
|
||||
[2026-06-05 16:35:41.851] [00006E14] IsElevated: False
|
||||
[2026-06-05 16:35:41.851] [00006E14] Is64BitProcess: True
|
||||
[2026-06-05 16:35:41.851] [00006E14] RebootPending: True
|
||||
[2026-06-05 16:35:41.851] [00006E14] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:35:41.851] [00006E14] HostArchitecture: x64
|
||||
[2026-06-05 16:35:41.851] [00006E14] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:35:41.851] [00006E14] VerifySignatures: False
|
||||
[2026-06-05 16:35:41.851] [00006E14] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:35:46.912] [00006E14] Shutting down
|
||||
[2026-06-05 16:35:46.912] [00006E14] Shutdown completed.
|
||||
[2026-06-05 16:35:46.912] [00006E14] Restart required: False
|
||||
[2026-06-05 16:35:46.912] [00006E14] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:15:04.848] [00006F24] === Logging started ===
|
||||
[2026-06-05 16:15:04.854] [00006F24] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-restore --verbosity normal, PID: 28452, PPID: 48248
|
||||
[2026-06-05 16:15:04.856] [00006F24] IsElevated: False
|
||||
[2026-06-05 16:15:04.856] [00006F24] Is64BitProcess: True
|
||||
[2026-06-05 16:15:04.856] [00006F24] RebootPending: False
|
||||
[2026-06-05 16:15:04.856] [00006F24] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:15:04.856] [00006F24] HostArchitecture: x64
|
||||
[2026-06-05 16:15:04.856] [00006F24] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:15:04.856] [00006F24] VerifySignatures: False
|
||||
[2026-06-05 16:15:04.856] [00006F24] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:15:30.931] [00006F24] Shutting down
|
||||
[2026-06-05 16:15:30.931] [00006F24] Shutdown completed.
|
||||
[2026-06-05 16:15:30.931] [00006F24] Restart required: False
|
||||
[2026-06-05 16:15:30.931] [00006F24] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:37:23.742] [00000B48] === Logging started ===
|
||||
[2026-06-05 16:37:23.747] [00000B48] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~WizardInteractionMapper --verbosity minimal, PID: 2888, PPID: 20648
|
||||
[2026-06-05 16:37:23.749] [00000B48] IsElevated: False
|
||||
[2026-06-05 16:37:23.749] [00000B48] Is64BitProcess: True
|
||||
[2026-06-05 16:37:23.749] [00000B48] RebootPending: True
|
||||
[2026-06-05 16:37:23.749] [00000B48] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:37:23.749] [00000B48] HostArchitecture: x64
|
||||
[2026-06-05 16:37:23.749] [00000B48] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:37:23.749] [00000B48] VerifySignatures: False
|
||||
[2026-06-05 16:37:23.749] [00000B48] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:37:28.546] [00000B48] Shutting down
|
||||
[2026-06-05 16:37:28.546] [00000B48] Shutdown completed.
|
||||
[2026-06-05 16:37:28.546] [00000B48] Restart required: False
|
||||
[2026-06-05 16:37:28.546] [00000B48] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:31:42.464] [00007100] === Logging started ===
|
||||
[2026-06-05 17:31:42.473] [00007100] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 28928, PPID: 46816
|
||||
[2026-06-05 17:31:42.475] [00007100] IsElevated: False
|
||||
[2026-06-05 17:31:42.475] [00007100] Is64BitProcess: True
|
||||
[2026-06-05 17:31:42.475] [00007100] RebootPending: True
|
||||
[2026-06-05 17:31:42.475] [00007100] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:31:42.475] [00007100] HostArchitecture: x64
|
||||
[2026-06-05 17:31:42.475] [00007100] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:31:42.475] [00007100] VerifySignatures: False
|
||||
[2026-06-05 17:31:42.475] [00007100] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:31:43.746] [00007100] Shutting down
|
||||
[2026-06-05 17:31:43.746] [00007100] Shutdown completed.
|
||||
[2026-06-05 17:31:43.746] [00007100] Restart required: False
|
||||
[2026-06-05 17:31:43.746] [00007100] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:13:06.740] [000072C8] === Logging started ===
|
||||
[2026-06-05 18:13:06.745] [000072C8] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 29384, PPID: 39976
|
||||
[2026-06-05 18:13:06.747] [000072C8] IsElevated: False
|
||||
[2026-06-05 18:13:06.747] [000072C8] Is64BitProcess: True
|
||||
[2026-06-05 18:13:06.747] [000072C8] RebootPending: True
|
||||
[2026-06-05 18:13:06.747] [000072C8] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:13:06.747] [000072C8] HostArchitecture: x64
|
||||
[2026-06-05 18:13:06.747] [000072C8] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:13:06.747] [000072C8] VerifySignatures: False
|
||||
[2026-06-05 18:13:06.747] [000072C8] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:13:07.939] [000072C8] Shutting down
|
||||
[2026-06-05 18:13:07.939] [000072C8] Shutdown completed.
|
||||
[2026-06-05 18:13:07.939] [000072C8] Restart required: False
|
||||
[2026-06-05 18:13:07.940] [000072C8] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:10:01.785] [00007478] === Logging started ===
|
||||
[2026-06-05 17:10:01.793] [00007478] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 29816, PPID: 33080
|
||||
[2026-06-05 17:10:01.795] [00007478] IsElevated: False
|
||||
[2026-06-05 17:10:01.795] [00007478] Is64BitProcess: True
|
||||
[2026-06-05 17:10:01.795] [00007478] RebootPending: True
|
||||
[2026-06-05 17:10:01.795] [00007478] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:10:01.795] [00007478] HostArchitecture: x64
|
||||
[2026-06-05 17:10:01.795] [00007478] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:10:01.795] [00007478] VerifySignatures: False
|
||||
[2026-06-05 17:10:01.795] [00007478] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:10:03.211] [00007478] Shutting down
|
||||
[2026-06-05 17:10:03.211] [00007478] Shutdown completed.
|
||||
[2026-06-05 17:10:03.211] [00007478] Restart required: False
|
||||
[2026-06-05 17:10:03.212] [00007478] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:14:53.778] [00007BC8] === Logging started ===
|
||||
[2026-06-05 18:14:53.784] [00007BC8] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.DiscordBot/GmRelay.DiscordBot.csproj --no-restore, PID: 31688, PPID: 11656
|
||||
[2026-06-05 18:14:53.785] [00007BC8] IsElevated: False
|
||||
[2026-06-05 18:14:53.785] [00007BC8] Is64BitProcess: True
|
||||
[2026-06-05 18:14:53.785] [00007BC8] RebootPending: True
|
||||
[2026-06-05 18:14:53.785] [00007BC8] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:14:53.785] [00007BC8] HostArchitecture: x64
|
||||
[2026-06-05 18:14:53.785] [00007BC8] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:14:53.785] [00007BC8] VerifySignatures: False
|
||||
[2026-06-05 18:14:53.785] [00007BC8] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:14:58.008] [00007BC8] Shutting down
|
||||
[2026-06-05 18:14:58.008] [00007BC8] Shutdown completed.
|
||||
[2026-06-05 18:14:58.008] [00007BC8] Restart required: False
|
||||
[2026-06-05 18:14:58.008] [00007BC8] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:33:19.539] [00007C58] === Logging started ===
|
||||
[2026-06-05 17:33:19.545] [00007C58] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 31832, PPID: 47440
|
||||
[2026-06-05 17:33:19.548] [00007C58] IsElevated: False
|
||||
[2026-06-05 17:33:19.548] [00007C58] Is64BitProcess: True
|
||||
[2026-06-05 17:33:19.548] [00007C58] RebootPending: True
|
||||
[2026-06-05 17:33:19.548] [00007C58] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:33:19.548] [00007C58] HostArchitecture: x64
|
||||
[2026-06-05 17:33:19.548] [00007C58] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:33:19.548] [00007C58] VerifySignatures: False
|
||||
[2026-06-05 17:33:19.548] [00007C58] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:33:20.840] [00007C58] Shutting down
|
||||
[2026-06-05 17:33:20.840] [00007C58] Shutdown completed.
|
||||
[2026-06-05 17:33:20.840] [00007C58] Restart required: False
|
||||
[2026-06-05 17:33:20.840] [00007C58] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:25:27.272] [00007CA0] === Logging started ===
|
||||
[2026-06-05 16:25:27.278] [00007CA0] Executing: "C:\Program Files\dotnet\dotnet.exe" build D:\Projects\Game\GM-Relay.slnx, PID: 31904, PPID: 27480
|
||||
[2026-06-05 16:25:27.280] [00007CA0] IsElevated: False
|
||||
[2026-06-05 16:25:27.280] [00007CA0] Is64BitProcess: True
|
||||
[2026-06-05 16:25:27.280] [00007CA0] RebootPending: False
|
||||
[2026-06-05 16:25:27.280] [00007CA0] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:25:27.280] [00007CA0] HostArchitecture: x64
|
||||
[2026-06-05 16:25:27.280] [00007CA0] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:25:27.280] [00007CA0] VerifySignatures: False
|
||||
[2026-06-05 16:25:27.280] [00007CA0] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:25:36.679] [00007CA0] Shutting down
|
||||
[2026-06-05 16:25:36.680] [00007CA0] Shutdown completed.
|
||||
[2026-06-05 16:25:36.680] [00007CA0] Restart required: False
|
||||
[2026-06-05 16:25:36.680] [00007CA0] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:15:18.800] [00007EA0] === Logging started ===
|
||||
[2026-06-05 18:15:18.805] [00007EA0] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 32416, PPID: 11752
|
||||
[2026-06-05 18:15:18.807] [00007EA0] IsElevated: False
|
||||
[2026-06-05 18:15:18.807] [00007EA0] Is64BitProcess: True
|
||||
[2026-06-05 18:15:18.807] [00007EA0] RebootPending: True
|
||||
[2026-06-05 18:15:18.807] [00007EA0] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:15:18.807] [00007EA0] HostArchitecture: x64
|
||||
[2026-06-05 18:15:18.807] [00007EA0] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:15:18.807] [00007EA0] VerifySignatures: False
|
||||
[2026-06-05 18:15:18.807] [00007EA0] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:15:19.967] [00007EA0] Shutting down
|
||||
[2026-06-05 18:15:19.967] [00007EA0] Shutdown completed.
|
||||
[2026-06-05 18:15:19.967] [00007EA0] Restart required: False
|
||||
[2026-06-05 18:15:19.967] [00007EA0] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:41:42.240] [00008388] === Logging started ===
|
||||
[2026-06-05 17:41:42.246] [00008388] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.DiscordBot/GmRelay.DiscordBot.csproj --no-restore, PID: 33672, PPID: 8688
|
||||
[2026-06-05 17:41:42.248] [00008388] IsElevated: False
|
||||
[2026-06-05 17:41:42.248] [00008388] Is64BitProcess: True
|
||||
[2026-06-05 17:41:42.248] [00008388] RebootPending: True
|
||||
[2026-06-05 17:41:42.248] [00008388] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:41:42.248] [00008388] HostArchitecture: x64
|
||||
[2026-06-05 17:41:42.248] [00008388] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:41:42.248] [00008388] VerifySignatures: False
|
||||
[2026-06-05 17:41:42.248] [00008388] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:41:43.866] [00008388] Shutting down
|
||||
[2026-06-05 17:41:43.866] [00008388] Shutdown completed.
|
||||
[2026-06-05 17:41:43.866] [00008388] Restart required: False
|
||||
[2026-06-05 17:41:43.866] [00008388] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:22:11.452] [00008584] === Logging started ===
|
||||
[2026-06-05 18:22:11.457] [00008584] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.DiscordBot/GmRelay.DiscordBot.csproj --no-restore, PID: 34180, PPID: 12724
|
||||
[2026-06-05 18:22:11.459] [00008584] IsElevated: False
|
||||
[2026-06-05 18:22:11.459] [00008584] Is64BitProcess: True
|
||||
[2026-06-05 18:22:11.459] [00008584] RebootPending: True
|
||||
[2026-06-05 18:22:11.459] [00008584] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:22:11.459] [00008584] HostArchitecture: x64
|
||||
[2026-06-05 18:22:11.459] [00008584] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:22:11.459] [00008584] VerifySignatures: False
|
||||
[2026-06-05 18:22:11.459] [00008584] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:22:13.223] [00008584] Shutting down
|
||||
[2026-06-05 18:22:13.223] [00008584] Shutdown completed.
|
||||
[2026-06-05 18:22:13.223] [00008584] Restart required: False
|
||||
[2026-06-05 18:22:13.223] [00008584] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:01:53.303] [00008884] === Logging started ===
|
||||
[2026-06-05 18:01:53.308] [00008884] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~Wizard --verbosity normal, PID: 34948, PPID: 44832
|
||||
[2026-06-05 18:01:53.310] [00008884] IsElevated: False
|
||||
[2026-06-05 18:01:53.310] [00008884] Is64BitProcess: True
|
||||
[2026-06-05 18:01:53.310] [00008884] RebootPending: True
|
||||
[2026-06-05 18:01:53.310] [00008884] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:01:53.310] [00008884] HostArchitecture: x64
|
||||
[2026-06-05 18:01:53.310] [00008884] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:01:53.310] [00008884] VerifySignatures: False
|
||||
[2026-06-05 18:01:53.310] [00008884] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:02:03.797] [00008884] Shutting down
|
||||
[2026-06-05 18:02:03.797] [00008884] Shutdown completed.
|
||||
[2026-06-05 18:02:03.797] [00008884] Restart required: False
|
||||
[2026-06-05 18:02:03.798] [00008884] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:49:08.976] [00008970] === Logging started ===
|
||||
[2026-06-05 17:49:08.982] [00008970] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-build --filter FullyQualifiedName~Discord --verbosity minimal, PID: 35184, PPID: 46768
|
||||
[2026-06-05 17:49:08.984] [00008970] IsElevated: False
|
||||
[2026-06-05 17:49:08.984] [00008970] Is64BitProcess: True
|
||||
[2026-06-05 17:49:08.984] [00008970] RebootPending: True
|
||||
[2026-06-05 17:49:08.984] [00008970] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:49:08.984] [00008970] HostArchitecture: x64
|
||||
[2026-06-05 17:49:08.984] [00008970] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:49:08.984] [00008970] VerifySignatures: False
|
||||
[2026-06-05 17:49:08.984] [00008970] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:49:10.588] [00008970] Shutting down
|
||||
[2026-06-05 17:49:10.588] [00008970] Shutdown completed.
|
||||
[2026-06-05 17:49:10.588] [00008970] Restart required: False
|
||||
[2026-06-05 17:49:10.588] [00008970] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:15:44.384] [00008D5C] === Logging started ===
|
||||
[2026-06-05 16:15:44.390] [00008D5C] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-restore --verbosity normal, PID: 36188, PPID: 47996
|
||||
[2026-06-05 16:15:44.391] [00008D5C] IsElevated: False
|
||||
[2026-06-05 16:15:44.391] [00008D5C] Is64BitProcess: True
|
||||
[2026-06-05 16:15:44.391] [00008D5C] RebootPending: False
|
||||
[2026-06-05 16:15:44.391] [00008D5C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:15:44.391] [00008D5C] HostArchitecture: x64
|
||||
[2026-06-05 16:15:44.391] [00008D5C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:15:44.391] [00008D5C] VerifySignatures: False
|
||||
[2026-06-05 16:15:44.391] [00008D5C] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:16:04.727] [00008D5C] Shutting down
|
||||
[2026-06-05 16:16:04.727] [00008D5C] Shutdown completed.
|
||||
[2026-06-05 16:16:04.727] [00008D5C] Restart required: False
|
||||
[2026-06-05 16:16:04.727] [00008D5C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:35:50.175] [00008D84] === Logging started ===
|
||||
[2026-06-05 18:35:50.181] [00008D84] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj, PID: 36228, PPID: 40248
|
||||
[2026-06-05 18:35:50.183] [00008D84] IsElevated: False
|
||||
[2026-06-05 18:35:50.183] [00008D84] Is64BitProcess: True
|
||||
[2026-06-05 18:35:50.183] [00008D84] RebootPending: True
|
||||
[2026-06-05 18:35:50.183] [00008D84] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:35:50.183] [00008D84] HostArchitecture: x64
|
||||
[2026-06-05 18:35:50.183] [00008D84] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:35:50.183] [00008D84] VerifySignatures: False
|
||||
[2026-06-05 18:35:50.183] [00008D84] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:36:12.002] [00008D84] Shutting down
|
||||
[2026-06-05 18:36:12.002] [00008D84] Shutdown completed.
|
||||
[2026-06-05 18:36:12.002] [00008D84] Restart required: False
|
||||
[2026-06-05 18:36:12.002] [00008D84] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:35:28.724] [00000E2C] === Logging started ===
|
||||
[2026-06-05 16:35:28.730] [00000E2C] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~UpdateRouter --verbosity minimal, PID: 3628, PPID: 28776
|
||||
[2026-06-05 16:35:28.732] [00000E2C] IsElevated: False
|
||||
[2026-06-05 16:35:28.732] [00000E2C] Is64BitProcess: True
|
||||
[2026-06-05 16:35:28.732] [00000E2C] RebootPending: True
|
||||
[2026-06-05 16:35:28.732] [00000E2C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:35:28.732] [00000E2C] HostArchitecture: x64
|
||||
[2026-06-05 16:35:28.732] [00000E2C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:35:28.732] [00000E2C] VerifySignatures: False
|
||||
[2026-06-05 16:35:28.732] [00000E2C] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:35:33.753] [00000E2C] Shutting down
|
||||
[2026-06-05 16:35:33.753] [00000E2C] Shutdown completed.
|
||||
[2026-06-05 16:35:33.753] [00000E2C] Restart required: False
|
||||
[2026-06-05 16:35:33.754] [00000E2C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:05:42.689] [00008F2C] === Logging started ===
|
||||
[2026-06-05 17:05:42.695] [00008F2C] Executing: "C:\Program Files\dotnet\dotnet.exe" run --project C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj -- C:\Users\hegin\.nuget\packages\netcord\1.0.0-alpha.489\lib\net10.0\NetCord.dll, PID: 36652, PPID: 45396
|
||||
[2026-06-05 17:05:42.696] [00008F2C] IsElevated: False
|
||||
[2026-06-05 17:05:42.696] [00008F2C] Is64BitProcess: True
|
||||
[2026-06-05 17:05:42.696] [00008F2C] RebootPending: True
|
||||
[2026-06-05 17:05:42.696] [00008F2C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:05:42.696] [00008F2C] HostArchitecture: x64
|
||||
[2026-06-05 17:05:42.696] [00008F2C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:05:42.696] [00008F2C] VerifySignatures: False
|
||||
[2026-06-05 17:05:42.696] [00008F2C] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:05:43.996] [00008F2C] Shutting down
|
||||
[2026-06-05 17:05:43.996] [00008F2C] Shutdown completed.
|
||||
[2026-06-05 17:05:43.996] [00008F2C] Restart required: False
|
||||
[2026-06-05 17:05:43.996] [00008F2C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:42:40.314] [00009004] === Logging started ===
|
||||
[2026-06-05 17:42:40.322] [00009004] Executing: "C:\Program Files\dotnet\dotnet.exe" build --no-restore, PID: 36868, PPID: 23180
|
||||
[2026-06-05 17:42:40.324] [00009004] IsElevated: False
|
||||
[2026-06-05 17:42:40.324] [00009004] Is64BitProcess: True
|
||||
[2026-06-05 17:42:40.324] [00009004] RebootPending: True
|
||||
[2026-06-05 17:42:40.324] [00009004] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:42:40.324] [00009004] HostArchitecture: x64
|
||||
[2026-06-05 17:42:40.324] [00009004] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:42:40.324] [00009004] VerifySignatures: False
|
||||
[2026-06-05 17:42:40.324] [00009004] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:42:45.620] [00009004] Shutting down
|
||||
[2026-06-05 17:42:45.620] [00009004] Shutdown completed.
|
||||
[2026-06-05 17:42:45.620] [00009004] Restart required: False
|
||||
[2026-06-05 17:42:45.620] [00009004] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:56:28.756] [000090DC] === Logging started ===
|
||||
[2026-06-05 18:56:28.762] [000090DC] Executing: "C:\Program Files\dotnet\dotnet.exe" build D:\Projects\Game\GM-Relay.slnx, PID: 37084, PPID: 29024
|
||||
[2026-06-05 18:56:28.764] [000090DC] IsElevated: False
|
||||
[2026-06-05 18:56:28.764] [000090DC] Is64BitProcess: True
|
||||
[2026-06-05 18:56:28.764] [000090DC] RebootPending: True
|
||||
[2026-06-05 18:56:28.764] [000090DC] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:56:28.764] [000090DC] HostArchitecture: x64
|
||||
[2026-06-05 18:56:28.764] [000090DC] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:56:28.764] [000090DC] VerifySignatures: False
|
||||
[2026-06-05 18:56:28.764] [000090DC] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:56:40.335] [000090DC] Shutting down
|
||||
[2026-06-05 18:56:40.335] [000090DC] Shutdown completed.
|
||||
[2026-06-05 18:56:40.335] [000090DC] Restart required: False
|
||||
[2026-06-05 18:56:40.335] [000090DC] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:43:17.990] [00009490] === Logging started ===
|
||||
[2026-06-05 17:43:17.997] [00009490] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-build --verbosity normal --filter FullyQualifiedName~Wizard, PID: 38032, PPID: 2736
|
||||
[2026-06-05 17:43:17.999] [00009490] IsElevated: False
|
||||
[2026-06-05 17:43:17.999] [00009490] Is64BitProcess: True
|
||||
[2026-06-05 17:43:17.999] [00009490] RebootPending: True
|
||||
[2026-06-05 17:43:17.999] [00009490] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:43:17.999] [00009490] HostArchitecture: x64
|
||||
[2026-06-05 17:43:17.999] [00009490] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:43:17.999] [00009490] VerifySignatures: False
|
||||
[2026-06-05 17:43:17.999] [00009490] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:43:26.128] [00009490] Shutting down
|
||||
[2026-06-05 17:43:26.128] [00009490] Shutdown completed.
|
||||
[2026-06-05 17:43:26.128] [00009490] Restart required: False
|
||||
[2026-06-05 17:43:26.128] [00009490] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:35:17.234] [000094D0] === Logging started ===
|
||||
[2026-06-05 16:35:17.241] [000094D0] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~GameCreationWizard --verbosity minimal, PID: 38096, PPID: 43368
|
||||
[2026-06-05 16:35:17.244] [000094D0] IsElevated: False
|
||||
[2026-06-05 16:35:17.244] [000094D0] Is64BitProcess: True
|
||||
[2026-06-05 16:35:17.244] [000094D0] RebootPending: True
|
||||
[2026-06-05 16:35:17.244] [000094D0] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:35:17.244] [000094D0] HostArchitecture: x64
|
||||
[2026-06-05 16:35:17.244] [000094D0] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:35:17.244] [000094D0] VerifySignatures: False
|
||||
[2026-06-05 16:35:17.244] [000094D0] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:35:22.140] [000094D0] Shutting down
|
||||
[2026-06-05 16:35:22.140] [000094D0] Shutdown completed.
|
||||
[2026-06-05 16:35:22.140] [000094D0] Restart required: False
|
||||
[2026-06-05 16:35:22.141] [000094D0] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:34:34.638] [000096D8] === Logging started ===
|
||||
[2026-06-05 17:34:34.645] [000096D8] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 38616, PPID: 24412
|
||||
[2026-06-05 17:34:34.646] [000096D8] IsElevated: False
|
||||
[2026-06-05 17:34:34.646] [000096D8] Is64BitProcess: True
|
||||
[2026-06-05 17:34:34.646] [000096D8] RebootPending: True
|
||||
[2026-06-05 17:34:34.646] [000096D8] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:34:34.646] [000096D8] HostArchitecture: x64
|
||||
[2026-06-05 17:34:34.646] [000096D8] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:34:34.646] [000096D8] VerifySignatures: False
|
||||
[2026-06-05 17:34:34.646] [000096D8] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:34:36.067] [000096D8] Shutting down
|
||||
[2026-06-05 17:34:36.067] [000096D8] Shutdown completed.
|
||||
[2026-06-05 17:34:36.067] [000096D8] Restart required: False
|
||||
[2026-06-05 17:34:36.067] [000096D8] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:35:19.504] [0000972C] === Logging started ===
|
||||
[2026-06-05 18:35:19.510] [0000972C] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal, PID: 38700, PPID: 22848
|
||||
[2026-06-05 18:35:19.512] [0000972C] IsElevated: False
|
||||
[2026-06-05 18:35:19.512] [0000972C] Is64BitProcess: True
|
||||
[2026-06-05 18:35:19.512] [0000972C] RebootPending: True
|
||||
[2026-06-05 18:35:19.512] [0000972C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:35:19.512] [0000972C] HostArchitecture: x64
|
||||
[2026-06-05 18:35:19.512] [0000972C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:35:19.512] [0000972C] VerifySignatures: False
|
||||
[2026-06-05 18:35:19.512] [0000972C] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:35:41.365] [0000972C] Shutting down
|
||||
[2026-06-05 18:35:41.365] [0000972C] Shutdown completed.
|
||||
[2026-06-05 18:35:41.365] [0000972C] Restart required: False
|
||||
[2026-06-05 18:35:41.365] [0000972C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:42:26.200] [0000980C] === Logging started ===
|
||||
[2026-06-05 17:42:26.206] [0000980C] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.DiscordBot/GmRelay.DiscordBot.csproj --no-restore, PID: 38924, PPID: 21396
|
||||
[2026-06-05 17:42:26.208] [0000980C] IsElevated: False
|
||||
[2026-06-05 17:42:26.208] [0000980C] Is64BitProcess: True
|
||||
[2026-06-05 17:42:26.208] [0000980C] RebootPending: True
|
||||
[2026-06-05 17:42:26.208] [0000980C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:42:26.208] [0000980C] HostArchitecture: x64
|
||||
[2026-06-05 17:42:26.208] [0000980C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:42:26.208] [0000980C] VerifySignatures: False
|
||||
[2026-06-05 17:42:26.208] [0000980C] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:42:28.127] [0000980C] Shutting down
|
||||
[2026-06-05 17:42:28.127] [0000980C] Shutdown completed.
|
||||
[2026-06-05 17:42:28.127] [0000980C] Restart required: False
|
||||
[2026-06-05 17:42:28.128] [0000980C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:39:37.460] [00009868] === Logging started ===
|
||||
[2026-06-05 17:39:37.467] [00009868] Executing: "C:\Program Files\dotnet\dotnet.exe" build src/GmRelay.DiscordBot/GmRelay.DiscordBot.csproj --no-restore, PID: 39016, PPID: 27944
|
||||
[2026-06-05 17:39:37.469] [00009868] IsElevated: False
|
||||
[2026-06-05 17:39:37.469] [00009868] Is64BitProcess: True
|
||||
[2026-06-05 17:39:37.469] [00009868] RebootPending: True
|
||||
[2026-06-05 17:39:37.469] [00009868] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:39:37.469] [00009868] HostArchitecture: x64
|
||||
[2026-06-05 17:39:37.469] [00009868] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:39:37.469] [00009868] VerifySignatures: False
|
||||
[2026-06-05 17:39:37.469] [00009868] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:39:38.630] [00009868] Shutting down
|
||||
[2026-06-05 17:39:38.630] [00009868] Shutdown completed.
|
||||
[2026-06-05 17:39:38.630] [00009868] Restart required: False
|
||||
[2026-06-05 17:39:38.630] [00009868] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:25:44.931] [0000993C] === Logging started ===
|
||||
[2026-06-05 16:25:44.937] [0000993C] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~Wizard --verbosity normal, PID: 39228, PPID: 21720
|
||||
[2026-06-05 16:25:44.939] [0000993C] IsElevated: False
|
||||
[2026-06-05 16:25:44.939] [0000993C] Is64BitProcess: True
|
||||
[2026-06-05 16:25:44.939] [0000993C] RebootPending: False
|
||||
[2026-06-05 16:25:44.939] [0000993C] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:25:44.939] [0000993C] HostArchitecture: x64
|
||||
[2026-06-05 16:25:44.939] [0000993C] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:25:44.939] [0000993C] VerifySignatures: False
|
||||
[2026-06-05 16:25:44.939] [0000993C] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:25:56.955] [0000993C] Shutting down
|
||||
[2026-06-05 16:25:56.956] [0000993C] Shutdown completed.
|
||||
[2026-06-05 16:25:56.956] [0000993C] Restart required: False
|
||||
[2026-06-05 16:25:56.956] [0000993C] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 16:16:50.974] [00009994] === Logging started ===
|
||||
[2026-06-05 16:16:50.979] [00009994] Executing: "C:\Program Files\dotnet\dotnet.exe" test tests/GmRelay.Bot.Tests/GmRelay.Bot.Tests.csproj --no-restore --filter FullyQualifiedName~Wizard|FullyQualifiedName~CreateSession --verbosity normal, PID: 39316, PPID: 50744
|
||||
[2026-06-05 16:16:50.981] [00009994] IsElevated: False
|
||||
[2026-06-05 16:16:50.981] [00009994] Is64BitProcess: True
|
||||
[2026-06-05 16:16:50.981] [00009994] RebootPending: False
|
||||
[2026-06-05 16:16:50.981] [00009994] ProcessorArchitecture: amd64
|
||||
[2026-06-05 16:16:50.981] [00009994] HostArchitecture: x64
|
||||
[2026-06-05 16:16:50.981] [00009994] SdkDirectory: 10.0.201
|
||||
[2026-06-05 16:16:50.981] [00009994] VerifySignatures: False
|
||||
[2026-06-05 16:16:50.981] [00009994] SDK feature band: 10.0.200
|
||||
[2026-06-05 16:17:00.143] [00009994] Shutting down
|
||||
[2026-06-05 16:17:00.144] [00009994] Shutdown completed.
|
||||
[2026-06-05 16:17:00.144] [00009994] Restart required: False
|
||||
[2026-06-05 16:17:00.144] [00009994] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:10:59.766] [000099F4] === Logging started ===
|
||||
[2026-06-05 17:10:59.772] [000099F4] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 39412, PPID: 40776
|
||||
[2026-06-05 17:10:59.774] [000099F4] IsElevated: False
|
||||
[2026-06-05 17:10:59.774] [000099F4] Is64BitProcess: True
|
||||
[2026-06-05 17:10:59.774] [000099F4] RebootPending: True
|
||||
[2026-06-05 17:10:59.774] [000099F4] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:10:59.774] [000099F4] HostArchitecture: x64
|
||||
[2026-06-05 17:10:59.774] [000099F4] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:10:59.774] [000099F4] VerifySignatures: False
|
||||
[2026-06-05 17:10:59.774] [000099F4] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:11:01.088] [000099F4] Shutting down
|
||||
[2026-06-05 17:11:01.088] [000099F4] Shutdown completed.
|
||||
[2026-06-05 17:11:01.088] [000099F4] Restart required: False
|
||||
[2026-06-05 17:11:01.088] [000099F4] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 22:51:06.350] [00009B10] === Logging started ===
|
||||
[2026-06-05 22:51:06.355] [00009B10] Executing: "C:\Program Files\dotnet\dotnet.exe" build GM-Relay.slnx, PID: 39696, PPID: 11704
|
||||
[2026-06-05 22:51:06.356] [00009B10] IsElevated: False
|
||||
[2026-06-05 22:51:06.356] [00009B10] Is64BitProcess: True
|
||||
[2026-06-05 22:51:06.356] [00009B10] RebootPending: True
|
||||
[2026-06-05 22:51:06.356] [00009B10] ProcessorArchitecture: amd64
|
||||
[2026-06-05 22:51:06.356] [00009B10] HostArchitecture: x64
|
||||
[2026-06-05 22:51:06.356] [00009B10] SdkDirectory: 10.0.201
|
||||
[2026-06-05 22:51:06.356] [00009B10] VerifySignatures: False
|
||||
[2026-06-05 22:51:06.356] [00009B10] SDK feature band: 10.0.200
|
||||
[2026-06-05 22:51:14.688] [00009B10] Shutting down
|
||||
[2026-06-05 22:51:14.688] [00009B10] Shutdown completed.
|
||||
[2026-06-05 22:51:14.688] [00009B10] Restart required: False
|
||||
[2026-06-05 22:51:14.688] [00009B10] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:15:57.303] [0000A078] === Logging started ===
|
||||
[2026-06-05 18:15:57.309] [0000A078] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 41080, PPID: 49220
|
||||
[2026-06-05 18:15:57.311] [0000A078] IsElevated: False
|
||||
[2026-06-05 18:15:57.311] [0000A078] Is64BitProcess: True
|
||||
[2026-06-05 18:15:57.311] [0000A078] RebootPending: True
|
||||
[2026-06-05 18:15:57.311] [0000A078] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:15:57.311] [0000A078] HostArchitecture: x64
|
||||
[2026-06-05 18:15:57.311] [0000A078] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:15:57.311] [0000A078] VerifySignatures: False
|
||||
[2026-06-05 18:15:57.311] [0000A078] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:15:58.461] [0000A078] Shutting down
|
||||
[2026-06-05 18:15:58.461] [0000A078] Shutdown completed.
|
||||
[2026-06-05 18:15:58.461] [0000A078] Restart required: False
|
||||
[2026-06-05 18:15:58.461] [0000A078] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:56:09.647] [00001038] === Logging started ===
|
||||
[2026-06-05 17:56:09.652] [00001038] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --verbosity normal, PID: 4152, PPID: 17692
|
||||
[2026-06-05 17:56:09.653] [00001038] IsElevated: False
|
||||
[2026-06-05 17:56:09.653] [00001038] Is64BitProcess: True
|
||||
[2026-06-05 17:56:09.653] [00001038] RebootPending: True
|
||||
[2026-06-05 17:56:09.653] [00001038] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:56:09.653] [00001038] HostArchitecture: x64
|
||||
[2026-06-05 17:56:09.653] [00001038] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:56:09.653] [00001038] VerifySignatures: False
|
||||
[2026-06-05 17:56:09.653] [00001038] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:56:31.508] [00001038] Shutting down
|
||||
[2026-06-05 17:56:31.508] [00001038] Shutdown completed.
|
||||
[2026-06-05 17:56:31.511] [00001038] Restart required: False
|
||||
[2026-06-05 17:56:31.511] [00001038] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 17:10:30.177] [0000A298] === Logging started ===
|
||||
[2026-06-05 17:10:30.183] [0000A298] Executing: "C:\Program Files\dotnet\dotnet.exe" build C:\Users\hegin\AppData\Local\Temp\InspectAsm\InspectAsm.csproj, PID: 41624, PPID: 44096
|
||||
[2026-06-05 17:10:30.185] [0000A298] IsElevated: False
|
||||
[2026-06-05 17:10:30.185] [0000A298] Is64BitProcess: True
|
||||
[2026-06-05 17:10:30.185] [0000A298] RebootPending: True
|
||||
[2026-06-05 17:10:30.185] [0000A298] ProcessorArchitecture: amd64
|
||||
[2026-06-05 17:10:30.185] [0000A298] HostArchitecture: x64
|
||||
[2026-06-05 17:10:30.185] [0000A298] SdkDirectory: 10.0.201
|
||||
[2026-06-05 17:10:30.185] [0000A298] VerifySignatures: False
|
||||
[2026-06-05 17:10:30.185] [0000A298] SDK feature band: 10.0.200
|
||||
[2026-06-05 17:10:31.555] [0000A298] Shutting down
|
||||
[2026-06-05 17:10:31.555] [0000A298] Shutdown completed.
|
||||
[2026-06-05 17:10:31.555] [0000A298] Restart required: False
|
||||
[2026-06-05 17:10:31.556] [0000A298] === Logging ended ===
|
||||
@@ -0,0 +1,14 @@
|
||||
[2026-06-05 18:01:42.543] [0000A2EC] === Logging started ===
|
||||
[2026-06-05 18:01:42.548] [0000A2EC] Executing: "C:\Program Files\dotnet\dotnet.exe" test D:\Projects\Game\tests\GmRelay.Bot.Tests\GmRelay.Bot.Tests.csproj --filter FullyQualifiedName~Discord --verbosity normal, PID: 41708, PPID: 51888
|
||||
[2026-06-05 18:01:42.550] [0000A2EC] IsElevated: False
|
||||
[2026-06-05 18:01:42.550] [0000A2EC] Is64BitProcess: True
|
||||
[2026-06-05 18:01:42.550] [0000A2EC] RebootPending: True
|
||||
[2026-06-05 18:01:42.550] [0000A2EC] ProcessorArchitecture: amd64
|
||||
[2026-06-05 18:01:42.550] [0000A2EC] HostArchitecture: x64
|
||||
[2026-06-05 18:01:42.550] [0000A2EC] SdkDirectory: 10.0.201
|
||||
[2026-06-05 18:01:42.550] [0000A2EC] VerifySignatures: False
|
||||
[2026-06-05 18:01:42.550] [0000A2EC] SDK feature band: 10.0.200
|
||||
[2026-06-05 18:01:46.934] [0000A2EC] Shutting down
|
||||
[2026-06-05 18:01:46.934] [0000A2EC] Shutdown completed.
|
||||
[2026-06-05 18:01:46.934] [0000A2EC] Restart required: False
|
||||
[2026-06-05 18:01:46.935] [0000A2EC] === Logging ended ===
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user