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