Skip to content

Instantly share code, notes, and snippets.

View balarvs2002's full-sized avatar
🎯
Focusing

balarvs2002

🎯
Focusing
  • SocGen
  • bangalore
View GitHub Profile
@balarvs2002
balarvs2002 / gist:ace13ddfcb699c1fd10d393d2bcc64d1
Created January 6, 2017 05:21 — forked from wernight/gist:4978408
Custom NAnt task to execute multiple <exec> tasks in parallel and wait until they all completed.
using System;
using System.Threading.Tasks;
using NAnt.Core;
using NAnt.Core.Attributes;
using NAnt.Core.Tasks;
namespace MyTasks
{
[TaskName("parallelexec")]
public class ParallelExecTask : TaskContainer