From 7f3adb4dcf1f9955924bf1af8b0c9ac02722db24 Mon Sep 17 00:00:00 2001 From: AraHaan Date: Sat, 27 Mar 2021 17:42:18 -0400 Subject: [PATCH] Removed init from GeneratorOptions. --- GeneratorOptions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GeneratorOptions.cs b/GeneratorOptions.cs index 5a0b99a..40ac406 100644 --- a/GeneratorOptions.cs +++ b/GeneratorOptions.cs @@ -9,12 +9,12 @@ public record GeneratorOptions /// Gets the type to use to apply the attribute to embed the git information in that is within the assembly it is being applied to. /// /// The type to use to apply the attribute to embed the git information in that is within the assembly it is being applied to. - public string? AssemblyType { get; set; init; } + public string? AssemblyType { get; set; } /// /// Gets if the type specified in AssemblyType is a generic type, by default this is set to false to indicate that the type is not a generic type. /// /// If the type specified in AssemblyType is a generic type, by default this is set to false to indicate that the type is not a generic type. - public bool IsGeneric { get; set; init; } + public bool IsGeneric { get; set; } } }