Implemented interface member:
property
Version
Microsoft.DotNet.NativeWrapper.INetBundleInfo.Version
1 write to Version
Microsoft.DotNet.NativeWrapper (1)
NETEnvironmentInfo.cs (1)
39Version = new ReleaseVersion(version);
10 references to Version
dotnet (9)
Commands\Sdk\Check\RuntimeOutputWriter.cs (9)
24table.AddColumn(CliCommandStrings.VersionColumnHeader, runtime => runtime.Version.ToString()); 27table.PrintRows(_runtimeInfo.OrderBy(sdk => sdk.Version), l => _reporter.WriteLine(l)); 39return string.Format(CliCommandStrings.OutOfSupportMessage, $"{runtime.Version.Major}.{runtime.Version.Minor}"); 43return string.Format(CliCommandStrings.MaintenanceMessage, $"{runtime.Version.Major}.{runtime.Version.Minor}"); 67return newestPatchVesion > bundle.Version; 72var product = _productCollection.FirstOrDefault(product => product.ProductVersion.Equals($"{bundle.Version.Major}.{bundle.Version.Minor}"));
dotnet.Tests (1)
CommandTests\Sdk\Check\GivenDotnetSdkCheck.cs (1)
91.Contain(bundle.Version.ToString());