Skip to content

Commit 7f3adb4

Browse files
authored
Removed init from GeneratorOptions.
1 parent 3237619 commit 7f3adb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GeneratorOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ public record GeneratorOptions
99
/// 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.
1010
/// </summary>
1111
/// <value>The type to use to apply the attribute to embed the git information in that is within the assembly it is being applied to.</value>
12-
public string? AssemblyType { get; set; init; }
12+
public string? AssemblyType { get; set; }
1313

1414
/// <summary>
1515
/// 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.
1616
/// </summary>
1717
/// <value>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.</value>
18-
public bool IsGeneric { get; set; init; }
18+
public bool IsGeneric { get; set; }
1919
}
2020
}

0 commit comments

Comments
 (0)