9 references to AppendInt
NuGet.Versioning (9)
src\nuget-client\build\Shared\SharedExtensions.cs (1)
77/// Note that this uses the current culture to do the conversion while <see cref="AppendInt(StringBuilder, int)"/> does
VersionFormatter.cs (8)
90builder.AppendInt(version.Major); 93builder.AppendInt(version.Minor); 96builder.AppendInt(version.Patch); 99builder.AppendInt(version is NuGetVersion nuGetVersion && nuGetVersion.IsLegacyVersion ? nuGetVersion.Version.Revision : 0); 139builder.AppendInt(version.Major); 141builder.AppendInt(version.Minor); 143builder.AppendInt(version.Patch); 148builder.AppendInt(nuGetVersion.Version.Revision);