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