2015-10-06 17:46:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
2015-10-16 22:30:28 +00:00
|
|
|
|
using System.Runtime.InteropServices;
|
2015-10-06 17:46:43 +00:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Utils
|
|
|
|
|
{
|
|
|
|
|
internal static class Constants
|
|
|
|
|
{
|
|
|
|
|
// TODO: On Unix, exe suffix is empty string...
|
2015-10-16 22:30:28 +00:00
|
|
|
|
public static readonly string ExeSuffix = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ".exe" : "";
|
2015-10-06 17:46:43 +00:00
|
|
|
|
public static readonly string CoreConsoleName = "coreconsole" + ExeSuffix;
|
2015-10-16 22:30:28 +00:00
|
|
|
|
public static readonly string CoreRunName = "corerun" + ExeSuffix;
|
2015-10-13 21:31:29 +00:00
|
|
|
|
public static readonly string DefaultConfiguration = "Debug";
|
2015-10-15 19:56:07 +00:00
|
|
|
|
public static readonly string BinDirectoryName = "bin";
|
2015-10-19 04:07:48 +00:00
|
|
|
|
public static readonly string ObjDirectoryName = "obj";
|
2015-10-16 18:11:07 +00:00
|
|
|
|
|
2015-10-21 22:21:14 +00:00
|
|
|
|
public static readonly string ClrPathEnvironmentVariable = "DOTNET_CLR_PATH";
|
2015-10-06 17:46:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|