CI to automate build of dotnet tarball for dotnet6-sdk aport https://gitlab.alpinelinux.org/alpine/aports/-/tree/master/community/dotnet6-sdk
Find a file
2016-05-02 14:21:02 -07:00
Documentation Update known-issues.md (#1862) 2016-04-08 19:42:16 -07:00
packaging Fix bug to install x64 and x86 SxS. 2016-04-29 13:16:08 -07:00
pkg Update Roslyn to 1.3.0-beta1-20160425-01 2016-04-30 16:14:53 -05:00
resources/images Fix version badges to display Nuget Version of cli. 2016-03-28 17:51:36 -07:00
scripts Merge pull request #2809 from eerhardt/UpdateNuGet 2016-05-02 11:40:10 -07:00
src Fix: builtIn defaults are not used when builtIn is not specified 2016-05-02 14:21:02 -07:00
test Fix: builtIn defaults are not used when builtIn is not specified 2016-05-02 14:21:02 -07:00
TestAssets Fix: builtIn defaults are not used when builtIn is not specified 2016-05-02 14:21:02 -07:00
tools Updating NuGet references from beta to rc. 2016-05-02 09:29:51 -05:00
.gitattributes merge my spike on compile/publish/run and switch from PS1 to C# 2015-10-06 10:46:43 -07:00
.gitignore Unit test added and Red 2016-04-19 11:22:45 -07:00
branchinfo.txt Moves version suffix from beta to rc2 2016-04-06 15:45:21 -07:00
build.cmd Remove ReadyToRun workaround 2016-04-03 09:01:59 -07:00
build.sh Fix release builds in docker. 2016-02-17 16:16:25 -08:00
CONTRIBUTING.md Add contributing info and developer guide 2015-11-17 23:26:58 -08:00
global.json Memory usage improvements in build (#2626) 2016-04-22 15:01:56 -07:00
ISSUE_TEMPLATE issue template, the --info is the new --version 2016-03-31 12:34:28 +02:00
LICENSE Initial commit 2015-10-02 11:03:16 -07:00
Microsoft.DotNet.Cli.sln Replaces references to Microsoft.Extensions.PlatformAbstractions with Microsoft.Extensions.PlatformAbstractions.Internal 2016-04-29 16:06:23 -07:00
netci.groovy Updates per code review 2016-04-13 16:46:45 -05:00
NuGet.Config Update to the latest AspNet packages 2016-04-06 18:11:58 -07:00
NuGet.master.config add readme 2015-10-08 14:41:04 -07:00
omnisharp.json Update omnisharp setting. Disable auto restore. 2016-03-27 12:12:57 -07:00
README.md Merge pull request #2447 from adityamandaleeka/fix_doc_link_rel 2016-04-26 13:17:12 -07:00
THIRD-PARTY-NOTICES Update License Text 2016-04-06 12:20:37 -07:00

.NET Command Line Interface

Join the chat at https://gitter.im/dotnet/cli

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.

New to .NET CLI?

Check out our http://dotnet.github.io/getting-started/ page.

Found an issue?

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.

Build Status

Ubuntu 14.04 Debian 8.2 Windows x64 Windows x86 Mac OS X CentOS 7.1 RHEL 7.2

Installers and Binaries

You can download .NET Core as either an installer (MSI, PKG) or a zip (zip, gzip). You can download the product in two flavours:

  • .NET Core - .NET Core runtime and framework
  • .NET Core SDK - .NET Core + CLI tools
Version .NET Core Installer .NET Core SDK Installer .NET Core Binaries .NET Core SDK Binaries
Windows x64 Download Download Download Download
Windows x86 Download Download Download Download
Ubuntu 14.04 See Below See Below Download Download
Debian 8.2 N/A N/A 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

Ubuntu Installers

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

Interested in .NET Core + ASP.NET Core 1.0 RC1 bits?

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/.

Docker

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.

Basic 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.

Building from source

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.

Questions & Comments

For any and all feedback, please use the Issues on this repository.

License

By downloading the .zip you are agreeing to the terms in the project EULA.