10 references to ProductVersion
PresentationFramework (2)
src\Framework\MS\Internal\AppModel\AssemblyFilter.cs (2)
115
if (fileVersionInfo != null && fileVersionInfo.
ProductVersion
!= null)
117
sb.Append(FILEVERSION_STRING + fileVersionInfo.
ProductVersion
);
System (2)
compmod\microsoft\win32\SystemEvents.cs (1)
1182
productVersion = GetAppFileVersionInfo().
ProductVersion
;
services\monitoring\system\diagnosticts\FileVersionInfo.cs (1)
515
sb.Append("ProductVersion: "); sb.Append(
ProductVersion
); sb.Append(nl);
System.Configuration (1)
System\Configuration\ClientConfigPaths.cs (1)
515
_productVersion = version.
ProductVersion
;
System.Windows.Forms (5)
winforms\Managed\System\WinForms\Application.cs (1)
572
productVersion = GetAppFileVersionInfo().
ProductVersion
;
winforms\Managed\System\WinForms\Control.cs (1)
20241
productVersion = GetFileVersionInfo().
ProductVersion
;
winforms\Managed\System\WinForms\RichTextBox.cs (3)
387
Debug.Assert(versionInfo != null && !string.IsNullOrEmpty(versionInfo.
ProductVersion
), "Couldn't get the version info for the richedit dll");
388
if (versionInfo != null && !string.IsNullOrEmpty(versionInfo.
ProductVersion
)) {
391
if (int.TryParse(versionInfo.
ProductVersion
[0].ToString(), out parsedValue)) {