4 writes to VersionId
Microsoft.DotNet.Cli.Utils (4)
RuntimeEnvironment.cs (4)
140result.VersionId = line.Substring(11).Trim('"', '\''); 170VersionId = version.Substring("omnios-r".Length, 2) // e.g. 15 177VersionId = version.Substring("joyent_".Length, 4) // e.g. 2020 213distroInfo.VersionId = distroInfo.VersionId?.Substring(0, lastVersionNumberSeparatorIndex);
4 references to VersionId
Microsoft.DotNet.Cli.Utils (4)
RuntimeEnvironment.cs (4)
96return _distroInfo.Value?.VersionId; 203int lastVersionNumberSeparatorIndex = distroInfo.VersionId?.IndexOf('.') ?? -1; 208lastVersionNumberSeparatorIndex = distroInfo.VersionId?.IndexOf('.', lastVersionNumberSeparatorIndex + 1) ?? -1; 213distroInfo.VersionId = distroInfo.VersionId?.Substring(0, lastVersionNumberSeparatorIndex);