9 lines
191 B
C#
9 lines
191 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Needle.Engine
|
|
{
|
|
public interface IBuildDistCallbackReceiver
|
|
{
|
|
Task<bool> BeforeBuildDist(string projectDirectory, string outputDirectory);
|
|
}
|
|
} |