From 9265b78628ef1fba106c5504e80d8ce7cc1ef8ec Mon Sep 17 00:00:00 2001 From: "Brett V. Forsgren" Date: Wed, 11 Dec 2024 11:19:06 -0700 Subject: [PATCH] TEMP: introduce formatting error to verify build failure --- .../helpers/lib/NuGetUpdater/NuGetUpdater.Core/NativeResult.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuget/helpers/lib/NuGetUpdater/NuGetUpdater.Core/NativeResult.cs b/nuget/helpers/lib/NuGetUpdater/NuGetUpdater.Core/NativeResult.cs index 1ebc767ca0..029fb6c8f4 100644 --- a/nuget/helpers/lib/NuGetUpdater/NuGetUpdater.Core/NativeResult.cs +++ b/nuget/helpers/lib/NuGetUpdater/NuGetUpdater.Core/NativeResult.cs @@ -3,6 +3,6 @@ namespace NuGetUpdater.Core; public record NativeResult { // TODO: nullable not required, `ErrorType.None` is the default anyway - public ErrorType? ErrorType { get; init; } + public ErrorType? ErrorType { get; init; } public object? ErrorDetails { get; init; } }