You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AssemblyVersion=assemblyVersionis not null||precisionis not null?newVersionOptions.AssemblyVersionOptions(assemblyVersionis notnull?newVersion(assemblyVersion):null,precision):null,
Copy file name to clipboardexpand all lines: src/NerdBank.GitVersioning/FilterPathJsonConverter.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ public override object ReadJson(JsonReader reader, Type objectType, object exist
22
22
thrownewNotSupportedException();
23
23
}
24
24
25
-
if(this.repoRelativeBaseDirectory==null)
25
+
if(this.repoRelativeBaseDirectoryisnull)
26
26
{
27
27
thrownewArgumentNullException(nameof(this.repoRelativeBaseDirectory),$"Base directory must not be null to be able to deserialize filter paths. Ensure that one was passed to {nameof(VersionOptions.GetJsonSettings)}, and that the version.json file is being written to a Git repository.");
28
28
}
@@ -37,7 +37,7 @@ public override void WriteJson(JsonWriter writer, object value, JsonSerializer s
37
37
thrownewNotSupportedException();
38
38
}
39
39
40
-
if(this.repoRelativeBaseDirectory==null)
40
+
if(this.repoRelativeBaseDirectoryisnull)
41
41
{
42
42
thrownewArgumentNullException(nameof(this.repoRelativeBaseDirectory),$"Base directory must not be null to be able to serialize filter paths. Ensure that one was passed to {nameof(VersionOptions.GetJsonSettings)}, and that the version.json file is being written to a Git repository.");
// Don't use the ?? coalescing operator here because the position property getters themselves can return null, which should NOT be overridden with our default.
529
529
// The default value is only appropriate if versionOptions itself is null.
// The working copy has changed the major.minor version.
100
100
// So by definition the version height is 0, since no commit represents it yet.
@@ -153,8 +153,8 @@ private Version GetIdAsVersionHelper(VersionOptions? versionOptions, int version
153
153
154
154
// Don't use the ?? coalescing operator here because the position property getters themselves can return null, which should NOT be overridden with our default.
155
155
// The default value is only appropriate if versionOptions itself is null.
0 commit comments