GithubHelp home page GithubHelp logo

bau's Introduction

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.

bau's People

Contributors

adamralph avatar hyrmn avatar twiernik avatar pxc avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.