Files
2025-11-30 08:35:03 +02:00

9 lines
191 B
C#

using System.Threading.Tasks;
namespace Needle.Engine
{
public interface IBuildDistCallbackReceiver
{
Task<bool> BeforeBuildDist(string projectDirectory, string outputDirectory);
}
}