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
Zlatko Knezevic 7981213df5 Add proper Docker link & some basic usage
Add proper link to the Docker Hub for Docker images.
Include some basic usage for the tools in the Readme.md so that
users can have an immidiate start if they come to the repo first.
2015-11-17 23:19:39 -08:00
documentation Updated developer guidance 2015-11-17 18:01:28 -08:00
package_tool Update Copyright headers in all source files. 2015-11-16 19:47:43 -08:00
packaging/osx Update Copyright headers in all source files. 2015-11-16 19:47:43 -08:00
scripts added a script to put the dev build on the PATH 2015-11-17 18:08:31 -08:00
src Merge pull request #209 from dotnet/anurse/202-duplicated-help 2015-11-17 22:04:05 -08:00
test Update Copyright headers in all source files. 2015-11-16 19:47:43 -08:00
.gitattributes merge my spike on compile/publish/run and switch from PS1 to C# 2015-10-06 10:46:43 -07:00
.gitignore switch to repo-local stage0 2015-11-16 13:49:29 -08:00
build.cmd fix minor issue with build scripts 2015-11-17 15:17:37 -08:00
build.sh Update Copyright headers in all source files. 2015-11-16 19:47:43 -08:00
debian_config.json Add Microsoft.DotNet.Tools.Repl* to install 2015-11-17 13:52:00 -08:00
global.json Initial commit 2015-10-03 11:34:08 -07:00
LICENSE Initial commit 2015-10-02 11:03:16 -07:00
Microsoft.DotNet.Cli.sln Add dotnet-init 2015-11-17 11:46:46 -08:00
netci.groovy Update Copyright headers in all source files. 2015-11-16 19:47:43 -08:00
NuGet.Config update NuGet.Packaging reference 2015-11-12 10:38:57 -08:00
NuGet.master.config add readme 2015-10-08 14:41:04 -07:00
omnisharp.json Add omnisharp.json file to exclude test projects from editor 2015-10-29 01:48:46 -07:00
README.md Add proper Docker link & some basic usage 2015-11-17 23:19:39 -08:00
THIRD-PARTY-NOTICES Add 3rd party notices 2015-11-17 08:21:09 -08:00

.NET Command Line Interface

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.

Build Status

Ubuntu 14.04 Windows Mac OS X
Debug Build Status Build Status Build Status
Release Build Status Build Status Build Status

Installers

Ubuntu 14.04 Windows Mac OS X
Installers Download Debian Package Download Msi Download Pkg
Binaries Download tar file Download zip file Download tar file

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 main Core repo. You can download the sample in a directory, and then do 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 compile

This will drop a binary in ./bin/[configuration]/[framework]/[binary name] that you can just run.

Finally, you can also try out native compilation on Windows and Linux. Note: at this point, only the helloworld and dotnetbot samples will work with native compilation; in general, only simple applications like hello world will work reliably.

dotnet compile --native

This will drop a native single binary in ./bin/[configuration]/[framework]/native/[binary name] that you can run.

Questions & Comments

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