Fix build and code structure improvements. New but essential UI functionality. CI improvements. Documentation improvements. AI module improvements.

This commit is contained in:
StellaOps Bot
2025-12-26 21:54:17 +02:00
parent 335ff7da16
commit c2b9cd8d1f
3717 changed files with 264714 additions and 48202 deletions

View File

@@ -463,8 +463,8 @@ public sealed class MetricLabelAnalyzerTests
var test = """
using System;
using System.Collections.Generic;
using StellaOps.TestKit;
using StellaOps.TestKit;
namespace TestNamespace
{
public class GoldenSignalMetrics

View File

@@ -6,21 +6,17 @@
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.XUnit" Version="1.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.XUnit" />
<!-- Note: Analyzer tests have xUnit v2/v3 compatibility issues - tests may fail -->
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\StellaOps.Telemetry.Analyzers.csproj" />
<ProjectReference Include="../../../__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj" />
</ItemGroup>
</Project>
</Project>

View File

@@ -0,0 +1,11 @@
namespace StellaOps.Telemetry.Analyzers.Tests;
/// <summary>
/// Test category constants for organizing tests
/// </summary>
public static class TestCategories
{
public const string Unit = "Unit";
public const string Integration = "Integration";
public const string Acceptance = "Acceptance";
}

View File

@@ -12,8 +12,14 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.11.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.11.0" PrivateAssets="all" />
<!-- Exclude test project from this build -->
<Compile Remove="StellaOps.Telemetry.Analyzers.Tests\**\*" />
<None Remove="StellaOps.Telemetry.Analyzers.Tests\**\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>