Switching to a new API to detect platform.
This commit is contained in:
parent
d1cea1bef2
commit
bd2e66fca6
1 changed files with 2 additions and 2 deletions
|
@ -4,8 +4,8 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
using Microsoft.DotNet.Cli;
|
using Microsoft.DotNet.Cli;
|
||||||
using Microsoft.DotNet.Cli.Utils;
|
|
||||||
|
|
||||||
namespace Microsoft.DotNet.Tools.MSBuild
|
namespace Microsoft.DotNet.Tools.MSBuild
|
||||||
{
|
{
|
||||||
|
@ -45,7 +45,7 @@ namespace Microsoft.DotNet.Tools.MSBuild
|
||||||
|
|
||||||
private static string GetRunCscPath()
|
private static string GetRunCscPath()
|
||||||
{
|
{
|
||||||
var scriptExtension = RuntimeEnvironment.OperatingSystemPlatform == Platform.Windows ? ".cmd" : ".sh";
|
var scriptExtension = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ".cmd" : ".sh";
|
||||||
return Path.Combine(AppContext.BaseDirectory, $"RunCsc{scriptExtension}");
|
return Path.Combine(AppContext.BaseDirectory, $"RunCsc{scriptExtension}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue