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: ..
- 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,108 @@
# Audit - StellaOps.Tools.GoldenPairs
## Project
- Path: ../src/Tools/GoldenPairs/StellaOps.Tools.GoldenPairs.csproj
- Module: ..
- 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,83 @@
# Audit - LanguageAnalyzerSmoke
## Project
- Path: ../src/Tools/LanguageAnalyzerSmoke/LanguageAnalyzerSmoke.csproj
- Module: ..
- 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,83 @@
# Audit - NotifySmokeCheck
## Project
- Path: ../src/Tools/NotifySmokeCheck/NotifySmokeCheck.csproj
- Module: ..
- 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,72 @@
# Audit - PolicyDslValidator
## Project
- Path: ../src/Tools/PolicyDslValidator/PolicyDslValidator.csproj
- Module: ..
- 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,72 @@
# Audit - PolicySchemaExporter
## Project
- Path: ../src/Tools/PolicySchemaExporter/PolicySchemaExporter.csproj
- Module: ..
- 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,72 @@
# Audit - PolicySimulationSmoke
## Project
- Path: ../src/Tools/PolicySimulationSmoke/PolicySimulationSmoke.csproj
- Module: ..
- 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,82 @@
# Audit - RustFsMigrator
## Project
- Path: ../src/Tools/RustFsMigrator/RustFsMigrator.csproj
- Module: ..
- 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,100 @@
# Audit - StellaOps.Tools.WorkflowGenerator
## Project
- Path: ../src/Tools/StellaOps.Tools.WorkflowGenerator/StellaOps.Tools.WorkflowGenerator.csproj
- Module: ..
- 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,81 @@
# Audit - FixtureUpdater.Tests
## Project
- Path: ../src/Tools/__Tests/FixtureUpdater.Tests/FixtureUpdater.Tests.csproj
- Module: ..
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 7
- 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/FixtureUpdater.Tests/FixtureUpdaterRunnerTests.cs (143 lines)
- Namespace issues:
- ../src/Tools/__Tests/FixtureUpdater.Tests/FixtureUpdaterRunnerTests.cs: missing namespace
- ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/FixtureUpdater.Tests.AssemblyInfo.cs: missing namespace
- ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/FixtureUpdater.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Release/net10.0/FixtureUpdater.Tests.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>.
- Remove overrides that disable TreatWarningsAsErrors.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- 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 | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/FixtureUpdater.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/FixtureUpdater.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/FixtureUpdater.Tests/obj/Release/net10.0/FixtureUpdater.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - LanguageAnalyzerSmoke.Tests
## Project
- Path: ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/LanguageAnalyzerSmoke.Tests.csproj
- Module: ..
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 7
- 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/LanguageAnalyzerSmoke.Tests/LanguageAnalyzerSmokeRunnerTests.cs: missing namespace
- ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/LanguageAnalyzerSmoke.Tests.AssemblyInfo.cs: missing namespace
- ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/LanguageAnalyzerSmoke.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Release/net10.0/LanguageAnalyzerSmoke.Tests.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>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- 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 | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/LanguageAnalyzerSmoke.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/LanguageAnalyzerSmoke.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/LanguageAnalyzerSmoke.Tests/obj/Release/net10.0/LanguageAnalyzerSmoke.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - NotifySmokeCheck.Tests
## Project
- Path: ../src/Tools/__Tests/NotifySmokeCheck.Tests/NotifySmokeCheck.Tests.csproj
- Module: ..
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 7
- 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/NotifySmokeCheck.Tests/NotifySmokeCheckRunnerTests.cs: missing namespace
- ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/NotifySmokeCheck.Tests.AssemblyInfo.cs: missing namespace
- ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/NotifySmokeCheck.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Release/net10.0/NotifySmokeCheck.Tests.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>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- 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 | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/NotifySmokeCheck.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/NotifySmokeCheck.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/NotifySmokeCheck.Tests/obj/Release/net10.0/NotifySmokeCheck.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - PolicyDslValidator.Tests
## Project
- Path: ../src/Tools/__Tests/PolicyDslValidator.Tests/PolicyDslValidator.Tests.csproj
- Module: ..
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 7
- 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/PolicyDslValidator.Tests/PolicyDslValidatorAppTests.cs: missing namespace
- ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/PolicyDslValidator.Tests.AssemblyInfo.cs: missing namespace
- ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/PolicyDslValidator.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Release/net10.0/PolicyDslValidator.Tests.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>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- 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 | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/PolicyDslValidator.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/PolicyDslValidator.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicyDslValidator.Tests/obj/Release/net10.0/PolicyDslValidator.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - PolicySchemaExporter.Tests
## Project
- Path: ../src/Tools/__Tests/PolicySchemaExporter.Tests/PolicySchemaExporter.Tests.csproj
- Module: ..
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 7
- 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/PolicySchemaExporter.Tests/PolicySchemaExporterTests.cs: missing namespace
- ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/PolicySchemaExporter.Tests.AssemblyInfo.cs: missing namespace
- ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/PolicySchemaExporter.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Release/net10.0/PolicySchemaExporter.Tests.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>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- 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 | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/PolicySchemaExporter.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/PolicySchemaExporter.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySchemaExporter.Tests/obj/Release/net10.0/PolicySchemaExporter.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - PolicySimulationSmoke.Tests
## Project
- Path: ../src/Tools/__Tests/PolicySimulationSmoke.Tests/PolicySimulationSmoke.Tests.csproj
- Module: ..
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 7
- 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/PolicySimulationSmoke.Tests/PolicySimulationSmokeEvaluatorTests.cs: missing namespace
- ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/PolicySimulationSmoke.Tests.AssemblyInfo.cs: missing namespace
- ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/PolicySimulationSmoke.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Release/net10.0/PolicySimulationSmoke.Tests.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>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- 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 | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/PolicySimulationSmoke.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/PolicySimulationSmoke.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/PolicySimulationSmoke.Tests/obj/Release/net10.0/PolicySimulationSmoke.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - RustFsMigrator.Tests
## Project
- Path: ../src/Tools/__Tests/RustFsMigrator.Tests/RustFsMigrator.Tests.csproj
- Module: ..
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 7
- 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
- ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/RustFsMigrator.Tests.AssemblyInfo.cs: missing namespace
- ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/RustFsMigrator.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Release/net10.0/RustFsMigrator.Tests.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>.
- Remove overrides that disable TreatWarningsAsErrors.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- 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>; |
| ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/RustFsMigrator.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/RustFsMigrator.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/RustFsMigrator.Tests/obj/Release/net10.0/RustFsMigrator.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,90 @@
# Audit - StellaOps.Tools.GoldenPairs.Tests
## Project
- Path: ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/StellaOps.Tools.GoldenPairs.Tests.csproj
- Module: ..
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 11
- Files with issues: 11
- 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: 11
- 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.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:
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/DiffPipelineServiceTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairLoaderTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairSchemaTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/PackageMirrorServiceTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/TestData.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/StellaOps.Tools.GoldenPairs.Tests.AssemblyInfo.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/StellaOps.Tools.GoldenPairs.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Release/net10.0/StellaOps.Tools.GoldenPairs.Tests.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: 11
- Files with issues: 11
- 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 | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairLoaderTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/GoldenPairSchemaTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/PackageMirrorServiceTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/TestData.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/StellaOps.Tools.GoldenPairs.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/StellaOps.Tools.GoldenPairs.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.GoldenPairs.Tests/obj/Release/net10.0/StellaOps.Tools.GoldenPairs.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,95 @@
# Audit - StellaOps.Tools.WorkflowGenerator.Tests
## Project
- Path: ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/StellaOps.Tools.WorkflowGenerator.Tests.csproj
- Module: ..
- Kind: Tool
- Audit date (UTC): 2026-01-30
- Files scanned: 12
- Files with issues: 12
- 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: 12
- 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:
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/AzureDevOpsGeneratorTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GitHubActionsGeneratorTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GitLabCiGeneratorTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GoldenFixtureTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/WorkflowGeneratorFactoryTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/WorkflowOptionsTests.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/StellaOps.Tools.WorkflowGenerator.Tests.AssemblyInfo.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/StellaOps.Tools.WorkflowGenerator.Tests.GlobalUsings.g.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs: missing namespace
- ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Release/net10.0/StellaOps.Tools.WorkflowGenerator.Tests.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>.
- Remove overrides that disable TreatWarningsAsErrors.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 12
- Files with issues: 12
- 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; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GitHubActionsGeneratorTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GitLabCiGeneratorTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/GoldenFixtureTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/WorkflowGeneratorFactoryTests.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/WorkflowOptionsTests.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/StellaOps.Tools.WorkflowGenerator.Tests.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/StellaOps.Tools.WorkflowGenerator.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Debug/net10.0/XunitAutoGeneratedEntryPoint.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| ../src/Tools/__Tests/StellaOps.Tools.WorkflowGenerator.Tests/obj/Release/net10.0/StellaOps.Tools.WorkflowGenerator.Tests.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.