A Bau task plugin for running xUnit.net tests. Require<Bau>().Xunit().Do(xunit => xunit.UseExe("xunit.console.clr4.exe").RunAssemblies("Tests.dll")).Run();


Keywords
xunit, xbehave, test, tests, tdd, bdd, C#, build, script, task, target, runner, rake, grunt, gulp, fake, nake, jake, psake, sake
License
MIT
Install
Install-Package Bau.Xunit -Version 0.1.0-beta10

Documentation

This project is no longer maintained. If you would like to take it over, please raise an issue or contact the owners of the NuGet package via the NuGet gallery.

Bau

The C# task runner.

Build Status Build Status Gitter chat NuGet Status

Bau is a community driven, cross platform, pluggable task runner built on the scriptcs + NuGet ecosystem.

The core Bau library is a script pack providing task definition, dependencies between tasks and task running.

Extensions are provided by plugins, taking advantage of Bau's modular, pluggable architecture.

Task definition
// baufile.csx
Require<Bau>().Do(() => Console.WriteLine("Hello world!")).Run();
Dependencies between tasks
// baufile.csx
string message;

Require<Bau>()
	.DependsOn("world")
	.Do(() => Console.WriteLine(message))
.Task("world")
	.DependsOn("hello")
	.Do(() => message += " world!")
.Task("hello")
	.Do(() => message = "Hello")
.Run();

Tasks can be defined in any order, can depend on any number of other tasks DependsOn("foo", "bar"), can be referenced multiple times with multiple calls to Task("baz") and can have multiple actions assigned to them with multiple calls to Do().

Running tasks
scriptcs baufile.csx

Powered by scriptcs and Roslyn.

Sponsors

Our build server is kindly provided by CodeBetter and JetBrains.

YouTrack and TeamCity

Where can I get it

Bau is available as a NuGet package. For update notifications, follow @baubuild.

To build manually, clone or fork this repository and see 'How to build'.

Can I help to improve it and/or fix bugs?

Absolutely! Please feel free to raise issues, fork the source code, send pull requests, etc.

No pull request is too small. Even whitespace fixes are appreciated. Before you contribute anything make sure you read CONTRIBUTING.md.

Come and chat to fellow users and developers at the Bau JabbR chat room or Gitter chat.

What do the version numbers mean?

Bau uses Semantic Versioning. The current release is 0.x which means 'initial development'. Version 1.0 will follow the release of scriptcs version 1.0.


Bau logo designed by Vanja Pakaski.