Skip to content

Commit 33fb45c

Browse files
committed
refactor(GitVersion.Configuration): do not assign value to AssemblyInformationalFormat
The tests expect this to be null
1 parent 950a03b commit 33fb45c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitVersion.Configuration/GitVersionConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ internal sealed record GitVersionConfiguration : BranchConfiguration, IGitVersio
3535
[JsonPropertyName("assembly-informational-format")]
3636
[JsonPropertyDescription($"Specifies the format of AssemblyInformationalVersion. Defaults to '{DefaultAssemblyInformationalFormat}'.")]
3737
[JsonPropertyDefault(DefaultAssemblyInformationalFormat)]
38-
public string? AssemblyInformationalFormat { get; internal set; } = DefaultAssemblyInformationalFormat;
38+
public string? AssemblyInformationalFormat { get; internal set; }
3939

4040
[JsonPropertyName("assembly-versioning-format")]
4141
[JsonPropertyDescription("Specifies the format of AssemblyVersion and overwrites the value of assembly-versioning-scheme.")]

0 commit comments

Comments
 (0)