8 references to ProductVersion
Aspire.RuntimeIdentifier.Tool (1)
Program.cs (1)
17RootCommand rootCommand = new("Aspire.RuntimeIdentifier.Tool v" + FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).ProductVersion)
Microsoft.CodeAnalysis.Workspaces (1)
Log\RoslynEventSource.cs (1)
114output.AppendLine(fvi.ProductVersion);
System.Diagnostics.FileVersionInfo (1)
System\Diagnostics\FileVersionInfo.cs (1)
298sb.Append("ProductVersion: ").AppendLine(ProductVersion);
System.Windows.Forms (5)
System\Windows\Forms\Application.cs (1)
525s_productVersion = GetAppFileVersionInfo().ProductVersion;
System\Windows\Forms\Control.ControlVersionInfo.cs (1)
137_productVersion = GetFileVersionInfo().ProductVersion;
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (3)
274Debug.Assert(versionInfo is not null && !string.IsNullOrEmpty(versionInfo.ProductVersion), "Couldn't get the version info for the richedit dll"); 275if (versionInfo is not null && !string.IsNullOrEmpty(versionInfo.ProductVersion)) 278if (int.TryParse(versionInfo.ProductVersion.AsSpan(0, 1), out int parsedValue))