Add XML documentation across gateway, worker, and .NET client

This commit is contained in:
Joseph Doherty
2026-04-30 11:49:58 -04:00
parent 4731ab535c
commit eed1e88a37
269 changed files with 4555 additions and 13 deletions
@@ -8,6 +8,7 @@ namespace MxGateway.Worker.Tests.ProjectStructure;
public sealed class WorkerProjectReferenceTests
{
/// <summary>Verifies that the worker project targets .NET Framework 4.8 with x86 platform.</summary>
[Fact]
public void WorkerProject_TargetsNet48AndX86()
{
@@ -18,6 +19,7 @@ public sealed class WorkerProjectReferenceTests
Assert.Equal("true", ElementValue(project, "Prefer32Bit"));
}
/// <summary>Verifies that the worker test project targets .NET Framework 4.8 with x86 platform.</summary>
[Fact]
public void WorkerTestProject_TargetsNet48AndX86()
{
@@ -27,6 +29,7 @@ public sealed class WorkerProjectReferenceTests
Assert.Equal("x86", ElementValue(project, "PlatformTarget"));
}
/// <summary>Verifies that MXAccess interop reference exists only in the worker project.</summary>
[Fact]
public void MxAccessInteropReference_ExistsOnlyInWorkerProject()
{