4 writes to VersionId
Microsoft.DotNet.Cli.Utils (4)
RuntimeEnvironment.cs (4)
136result.VersionId = line.Substring(11).Trim('"', '\''); 166VersionId = version.Substring("omnios-r".Length, 2) // e.g. 15 173VersionId = version.Substring("joyent_".Length, 4) // e.g. 2020 209distroInfo.VersionId = distroInfo.VersionId?.Substring(0, lastVersionNumberSeparatorIndex);
4 references to VersionId
Microsoft.DotNet.Cli.Utils (4)
RuntimeEnvironment.cs (4)
92return _distroInfo.Value?.VersionId; 199int lastVersionNumberSeparatorIndex = distroInfo.VersionId?.IndexOf('.') ?? -1; 204lastVersionNumberSeparatorIndex = distroInfo.VersionId?.IndexOf('.', lastVersionNumberSeparatorIndex + 1) ?? -1; 209distroInfo.VersionId = distroInfo.VersionId?.Substring(0, lastVersionNumberSeparatorIndex);