This repo contains the source code for cross-platform .NET Core command line toolchain. It contains the implementation of each command, the native packages for various supported platforms as well as documentation.
Check out our http://dotnet.github.io/getting-started/ page.
You can consult the known issues page to find out the current issues and to see the workarounds.
If you don't find your issue, please file one! However, given that this is a very high-frequency repo, we've setup some basic guidelines to help you. Please consult those first.
Ubuntu 14.04 | Windows x64 | Windows x86 | Mac OS X | CentOS 7.1 | RHEL 7.2 |
---|---|---|---|---|---|
Version | .NET Core Installers | .NET Core Cli Installers | .NET Core Binaries | .NET Core Cli Binaries | |
---|---|---|---|---|---|
Windows x64 | Download | Download | Download | Download | |
Windows x86 | Download | Download | Download | Download | |
Ubuntu 14.04 | See Below | See Below | Download | Download | |
Mac OS X | Download | Download | Download | Download | |
CentOS 7.1 | N/A | N/A | Download | Download | |
RHEL 7.2 | N/A | N/A | Download | Download |
Our Debian packages are put together slightly differently than the other OS specific installers. Instead of combining everything, we have three separate component packages that depend on each other. If you're installing these directly from the .deb files (via dpkg or similar), then you'll need to install them in the order presented below.
| |Version |Installers| |---------|:------:|:------:|:------:| |Shared Host||Download|Download| |Shared Framework||Download|Download| |Sdk||Download|Download|
This toolchain is independent from the DNX-based .NET Core + ASP.NET Core 1.0 RC1 bits. If you are looking for .NET Core + ASP.NET Core 1.0 RC1 bits, you can find instructions on the http://get.asp.net/.
You can also use our Docker base images found on https://hub.docker.com/r/microsoft/dotnet to set up your dev or testing environment for usage.
When you have the .NET Command Line Interface installed on your OS of choice, you can try it out using some of the samples on the dotnet/core repo. You can download the sample in a directory, and then you can kick the tires of the CLI.
First, you will need to restore the packages:
dotnet restore
This will restore all of the packages that are specified in the project.json file of the given sample.
Then you can either run from source or compile the sample. Running from source is straightforward:
dotnet run
Compiling to IL is done using:
dotnet build
This will drop a binary in ./bin/[configuration]/[framework]/[rid]/[binary name]
that you can just run.
For more details, please refer to the documentation.
If you are building from source, take note that the build depends on NuGet packages hosted on MyGet, so if it is down, the build may fail. If that happens, you can always see the MyGet status page for more info.
Read over the contributing guidelines and developer documentation for prerequisites for building from source.
For any and all feedback, please use the Issues on this repository.