archive audit attempts

This commit is contained in:
master
2026-02-19 22:00:31 +02:00
parent c2f13fe588
commit b5829dce5c
19638 changed files with 6366 additions and 7 deletions

View File

@@ -0,0 +1,77 @@
# Audit - FixtureUpdater
## Project
- Path: src/Tools/FixtureUpdater/FixtureUpdater.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 6
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 6
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/FixtureUpdater/FixtureUpdaterRunner.cs (533 lines)
- Namespace issues:
- src/Tools/FixtureUpdater/FixtureUpdaterApp.cs: missing namespace
- src/Tools/FixtureUpdater/FixtureUpdaterRunner.cs: missing namespace
- src/Tools/FixtureUpdater/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/FixtureUpdater/obj/Debug/net10.0/FixtureUpdater.AssemblyInfo.cs: missing namespace
- src/Tools/FixtureUpdater/obj/Debug/net10.0/FixtureUpdater.GlobalUsings.g.cs: missing namespace
- src/Tools/FixtureUpdater/obj/Release/net10.0/FixtureUpdater.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 6
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/FixtureUpdater/FixtureUpdaterApp.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/FixtureUpdater/FixtureUpdaterRunner.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/FixtureUpdater/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/FixtureUpdater/obj/Debug/net10.0/FixtureUpdater.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/FixtureUpdater/obj/Debug/net10.0/FixtureUpdater.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/FixtureUpdater/obj/Release/net10.0/FixtureUpdater.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/FixtureUpdater.Tests/FixtureUpdater.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,71 @@
# Audit - FixtureUpdater
## Project
- Path: src/Tools/FixtureUpdater/FixtureUpdater.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 3
- Files with issues: 3
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 0
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 2
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/FixtureUpdater/FixtureUpdaterRunner.cs (534 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Tools/FixtureUpdater/FixtureUpdaterRunner.cs: using directives inside namespace
- Naming issues:
- none
- Async issues:
- src/Tools/FixtureUpdater/FixtureUpdaterApp.cs: async method naming
- src/Tools/FixtureUpdater/Program.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Rename async methods and avoid blocking async calls.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 3
- Files with issues: 3
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/FixtureUpdater/FixtureUpdaterApp.cs | AsyncNaming | Rename async methods to end with Async. |
| src/Tools/FixtureUpdater/FixtureUpdaterRunner.cs | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| src/Tools/FixtureUpdater/Program.cs | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/FixtureUpdater.Tests/FixtureUpdater.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,108 @@
# Audit - StellaOps.Tools.GoldenPairs
## Project
- Path: src/Tools/GoldenPairs/StellaOps.Tools.GoldenPairs.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 20
- Files with issues: 19
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 5
- Namespace violations: 19
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 1
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/GoldenPairs/GoldenPairsApp.cs (320 lines)
- src/Tools/GoldenPairs/Models/GoldenPairMetadata.cs (173 lines)
- src/Tools/GoldenPairs/Services/DiffPipelineService.cs (289 lines)
- src/Tools/GoldenPairs/Services/GoldenPairLoader.cs (211 lines)
- src/Tools/GoldenPairs/Services/PackageMirrorService.cs (286 lines)
- Namespace issues:
- src/Tools/GoldenPairs/GoldenPairsApp.cs: missing namespace
- src/Tools/GoldenPairs/Models/GoldenDiffReport.cs: missing namespace
- src/Tools/GoldenPairs/Models/GoldenPairMetadata.cs: missing namespace
- src/Tools/GoldenPairs/Models/GoldenPairsIndex.cs: missing namespace
- src/Tools/GoldenPairs/Models/SectionHashModels.cs: missing namespace
- src/Tools/GoldenPairs/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/GoldenPairs/obj/Debug/net10.0/StellaOps.Tools.GoldenPairs.AssemblyInfo.cs: missing namespace
- src/Tools/GoldenPairs/obj/Debug/net10.0/StellaOps.Tools.GoldenPairs.GlobalUsings.g.cs: missing namespace
- src/Tools/GoldenPairs/obj/Release/net10.0/StellaOps.Tools.GoldenPairs.GlobalUsings.g.cs: missing namespace
- src/Tools/GoldenPairs/Schema/GoldenPairsSchemaProvider.cs: missing namespace
- src/Tools/GoldenPairs/Serialization/GoldenPairsJsonSerializer.cs: missing namespace
- src/Tools/GoldenPairs/Services/DiffPipelineService.cs: missing namespace
- src/Tools/GoldenPairs/Services/GoldenPairLayout.cs: missing namespace
- src/Tools/GoldenPairs/Services/GoldenPairLoader.cs: missing namespace
- src/Tools/GoldenPairs/Services/GoldenPairNormalizer.cs: missing namespace
- src/Tools/GoldenPairs/Services/GoldenPairsPaths.cs: missing namespace
- src/Tools/GoldenPairs/Services/GoldenPairsServiceFactory.cs: missing namespace
- src/Tools/GoldenPairs/Services/PackageMirrorService.cs: missing namespace
- src/Tools/GoldenPairs/Services/SectionHashProvider.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- src/Tools/GoldenPairs/Services/GoldenPairsServiceFactory.cs:49 return services.BuildServiceProvider();
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Replace service locator usage with constructor injection.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 20
- Files with issues: 19
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/GoldenPairs/GoldenPairsApp.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Models/GoldenDiffReport.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/Models/GoldenPairMetadata.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Models/GoldenPairsIndex.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/Models/SectionHashModels.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/obj/Debug/net10.0/StellaOps.Tools.GoldenPairs.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/obj/Debug/net10.0/StellaOps.Tools.GoldenPairs.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/obj/Release/net10.0/StellaOps.Tools.GoldenPairs.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/Schema/GoldenPairsSchemaProvider.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/Serialization/GoldenPairsJsonSerializer.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/Services/DiffPipelineService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Services/GoldenPairLayout.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/Services/GoldenPairLoader.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Services/GoldenPairNormalizer.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/Services/GoldenPairsPaths.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/GoldenPairs/Services/GoldenPairsServiceFactory.cs | NamespaceMissing; ServiceLocator | Add file-scoped namespace: namespace StellaOps.<Area>;; Remove service locator usage; use constructor injection. |
| src/Tools/GoldenPairs/Services/PackageMirrorService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Services/SectionHashProvider.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/StellaOps.Tools.GoldenPairs.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,95 @@
# Audit - StellaOps.Tools.GoldenPairs
## Project
- Path: src/Tools/GoldenPairs/StellaOps.Tools.GoldenPairs.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 16
- Files with issues: 8
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 5
- Namespace violations: 0
- Using directive violations: 3
- Naming violations (interfaces/fields/const/async): 4
- Service locator usage (BuildServiceProvider/GetService): 11
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/GoldenPairs/GoldenPairsApp.cs (321 lines)
- src/Tools/GoldenPairs/Models/GoldenPairMetadata.cs (173 lines)
- src/Tools/GoldenPairs/Services/DiffPipelineService.cs (290 lines)
- src/Tools/GoldenPairs/Services/GoldenPairLoader.cs (212 lines)
- src/Tools/GoldenPairs/Services/PackageMirrorService.cs (287 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Tools/GoldenPairs/GoldenPairsApp.cs: using directives inside namespace
- src/Tools/GoldenPairs/Services/GoldenPairLoader.cs: using directives inside namespace
- src/Tools/GoldenPairs/Services/PackageMirrorService.cs: using directives inside namespace
- Naming issues:
- src/Tools/GoldenPairs/Serialization/GoldenPairsJsonSerializer.cs: private field naming
- Async issues:
- src/Tools/GoldenPairs/Services/GoldenPairLoader.cs: async method naming
- src/Tools/GoldenPairs/Services/PackageMirrorService.cs: async method naming
- src/Tools/GoldenPairs/Services/SectionHashProvider.cs: async method naming
- Service locator matches:
- src/Tools/GoldenPairs/GoldenPairsApp.cs:55 var loader = provider.GetRequiredService<GoldenPairLoader>();
- src/Tools/GoldenPairs/GoldenPairsApp.cs:56 var mirror = provider.GetRequiredService<IPackageMirrorService>();
- src/Tools/GoldenPairs/GoldenPairsApp.cs:57 var layout = provider.GetRequiredService<GoldenPairLayout>();
- src/Tools/GoldenPairs/GoldenPairsApp.cs:121 var loader = provider.GetRequiredService<GoldenPairLoader>();
- src/Tools/GoldenPairs/GoldenPairsApp.cs:122 var diff = provider.GetRequiredService<IDiffPipelineService>();
- src/Tools/GoldenPairs/GoldenPairsApp.cs:123 var layout = provider.GetRequiredService<GoldenPairLayout>();
- src/Tools/GoldenPairs/GoldenPairsApp.cs:183 var loader = provider.GetRequiredService<GoldenPairLoader>();
- src/Tools/GoldenPairs/GoldenPairsApp.cs:184 var diff = provider.GetRequiredService<IDiffPipelineService>();
- src/Tools/GoldenPairs/GoldenPairsApp.cs:185 var layout = provider.GetRequiredService<GoldenPairLayout>();
- src/Tools/GoldenPairs/Services/GoldenPairsServiceFactory.cs:38 var timeProvider = sp.GetRequiredService<TimeProvider>();
- src/Tools/GoldenPairs/Services/GoldenPairsServiceFactory.cs:49 return services.BuildServiceProvider();
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Align interface/field/const naming to standards.
- Move and sort using directives (outside namespace).
- Rename async methods and avoid blocking async calls.
- Replace service locator usage with constructor injection.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 16
- Files with issues: 8
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/GoldenPairs/GoldenPairsApp.cs | FileLength>100; ServiceLocator; UsingInsideNamespace | Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Models/GoldenPairMetadata.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Serialization/GoldenPairsJsonSerializer.cs | PrivateFieldNaming | Rename private fields to _camelCase. |
| src/Tools/GoldenPairs/Services/DiffPipelineService.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Services/GoldenPairLoader.cs | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Services/GoldenPairsServiceFactory.cs | ServiceLocator | Remove service locator usage; use constructor injection. |
| src/Tools/GoldenPairs/Services/PackageMirrorService.cs | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| src/Tools/GoldenPairs/Services/SectionHashProvider.cs | AsyncNaming | Rename async methods to end with Async. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/StellaOps.Tools.GoldenPairs.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,83 @@
# Audit - LanguageAnalyzerSmoke
## Project
- Path: src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmoke.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 8
- Files with issues: 7
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 2
- Namespace violations: 7
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 3
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeApp.cs (114 lines)
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs (469 lines)
- Namespace issues:
- src/Tools/LanguageAnalyzerSmoke/InternalsVisibleTo.cs: missing namespace
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeApp.cs: missing namespace
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs: missing namespace
- src/Tools/LanguageAnalyzerSmoke/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/LanguageAnalyzerSmoke/obj/Debug/net10.0/LanguageAnalyzerSmoke.AssemblyInfo.cs: missing namespace
- src/Tools/LanguageAnalyzerSmoke/obj/Debug/net10.0/LanguageAnalyzerSmoke.GlobalUsings.g.cs: missing namespace
- src/Tools/LanguageAnalyzerSmoke/obj/Release/net10.0/LanguageAnalyzerSmoke.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs:221 using var serviceProvider = BuildServiceProvider();
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs:381 private static ServiceProvider BuildServiceProvider()
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs:385 return services.BuildServiceProvider();
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Replace service locator usage with constructor injection.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 8
- Files with issues: 7
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/LanguageAnalyzerSmoke/InternalsVisibleTo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeApp.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs | FileLength>100; NamespaceMissing; ServiceLocator | Add file-scoped namespace: namespace StellaOps.<Area>;; Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| src/Tools/LanguageAnalyzerSmoke/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/LanguageAnalyzerSmoke/obj/Debug/net10.0/LanguageAnalyzerSmoke.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/LanguageAnalyzerSmoke/obj/Debug/net10.0/LanguageAnalyzerSmoke.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/LanguageAnalyzerSmoke/obj/Release/net10.0/LanguageAnalyzerSmoke.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/LanguageAnalyzerSmoke.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,80 @@
# Audit - LanguageAnalyzerSmoke
## Project
- Path: src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmoke.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 4
- Files with issues: 4
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 2
- Namespace violations: 1
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 5
- Service locator usage (BuildServiceProvider/GetService): 3
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeApp.cs (114 lines)
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs (470 lines)
- Namespace issues:
- src/Tools/LanguageAnalyzerSmoke/InternalsVisibleTo.cs: missing namespace
- Using directive issues:
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs: using directives inside namespace
- Naming issues:
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeApp.cs: private field naming
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs: private field naming
- Async issues:
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeApp.cs: async method naming
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs: async method naming
- src/Tools/LanguageAnalyzerSmoke/Program.cs: missing ConfigureAwait(false)
- Service locator matches:
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs:222 using var serviceProvider = BuildServiceProvider();
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs:382 private static ServiceProvider BuildServiceProvider()
- src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs:386 return services.BuildServiceProvider();
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Align interface/field/const naming to standards.
- Move and sort using directives (outside namespace).
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Rename async methods and avoid blocking async calls.
- Replace service locator usage with constructor injection.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 4
- Files with issues: 4
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/LanguageAnalyzerSmoke/InternalsVisibleTo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeApp.cs | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmokeRunner.cs | AsyncNaming; FileLength>100; PrivateFieldNaming; ServiceLocator; UsingInsideNamespace | Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| src/Tools/LanguageAnalyzerSmoke/Program.cs | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/LanguageAnalyzerSmoke.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,83 @@
# Audit - NotifySmokeCheck
## Project
- Path: src/Tools/NotifySmokeCheck/NotifySmokeCheck.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 10
- Files with issues: 9
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 9
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/NotifySmokeCheck/NotifySmokeCheckRunner.cs (516 lines)
- Namespace issues:
- src/Tools/NotifySmokeCheck/InternalsVisibleTo.cs: missing namespace
- src/Tools/NotifySmokeCheck/NotifySmokeCheckApp.cs: missing namespace
- src/Tools/NotifySmokeCheck/NotifySmokeCheckRunner.cs: missing namespace
- src/Tools/NotifySmokeCheck/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/NotifySmokeCheck/obj/Debug/net10.0/NotifySmokeCheck.AssemblyInfo.cs: missing namespace
- src/Tools/NotifySmokeCheck/obj/Debug/net10.0/NotifySmokeCheck.GlobalUsings.g.cs: missing namespace
- src/Tools/NotifySmokeCheck/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/NotifySmokeCheck/obj/Release/net10.0/NotifySmokeCheck.AssemblyInfo.cs: missing namespace
- src/Tools/NotifySmokeCheck/obj/Release/net10.0/NotifySmokeCheck.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 10
- Files with issues: 9
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/NotifySmokeCheck/InternalsVisibleTo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/NotifySmokeCheck/NotifySmokeCheckApp.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/NotifySmokeCheck/NotifySmokeCheckRunner.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/NotifySmokeCheck/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/NotifySmokeCheck/obj/Debug/net10.0/NotifySmokeCheck.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/NotifySmokeCheck/obj/Debug/net10.0/NotifySmokeCheck.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/NotifySmokeCheck/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/NotifySmokeCheck/obj/Release/net10.0/NotifySmokeCheck.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/NotifySmokeCheck/obj/Release/net10.0/NotifySmokeCheck.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/NotifySmokeCheck.Tests/NotifySmokeCheck.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,75 @@
# Audit - NotifySmokeCheck
## Project
- Path: src/Tools/NotifySmokeCheck/NotifySmokeCheck.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 4
- Files with issues: 4
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 1
- Using directive violations: 2
- Naming violations (interfaces/fields/const/async): 3
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/NotifySmokeCheck/NotifySmokeCheckRunner.cs (517 lines)
- Namespace issues:
- src/Tools/NotifySmokeCheck/InternalsVisibleTo.cs: missing namespace
- Using directive issues:
- src/Tools/NotifySmokeCheck/NotifySmokeCheckApp.cs: using directives inside namespace
- src/Tools/NotifySmokeCheck/NotifySmokeCheckRunner.cs: using directives inside namespace
- Naming issues:
- none
- Async issues:
- src/Tools/NotifySmokeCheck/NotifySmokeCheckApp.cs: async method naming
- src/Tools/NotifySmokeCheck/NotifySmokeCheckRunner.cs: async method naming
- src/Tools/NotifySmokeCheck/Program.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Rename async methods and avoid blocking async calls.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 4
- Files with issues: 4
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/NotifySmokeCheck/InternalsVisibleTo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/NotifySmokeCheck/NotifySmokeCheckApp.cs | AsyncNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async. |
| src/Tools/NotifySmokeCheck/NotifySmokeCheckRunner.cs | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| src/Tools/NotifySmokeCheck/Program.cs | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/NotifySmokeCheck.Tests/NotifySmokeCheck.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,72 @@
# Audit - PolicyDslValidator
## Project
- Path: src/Tools/PolicyDslValidator/PolicyDslValidator.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 5
- Files with issues: 4
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 4
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- src/Tools/PolicyDslValidator/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/PolicyDslValidator/obj/Debug/net10.0/PolicyDslValidator.AssemblyInfo.cs: missing namespace
- src/Tools/PolicyDslValidator/obj/Debug/net10.0/PolicyDslValidator.GlobalUsings.g.cs: missing namespace
- src/Tools/PolicyDslValidator/obj/Release/net10.0/PolicyDslValidator.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
## File-Level Findings
- Status: FAIL
- Files scanned: 5
- Files with issues: 4
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/PolicyDslValidator/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/PolicyDslValidator/obj/Debug/net10.0/PolicyDslValidator.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/PolicyDslValidator/obj/Debug/net10.0/PolicyDslValidator.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/PolicyDslValidator/obj/Release/net10.0/PolicyDslValidator.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/PolicyDslValidator.Tests/PolicyDslValidator.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,66 @@
# Audit - PolicyDslValidator
## Project
- Path: src/Tools/PolicyDslValidator/PolicyDslValidator.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 0
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 1
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- src/Tools/PolicyDslValidator/Program.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Rename async methods and avoid blocking async calls.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/PolicyDslValidator/Program.cs | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/PolicyDslValidator.Tests/PolicyDslValidator.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,72 @@
# Audit - PolicySchemaExporter
## Project
- Path: src/Tools/PolicySchemaExporter/PolicySchemaExporter.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 5
- Files with issues: 4
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 4
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- src/Tools/PolicySchemaExporter/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/PolicySchemaExporter/obj/Debug/net10.0/PolicySchemaExporter.AssemblyInfo.cs: missing namespace
- src/Tools/PolicySchemaExporter/obj/Debug/net10.0/PolicySchemaExporter.GlobalUsings.g.cs: missing namespace
- src/Tools/PolicySchemaExporter/obj/Release/net10.0/PolicySchemaExporter.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
## File-Level Findings
- Status: FAIL
- Files scanned: 5
- Files with issues: 4
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/PolicySchemaExporter/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/PolicySchemaExporter/obj/Debug/net10.0/PolicySchemaExporter.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/PolicySchemaExporter/obj/Debug/net10.0/PolicySchemaExporter.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/PolicySchemaExporter/obj/Release/net10.0/PolicySchemaExporter.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/PolicySchemaExporter.Tests/PolicySchemaExporter.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,66 @@
# Audit - PolicySchemaExporter
## Project
- Path: src/Tools/PolicySchemaExporter/PolicySchemaExporter.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 0
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 1
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- src/Tools/PolicySchemaExporter/Program.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Rename async methods and avoid blocking async calls.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/PolicySchemaExporter/Program.cs | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/PolicySchemaExporter.Tests/PolicySchemaExporter.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,72 @@
# Audit - PolicySimulationSmoke
## Project
- Path: src/Tools/PolicySimulationSmoke/PolicySimulationSmoke.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 5
- Files with issues: 4
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 4
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- src/Tools/PolicySimulationSmoke/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/PolicySimulationSmoke/obj/Debug/net10.0/PolicySimulationSmoke.AssemblyInfo.cs: missing namespace
- src/Tools/PolicySimulationSmoke/obj/Debug/net10.0/PolicySimulationSmoke.GlobalUsings.g.cs: missing namespace
- src/Tools/PolicySimulationSmoke/obj/Release/net10.0/PolicySimulationSmoke.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
## File-Level Findings
- Status: FAIL
- Files scanned: 5
- Files with issues: 4
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/PolicySimulationSmoke/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/PolicySimulationSmoke/obj/Debug/net10.0/PolicySimulationSmoke.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/PolicySimulationSmoke/obj/Debug/net10.0/PolicySimulationSmoke.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/PolicySimulationSmoke/obj/Release/net10.0/PolicySimulationSmoke.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/PolicySimulationSmoke.Tests/PolicySimulationSmoke.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,66 @@
# Audit - PolicySimulationSmoke
## Project
- Path: src/Tools/PolicySimulationSmoke/PolicySimulationSmoke.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 0
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 1
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- src/Tools/PolicySimulationSmoke/Program.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Rename async methods and avoid blocking async calls.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/PolicySimulationSmoke/Program.cs | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/PolicySimulationSmoke.Tests/PolicySimulationSmoke.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,82 @@
# Audit - RustFsMigrator
## Project
- Path: src/Tools/RustFsMigrator/RustFsMigrator.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 9
- Files with issues: 9
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 8
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/RustFsMigrator/Program.cs (407 lines)
- Namespace issues:
- src/Tools/RustFsMigrator/InternalsVisibleTo.cs: missing namespace
- src/Tools/RustFsMigrator/RustFsMigratorPaths.cs: missing namespace
- src/Tools/RustFsMigrator/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/RustFsMigrator/obj/Debug/net10.0/RustFsMigrator.AssemblyInfo.cs: missing namespace
- src/Tools/RustFsMigrator/obj/Debug/net10.0/RustFsMigrator.GlobalUsings.g.cs: missing namespace
- src/Tools/RustFsMigrator/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/RustFsMigrator/obj/Release/net10.0/RustFsMigrator.AssemblyInfo.cs: missing namespace
- src/Tools/RustFsMigrator/obj/Release/net10.0/RustFsMigrator.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 9
- Files with issues: 9
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/RustFsMigrator/InternalsVisibleTo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/RustFsMigrator/Program.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/RustFsMigrator/RustFsMigratorPaths.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/RustFsMigrator/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/RustFsMigrator/obj/Debug/net10.0/RustFsMigrator.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/RustFsMigrator/obj/Debug/net10.0/RustFsMigrator.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/RustFsMigrator/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/RustFsMigrator/obj/Release/net10.0/RustFsMigrator.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/RustFsMigrator/obj/Release/net10.0/RustFsMigrator.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/RustFsMigrator.Tests/RustFsMigrator.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,71 @@
# Audit - RustFsMigrator
## Project
- Path: src/Tools/RustFsMigrator/RustFsMigrator.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 3
- Files with issues: 3
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 2
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/RustFsMigrator/Program.cs (407 lines)
- Namespace issues:
- src/Tools/RustFsMigrator/InternalsVisibleTo.cs: missing namespace
- src/Tools/RustFsMigrator/RustFsMigratorPaths.cs: missing namespace
- Using directive issues:
- src/Tools/RustFsMigrator/Program.cs: using directives not sorted
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 3
- Files with issues: 3
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/RustFsMigrator/InternalsVisibleTo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/RustFsMigrator/Program.cs | FileLength>100; UsingNotSorted | Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| src/Tools/RustFsMigrator/RustFsMigratorPaths.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/RustFsMigrator.Tests/RustFsMigrator.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,100 @@
# Audit - StellaOps.Tools.WorkflowGenerator
## Project
- Path: src/Tools/StellaOps.Tools.WorkflowGenerator/StellaOps.Tools.WorkflowGenerator.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 16
- Files with issues: 16
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 4
- Namespace violations: 16
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/StellaOps.Tools.WorkflowGenerator/AzureDevOpsGenerator.cs (241 lines)
- src/Tools/StellaOps.Tools.WorkflowGenerator/GitHubActionsGenerator.cs (230 lines)
- src/Tools/StellaOps.Tools.WorkflowGenerator/GitLabCiGenerator.cs (189 lines)
- src/Tools/StellaOps.Tools.WorkflowGenerator/WorkflowOptions.cs (107 lines)
- Namespace issues:
- src/Tools/StellaOps.Tools.WorkflowGenerator/AzureDevOpsGenerator.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/CiPlatform.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/GitHubActionsGenerator.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/GitLabCiGenerator.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/IWorkflowGenerator.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/ScanConfig.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/TriggerConfig.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/UploadConfig.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/WorkflowGeneratorFactory.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/WorkflowOptions.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Debug/net10.0/StellaOps.Tools.WorkflowGenerator.AssemblyInfo.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Debug/net10.0/StellaOps.Tools.WorkflowGenerator.GlobalUsings.g.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Release/net10.0/StellaOps.Tools.WorkflowGenerator.AssemblyInfo.cs: missing namespace
- src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Release/net10.0/StellaOps.Tools.WorkflowGenerator.GlobalUsings.g.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 16
- Files with issues: 16
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/StellaOps.Tools.WorkflowGenerator/AzureDevOpsGenerator.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/StellaOps.Tools.WorkflowGenerator/CiPlatform.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/GitHubActionsGenerator.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/StellaOps.Tools.WorkflowGenerator/GitLabCiGenerator.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/StellaOps.Tools.WorkflowGenerator/IWorkflowGenerator.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/ScanConfig.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/TriggerConfig.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/UploadConfig.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/WorkflowGeneratorFactory.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/WorkflowOptions.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Debug/net10.0/StellaOps.Tools.WorkflowGenerator.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Debug/net10.0/StellaOps.Tools.WorkflowGenerator.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Release/net10.0/StellaOps.Tools.WorkflowGenerator.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Tools/StellaOps.Tools.WorkflowGenerator/obj/Release/net10.0/StellaOps.Tools.WorkflowGenerator.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/StellaOps.Tools.WorkflowGenerator.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,72 @@
# Audit - StellaOps.Tools.WorkflowGenerator
## Project
- Path: src/Tools/StellaOps.Tools.WorkflowGenerator/StellaOps.Tools.WorkflowGenerator.csproj
- Module: Tools
- Kind: Tool
- Audit date (UTC): 2026-01-31
- Files scanned: 10
- Files with issues: 4
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 4
- Namespace violations: 0
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/StellaOps.Tools.WorkflowGenerator/AzureDevOpsGenerator.cs (241 lines)
- src/Tools/StellaOps.Tools.WorkflowGenerator/GitHubActionsGenerator.cs (230 lines)
- src/Tools/StellaOps.Tools.WorkflowGenerator/GitLabCiGenerator.cs (189 lines)
- src/Tools/StellaOps.Tools.WorkflowGenerator/WorkflowOptions.cs (107 lines)
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 10
- Files with issues: 4
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/StellaOps.Tools.WorkflowGenerator/AzureDevOpsGenerator.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/StellaOps.Tools.WorkflowGenerator/GitHubActionsGenerator.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/StellaOps.Tools.WorkflowGenerator/GitLabCiGenerator.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/StellaOps.Tools.WorkflowGenerator/WorkflowOptions.cs | FileLength>100 | Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic): Unit
- Detected test projects: src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/StellaOps.Tools.WorkflowGenerator.Tests.csproj [Unit]
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,69 @@
# Audit - FixtureUpdater.Tests
## Project
- Path: src/Tools/__Tests/FixtureUpdater.Tests/FixtureUpdater.Tests.csproj
- Module: Tools
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 1
- Namespace violations: 1
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/__Tests/FixtureUpdater.Tests/FixtureUpdaterRunnerTests.cs (143 lines)
- Namespace issues:
- src/Tools/__Tests/FixtureUpdater.Tests/FixtureUpdaterRunnerTests.cs: missing namespace
- Using directive issues:
- src/Tools/__Tests/FixtureUpdater.Tests/FixtureUpdaterRunnerTests.cs: using directives not sorted
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/__Tests/FixtureUpdater.Tests/FixtureUpdaterRunnerTests.cs | FileLength>100; NamespaceMissing; UsingNotSorted | Add file-scoped namespace: namespace StellaOps.<Area>;; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,68 @@
# Audit - LanguageAnalyzerSmoke.Tests
## Project
- Path: src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/LanguageAnalyzerSmoke.Tests.csproj
- Module: Tools
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 1
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/LanguageAnalyzerSmokeRunnerTests.cs: missing namespace
- Using directive issues:
- src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/LanguageAnalyzerSmokeRunnerTests.cs: using directives not sorted
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/LanguageAnalyzerSmokeRunnerTests.cs | NamespaceMissing; UsingNotSorted | Add file-scoped namespace: namespace StellaOps.<Area>;; Sort using directives alphabetically. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,68 @@
# Audit - NotifySmokeCheck.Tests
## Project
- Path: src/Tools/__Tests/NotifySmokeCheck.Tests/NotifySmokeCheck.Tests.csproj
- Module: Tools
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 1
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- src/Tools/__Tests/NotifySmokeCheck.Tests/NotifySmokeCheckRunnerTests.cs: missing namespace
- Using directive issues:
- src/Tools/__Tests/NotifySmokeCheck.Tests/NotifySmokeCheckRunnerTests.cs: using directives not sorted
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/__Tests/NotifySmokeCheck.Tests/NotifySmokeCheckRunnerTests.cs | NamespaceMissing; UsingNotSorted | Add file-scoped namespace: namespace StellaOps.<Area>;; Sort using directives alphabetically. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,69 @@
# Audit - PolicyDslValidator.Tests
## Project
- Path: src/Tools/__Tests/PolicyDslValidator.Tests/PolicyDslValidator.Tests.csproj
- Module: Tools
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 1
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 2
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- src/Tools/__Tests/PolicyDslValidator.Tests/PolicyDslValidatorAppTests.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- src/Tools/__Tests/PolicyDslValidator.Tests/PolicyDslValidatorAppTests.cs: async method naming
- src/Tools/__Tests/PolicyDslValidator.Tests/PolicyDslValidatorAppTests.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
- Rename async methods and avoid blocking async calls.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/__Tests/PolicyDslValidator.Tests/PolicyDslValidatorAppTests.cs | AsyncNaming; ConfigureAwaitMissing; NamespaceMissing | Add ConfigureAwait(false) to awaited calls in library-like code.; Add file-scoped namespace: namespace StellaOps.<Area>;; Rename async methods to end with Async. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,68 @@
# Audit - PolicySchemaExporter.Tests
## Project
- Path: src/Tools/__Tests/PolicySchemaExporter.Tests/PolicySchemaExporter.Tests.csproj
- Module: Tools
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 1
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- src/Tools/__Tests/PolicySchemaExporter.Tests/PolicySchemaExporterTests.cs: missing namespace
- Using directive issues:
- src/Tools/__Tests/PolicySchemaExporter.Tests/PolicySchemaExporterTests.cs: using directives not sorted
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/__Tests/PolicySchemaExporter.Tests/PolicySchemaExporterTests.cs | NamespaceMissing; UsingNotSorted | Add file-scoped namespace: namespace StellaOps.<Area>;; Sort using directives alphabetically. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,70 @@
# Audit - PolicySimulationSmoke.Tests
## Project
- Path: src/Tools/__Tests/PolicySimulationSmoke.Tests/PolicySimulationSmoke.Tests.csproj
- Module: Tools
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 1
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 2
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- src/Tools/__Tests/PolicySimulationSmoke.Tests/PolicySimulationSmokeEvaluatorTests.cs: missing namespace
- Using directive issues:
- src/Tools/__Tests/PolicySimulationSmoke.Tests/PolicySimulationSmokeEvaluatorTests.cs: using directives not sorted
- Naming issues:
- none
- Async issues:
- src/Tools/__Tests/PolicySimulationSmoke.Tests/PolicySimulationSmokeEvaluatorTests.cs: async method naming
- src/Tools/__Tests/PolicySimulationSmoke.Tests/PolicySimulationSmokeEvaluatorTests.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
- Rename async methods and avoid blocking async calls.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/__Tests/PolicySimulationSmoke.Tests/PolicySimulationSmokeEvaluatorTests.cs | AsyncNaming; ConfigureAwaitMissing; NamespaceMissing; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Add file-scoped namespace: namespace StellaOps.<Area>;; Rename async methods to end with Async.; Sort using directives alphabetically. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,67 @@
# Audit - RustFsMigrator.Tests
## Project
- Path: src/Tools/__Tests/RustFsMigrator.Tests/RustFsMigrator.Tests.csproj
- Module: Tools
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 1
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- none
- Namespace issues:
- src/Tools/__Tests/RustFsMigrator.Tests/RustFsMigratorTests.cs: missing namespace
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Normalize namespaces to file-scoped StellaOps.<Area>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/__Tests/RustFsMigrator.Tests/RustFsMigratorTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,86 @@
# Audit - StellaOps.Tools.GoldenPairs.Tests
## Project
- Path: src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/StellaOps.Tools.GoldenPairs.Tests.csproj
- Module: Tools
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 5
- Files with issues: 5
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 3
- Namespace violations: 0
- Using directive violations: 8
- Naming violations (interfaces/fields/const/async): 6
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/DiffPipelineServiceTests.cs (107 lines)
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/PackageMirrorServiceTests.cs (111 lines)
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/TestData.cs (112 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/DiffPipelineServiceTests.cs: using directives inside namespace
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/DiffPipelineServiceTests.cs: using directives not sorted
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairLoaderTests.cs: using directives inside namespace
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairSchemaTests.cs: using directives inside namespace
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairSchemaTests.cs: using directives not sorted
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/PackageMirrorServiceTests.cs: using directives inside namespace
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/PackageMirrorServiceTests.cs: using directives not sorted
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/TestData.cs: using directives not sorted
- Naming issues:
- none
- Async issues:
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/DiffPipelineServiceTests.cs: async method naming
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/DiffPipelineServiceTests.cs: missing ConfigureAwait(false)
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairLoaderTests.cs: async method naming
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairLoaderTests.cs: missing ConfigureAwait(false)
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/PackageMirrorServiceTests.cs: async method naming
- src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/PackageMirrorServiceTests.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Rename async methods and avoid blocking async calls.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 5
- Files with issues: 5
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/DiffPipelineServiceTests.cs | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairLoaderTests.cs | AsyncNaming; ConfigureAwaitMissing; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async. |
| src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairSchemaTests.cs | UsingInsideNamespace; UsingNotSorted | Move using directives outside namespace.; Sort using directives alphabetically. |
| src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/PackageMirrorServiceTests.cs | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/TestData.cs | FileLength>100; UsingNotSorted | Sort using directives alphabetically.; Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.

View File

@@ -0,0 +1,75 @@
# Audit - StellaOps.Tools.WorkflowGenerator.Tests
## Project
- Path: src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/StellaOps.Tools.WorkflowGenerator.Tests.csproj
- Module: Tools
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 6
- Files with issues: 5
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: FAIL
- Nullable: enable
- TreatWarningsAsErrors: inherited false
- Deterministic: inherited true
- 100-line rule violations: 5
- Namespace violations: 0
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 0
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/AzureDevOpsGeneratorTests.cs (156 lines)
- src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GitHubActionsGeneratorTests.cs (247 lines)
- src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GitLabCiGeneratorTests.cs (156 lines)
- src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GoldenFixtureTests.cs (215 lines)
- src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/WorkflowOptionsTests.cs (103 lines)
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Remove overrides that disable TreatWarningsAsErrors.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 6
- Files with issues: 5
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/AzureDevOpsGeneratorTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GitHubActionsGeneratorTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GitLabCiGeneratorTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GoldenFixtureTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/WorkflowOptionsTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- Missing layers: none
### Manual checks required
- Observability contract tests for WebService/Worker.
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
- Offline execution (tests must run without network access).
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
### Fix Guidance
- None.