Creating Simple Tasks in .NET with Bullseye
How many times have you created a console application to run specific tasks in .NET? These tasks could be processing a file, making some HTTP call to an external service or even helping in your build process. Ultimately ending up with a collection of different tasks which often have dependencies on each other. I just discovered a project called Bullseye by Adam Ralph which really feels like a simple task runner. But better yet, is just a library you add to your own console application and not its own process itself. Bullseye Bullseye is a .NET package for describing and running targets… Read More »Creating Simple Tasks in .NET with Bullseye