dotnet-installer/src/Microsoft.DotNet.Cli.Utils/ScriptNames.cs
Andrew Stanton-Nurse 04624ff5d1 add script executor
also added a postcompile script to each project to place the outputs in the right folder

fixes #237
2015-11-18 14:28:07 -08:00

13 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Microsoft.DotNet.Cli.Utils
{
internal static class ScriptNames
{
public const string PreCompile = "precompile";
public const string PostCompile = "postcompile";
}
}