Examples

Build Script

Within your build script, you will need to add the following (normally near the top of the file):

#addin Cake.Ember

Once that is complete, you can do the following:

EmberBuild(new EmberBuildSettings {
    Environment = "qa"
});

or:

EmberServe(new EmberServeSettings {
    Environment = "qa"
});
GitHub