diff --git a/documentation/wiki/Building and Distributing Akka.NET.md b/documentation/wiki/Building and Distributing Akka.NET.md index 17935bdfbad..b55194075a0 100644 --- a/documentation/wiki/Building and Distributing Akka.NET.md +++ b/documentation/wiki/Building and Distributing Akka.NET.md @@ -67,41 +67,3 @@ or to run also unit tests before publishing: ```` build all nugetkey= ```` - -## Building using Rake/Albacore - -Akka.Net can also use [Albacore (Rake)](http://albacorebuild.net/) for builds. The commands are simple, but you will need to install Ruby on your system in order to execute any Rake commands. - -We recommend using the [Rails Installer for Windows](http://railsinstaller.org/). - -### Running Build Tasks -To run a basic build a Pigeon, open a command prompt to the root directory of your Pigeon repository and type the following command: - -```` -C:\akka.net> rake -```` - -This will automatically invoke a simple MSBuild of your local copy of Pigeon. - -### Version Management -Akka.NET's Rake file includes the ability to increment the version number for new releases. - -Akka.NET follows the standard .NET version number convention: `{Major Version}.{Minor Version}.{Revision}.{Build}`. - -You can modify the build number using the following commands: - -* `rake bump_build_number` - bumps the **build** number. -* `rake bump_revision_number` - bumps the **revision** number. -* `rake bump_minor_version_number` - bumps the **minor version** number. -* `rake bump_major_version_number` - bumps the **major version** number. - -### Creating NuGet Distributions -To create a NuGet distribution, you can run the following command: - -```` -C:\> rake nuget -```` - -This will create a new instance of all Akka.NET NuGet packages in the `/build/` folder, using Release configuration settings. - -If you need to create a Debug configuration NuGet package, then you can use the `nuget_debug` command instead. \ No newline at end of file