5ebc6a1ceb
* Eliminate CleanPublishOutput * Decompose Crossgen Task * WiP * TarGzFileExtractToDirectory * FixModeFlags --> CHMod Also various eliminations of dead code * Tasks cleanup Move all tasks to .tasks file. There is little value in keepint them in each source file as they are already being used assumptively by files that happen to get executed later. Also eliminating uses of <Exec> for DotNet invocations * Move to BuildTools implementation of TarGzCreateFromDirectory * Eliminate Command.cs and helpers * Remove dead code * Revert TarGz from BuildTools Latest build tools package has not picked up the task, though it is checked in. * Disable ChMod on Windows * Windows bug fix * PR Feedback * Finish changing Chmod caps
43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using Microsoft.DotNet.Cli.Build.Framework;
|
|
using Microsoft.DotNet.InternalAbstractions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
{
|
|
public class Monikers
|
|
{
|
|
public static string GetBadgeMoniker()
|
|
{
|
|
switch (RuntimeEnvironment.GetRuntimeIdentifier())
|
|
{
|
|
case "ubuntu.16.04-x64":
|
|
return "Ubuntu_16_04_x64";
|
|
case "fedora.23-x64":
|
|
return "Fedora_23_x64";
|
|
case "opensuse.13.2-x64":
|
|
return "openSUSE_13_2_x64";
|
|
}
|
|
|
|
return $"{CurrentPlatform.Current}_{CurrentArchitecture.Current}";
|
|
}
|
|
|
|
public static string GetOSShortName()
|
|
{
|
|
string osname = "";
|
|
switch (CurrentPlatform.Current)
|
|
{
|
|
case BuildPlatform.Windows:
|
|
osname = "win";
|
|
break;
|
|
default:
|
|
osname = CurrentPlatform.Current.ToString().ToLower();
|
|
break;
|
|
}
|
|
|
|
return osname;
|
|
}
|
|
}
|
|
}
|