04624ff5d1
also added a postcompile script to each project to place the outputs in the right folder fixes #237
13 lines
304 B
C#
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";
|
|
}
|
|
}
|