stabilize tests
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using System.Text.Json;
|
||||
|
||||
using Microsoft.Extensions.Logging;
|
||||
using StellaOps.Microservice;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace Examples.Billing.Microservice.Endpoints;
|
||||
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
# Examples.Billing.Microservice Task Board
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20260130_002_Tools_csproj_remediation_solid_review.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| REMED-05 | TODO | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/Router/examples/Examples.Billing.Microservice/Examples.Billing.Microservice.md. |
|
||||
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |
|
||||
@@ -1,7 +1,8 @@
|
||||
|
||||
using StellaOps.Router.Config;
|
||||
using StellaOps.Router.Gateway;
|
||||
using StellaOps.Router.Gateway.Authorization;
|
||||
using StellaOps.Router.Gateway.DependencyInjection;
|
||||
using StellaOps.Router.Config;
|
||||
using StellaOps.Router.Transport.InMemory;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
8
src/Router/examples/Examples.Gateway/TASKS.md
Normal file
8
src/Router/examples/Examples.Gateway/TASKS.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# Examples.Gateway Task Board
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20260130_002_Tools_csproj_remediation_solid_review.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| REMED-05 | TODO | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/Router/examples/Examples.Gateway/Examples.Gateway.md. |
|
||||
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |
|
||||
@@ -0,0 +1,8 @@
|
||||
# Examples.Inventory.Microservice Task Board
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20260130_002_Tools_csproj_remediation_solid_review.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| REMED-05 | TODO | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/Router/examples/Examples.Inventory.Microservice/Examples.Inventory.Microservice.md. |
|
||||
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |
|
||||
@@ -11,10 +11,11 @@
|
||||
// handles routing decisions, authorization, and request dispatch.
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
|
||||
using StellaOps.Router.Config;
|
||||
using StellaOps.Router.Gateway;
|
||||
using StellaOps.Router.Gateway.Authorization;
|
||||
using StellaOps.Router.Gateway.DependencyInjection;
|
||||
using StellaOps.Router.Config;
|
||||
using StellaOps.Router.Transport.InMemory;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
# Examples.MultiTransport.Gateway Task Board
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20260130_002_Tools_csproj_remediation_solid_review.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| REMED-05 | TODO | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/Router/examples/Examples.MultiTransport.Gateway/Examples.MultiTransport.Gateway.md. |
|
||||
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |
|
||||
@@ -8,11 +8,12 @@
|
||||
// - Long-running operation with heartbeat
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
|
||||
using Examples.NotificationService.Models;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using StellaOps.Microservice;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace Examples.NotificationService.Endpoints;
|
||||
|
||||
|
||||
@@ -8,11 +8,12 @@
|
||||
// - Heartbeat for connection health
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
|
||||
using Examples.NotificationService.Models;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using StellaOps.Microservice;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace Examples.NotificationService.Endpoints;
|
||||
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
# Examples.NotificationService Task Board
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20260130_002_Tools_csproj_remediation_solid_review.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| REMED-05 | TODO | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/Router/examples/Examples.NotificationService/Examples.NotificationService.md. |
|
||||
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |
|
||||
@@ -8,10 +8,11 @@
|
||||
// - CSV generation with chunked output
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
using System.Text;
|
||||
|
||||
using Examples.OrderService.Models;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using StellaOps.Microservice;
|
||||
using System.Text;
|
||||
|
||||
namespace Examples.OrderService.Endpoints;
|
||||
|
||||
|
||||
@@ -8,11 +8,12 @@
|
||||
// - Graceful cancellation handling
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
|
||||
using Examples.OrderService.Models;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using StellaOps.Microservice;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace Examples.OrderService.Endpoints;
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
// - Large file handling with progress tracking
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
|
||||
using Microsoft.Extensions.Logging;
|
||||
using StellaOps.Microservice;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
// - Correlation ID propagation
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
|
||||
using Examples.OrderService.Endpoints;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
@@ -17,8 +18,8 @@ using Microsoft.Extensions.Logging;
|
||||
using StellaOps.Microservice;
|
||||
using StellaOps.Router.Common.Enums;
|
||||
using StellaOps.Router.Transport.InMemory;
|
||||
using StellaOps.Router.Transport.Tcp;
|
||||
using StellaOps.Router.Transport.RabbitMq;
|
||||
using StellaOps.Router.Transport.Tcp;
|
||||
|
||||
var builder = Host.CreateApplicationBuilder(args);
|
||||
|
||||
|
||||
8
src/Router/examples/Examples.OrderService/TASKS.md
Normal file
8
src/Router/examples/Examples.OrderService/TASKS.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# Examples.OrderService Task Board
|
||||
This board mirrors active sprint tasks for this module.
|
||||
Source of truth: `docs/implplan/SPRINT_20260130_002_Tools_csproj_remediation_solid_review.md`.
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| REMED-05 | TODO | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/Router/examples/Examples.OrderService/Examples.OrderService.md. |
|
||||
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |
|
||||
Reference in New Issue
Block a user