2016-07-15 08:31:50 -07:00
|
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
|
|
|
|
using Microsoft.Build.Framework;
|
2016-06-27 21:09:30 -05:00
|
|
|
|
using Microsoft.Build.Utilities;
|
2016-08-08 15:35:25 -07:00
|
|
|
|
using Microsoft.DotNet.PlatformAbstractions;
|
2016-06-27 21:09:30 -05:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
|
|
|
{
|
|
|
|
|
public class GetCurrentRuntimeInformation : Task
|
|
|
|
|
{
|
2016-10-08 11:45:19 -07:00
|
|
|
|
public string OverrideRid { get; set; }
|
|
|
|
|
|
2016-06-27 21:09:30 -05:00
|
|
|
|
[Output]
|
|
|
|
|
public string Rid { get; set; }
|
|
|
|
|
|
|
|
|
|
[Output]
|
|
|
|
|
public string Architecture { get; set; }
|
|
|
|
|
|
|
|
|
|
[Output]
|
|
|
|
|
public string OSName { get; set; }
|
|
|
|
|
|
|
|
|
|
public override bool Execute()
|
|
|
|
|
{
|
2016-10-08 11:45:19 -07:00
|
|
|
|
Rid = string.IsNullOrEmpty(OverrideRid) ? RuntimeEnvironment.GetRuntimeIdentifier() : OverrideRid;
|
2016-06-27 21:09:30 -05:00
|
|
|
|
Architecture = RuntimeEnvironment.RuntimeArchitecture;
|
|
|
|
|
OSName = Monikers.GetOSShortName();
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|