Skip to content

Commit

Permalink
Removed init from GeneratorOptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
AraHaan authored Mar 27, 2021
1 parent 3237619 commit 7f3adb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GeneratorOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
/// </summary>
/// <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>
public string? AssemblyType { get; set; init; }
public string? AssemblyType { get; set; }

/// <summary>
/// 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.
/// </summary>
/// <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>
public bool IsGeneric { get; set; init; }
public bool IsGeneric { get; set; }
}
}

0 comments on commit 7f3adb4

Please sign in to comment.