From e831240ecabd2350a44573f14f3242aca6ab39e7 Mon Sep 17 00:00:00 2001 From: "Kraemer, Benjamin" Date: Tue, 6 Aug 2024 11:17:44 +0200 Subject: [PATCH] Add missing fields that make usage fail --- src/DotnetRelease/PatchReleaseOverviewRecords.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/DotnetRelease/PatchReleaseOverviewRecords.cs b/src/DotnetRelease/PatchReleaseOverviewRecords.cs index 8c91d9f1..d6e0c078 100644 --- a/src/DotnetRelease/PatchReleaseOverviewRecords.cs +++ b/src/DotnetRelease/PatchReleaseOverviewRecords.cs @@ -78,6 +78,10 @@ public record RuntimeComponent( JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] string VSVersion, + [property: Description("The version of Visual Studio on MacOS that includes this component version."), + JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + string VSMacVersion, + [property: Description("The files that are available for this component.")] IList Files, @@ -100,9 +104,15 @@ public record SdkComponent( [property: Description("The version of Visual Studio that includes this component version.")] string VSVersion, + [property: Description("The version of Visual Studio on MacOS that includes this component version.")] + string VSMacVersion, + [property: Description("The minimum version of Visual Studio that supports this component version.")] string VSSupport, + [property: Description("The minimum version of Visual Studio on MacOS that supports this component version.")] + string VSMacSupport, + [property: Description("The version of C# included in the component."), JsonPropertyName("csharp-version")] string CSharpVersion,