Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public partial class FileVersionInfoTest : FileCleanupTestBase
{
private const string TestAssemblyFileName = "System.Diagnostics.FileVersionInfo.TestAssembly.dll";
// On Unix the internal name's extension is .exe if OutputType is exe even though the TargetExt is .dll.
private readonly string OriginalTestAssemblyInternalName = PlatformDetection.IsWindows ?
private readonly string OriginalTestAssemblyInternalName = OperatingSystem.IsWindows() ?
"System.Diagnostics.FileVersionInfo.TestAssembly.dll" :
"System.Diagnostics.FileVersionInfo.TestAssembly.exe";
private const string TestCsFileName = "Assembly1.cs";
Expand Down
Loading