3 implementations of SimpleVersion
Microsoft.DotNet.VersionTools (3)
Dependencies\BuildManifest\OrchestratedBuildDependencyInfo.cs (1)
38public string SimpleVersion => OrchestratedBuildModel.Identity.BuildId;
Dependencies\BuildOutput\BuildDependencyInfo.cs (1)
52public string SimpleVersion => BuildInfo.LatestReleaseVersion;
Dependencies\Submodule\SubmoduleDependencyInfo.cs (1)
97public string SimpleVersion => Commit?.Substring(0, Math.Min(7, Commit.Length)) ?? "latest";
1 reference to SimpleVersion
Microsoft.DotNet.VersionTools (1)
Automation\DependencyUpdateResults.cs (1)
29string updatedDependencyVersions = string.Join(", ", orderedInfos.Select(d => d.SimpleVersion));