10 references to FileVersion
Microsoft.Build.Framework (1)
BackEnd\Handshake.cs (1)
124var fileVersion = new Version(FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion!);
Microsoft.CodeAnalysis.CSharp.Features (1)
DecompiledSource\CSharpDecompiledSourceService.cs (1)
88SyntaxFactory.Comment($"// Decompiled with ICSharpCode.Decompiler {decompilerVersion.FileVersion}"),
Microsoft.CodeAnalysis.Workspaces (1)
SourceGeneratorTelemetry\SourceGeneratorTelemetryCollectorWorkspaceService.cs (1)
29FileVersion = IOUtilities.PerformIO(() => FileVersionInfo.GetVersionInfo(Identity.AssemblyPath).FileVersion, defaultValue: "(reading version threw exception)")!;
Microsoft.ML.OnnxConverter (1)
SaveOnnxCommand.cs (1)
327var ctx = new OnnxContextImpl(Host, _name, ProducerName, versionInfo.FileVersion,
Microsoft.NET.Build.Tasks (1)
GetAssemblyAttributes.cs (1)
34["System.Reflection.AssemblyFileVersionAttribute"] = fileVersionInfo.FileVersion,
Microsoft.TestPlatform.CoreUtilities (1)
Helpers\FileHelper.cs (1)
69=> Version.TryParse(FileVersionInfo.GetVersionInfo(path)?.FileVersion, out var currentVersion) ?
PresentationBuildTasks (1)
MS\Internal\Tasks\TaskHelper.cs (1)
50string avalonFileVersion = acFileVersionInfo.FileVersion;
System.Data.OleDb (1)
System\Data\Common\AdapterUtil.cs (1)
1146version = versionInfo.FileVersion;
System.Diagnostics.FileVersionInfo (2)
System\Diagnostics\FileVersionInfo.cs (2)
312/// <returns>A list of the following properties in this class and their values: <see cref="FileName" />, <see cref="InternalName" />, <see cref="OriginalFilename" />, <see cref="FileVersion" />, <see cref="FileDescription" />, <see cref="ProductName" />, <see cref="ProductVersion" />, <see cref="IsDebug" />, <see cref="IsPatched" />, <see cref="IsPreRelease" />, <see cref="IsPrivateBuild" />, <see cref="IsSpecialBuild" />, <see cref="Language" />. If the file did not contain version information, <see cref="FileName" /> will still contain the name of the file requested, Boolean values will be <see langword="false" />, and the other version-related values will be empty.</returns> 322sb.Append("FileVersion: ").AppendLine(FileVersion);