audit work, fixed StellaOps.sln warnings/errors, fixed tests, sprints work, new advisories

This commit is contained in:
master
2026-01-07 18:49:59 +02:00
parent 04ec098046
commit 608a7f85c0
866 changed files with 56323 additions and 6231 deletions

View File

@@ -52,10 +52,10 @@
<!-- Disable NuGet audit to prevent build failures when mirrors are unreachable -->
<NuGetAudit>false</NuGetAudit>
<!-- Suppress NuGet warnings -->
<NoWarn>$(NoWarn);NU1608;NU1605;NU1202;NU1107;NU1504;NU1101;CS1591</NoWarn>
<WarningsNotAsErrors>$(WarningsNotAsErrors);NU1608;NU1605;NU1202;NU1107;NU1504;NU1101;NU1900;NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
<RestoreNoWarn>$(RestoreNoWarn);NU1608;NU1605;NU1202;NU1107;NU1504;NU1101</RestoreNoWarn>
<!-- Suppress only XML documentation warnings -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
<WarningsNotAsErrors>$(WarningsNotAsErrors)</WarningsNotAsErrors>
<RestoreNoWarn>$(RestoreNoWarn)</RestoreNoWarn>
<RestoreWarningsAsErrors></RestoreWarningsAsErrors>
<RestoreTreatWarningsAsErrors>false</RestoreTreatWarningsAsErrors>
<RestoreDisableImplicitNuGetFallbackFolder>true</RestoreDisableImplicitNuGetFallbackFolder>
@@ -114,9 +114,8 @@
MODULE-SPECIFIC SUPPRESSIONS
============================================================================ -->
<!-- Concelier module: suppress noisy warnings during test harness runs -->
<!-- Concelier module: no additional suppressions -->
<PropertyGroup Condition="$(MSBuildProjectDirectory.Replace('\','/').Contains('/Concelier/'))">
<NoWarn>$(NoWarn);CS0105;CS8601;CS8602;CS8604;CS0618;RS1032;RS2007;xUnit1041;xUnit1031;xUnit2013;NU1510;NETSDK1023;SYSLIB0057</NoWarn>
</PropertyGroup>
<!-- ============================================================================
@@ -137,13 +136,10 @@
<UseXunitV3>true</UseXunitV3>
</PropertyGroup>
<!-- xUnit analyzer suppressions for ALL test projects -->
<!-- Matches: *.Tests, *UnitTests, __Tests/*, Integration.* test projects -->
<!-- Test projects: no additional suppressions -->
<PropertyGroup Condition="$([System.String]::Copy('$(MSBuildProjectName)').EndsWith('Tests')) or
$([System.String]::Copy('$(MSBuildProjectDirectory)').Contains('__Tests')) or
$([System.String]::Copy('$(MSBuildProjectName)').StartsWith('StellaOps.Integration.'))">
<!-- xUnit1051: CancellationToken advisory - use TestContext.Current.CancellationToken (low priority) -->
<NoWarn>$(NoWarn);xUnit1051</NoWarn>
</PropertyGroup>
<!-- Concelier shared test infrastructure (only when paths exist and not opted out) -->