Merge remote-tracking branch 'upstream/master'

syncing with upstream/master
This commit is contained in:
Lee Coward 2017-02-07 14:03:36 -08:00
commit 942f896ee1
4 changed files with 36 additions and 14 deletions

View file

@ -20,11 +20,9 @@ Windows PDBs can only be written or read on Windows. All Windows tooling support
Portable PDBs can be read on any operating system, but there are a number of places where they aren't supported yet. Here are a few
* Older versions of the Visual Studio debugger (versions before VS 2015 Update 2)
* Edit-and-continue in Visual Studio
* Code inside the .NET Framework that prints stack traces with mappings back to line numbers (such as in an ASP.NET error page). The name of methods is unaffected, only the source file names and line numbers are unsupported.
* .NET Framework prior 4.6.3: printing stack traces with mappings back to line numbers (such as in an ASP.NET error page). The name of methods is unaffected, only the source file names and line numbers are unsupported.
* C# Code analysis (aka FxCop), note that this doesn't apply to Roslyn Analyzer
* Symbol server (ex: SymbolsSource.org)
* Profiling tools
* Running any post-compilation build step that consumes or modifies the PDB, such as CCI based tools (CodeContracts) or the .NET Native compiler
* Using .NET decompilers such as ildasm or .Net reflector and expecting to see source line mappings or local parameter names

View file

@ -0,0 +1,22 @@
# Docker Images and .NET Core Content Reference
In order for Docker containers to run dotnet cli commands the sdk that you use to build your project with locally must match the dotnet sdk version inside your container. If you want a lighter-weight container and dont need to use the cli tools inside the container, then you can pull the runtime images.
| Docker Images 1/30/17 | .NET Core Runtime version in image | .NET Core SDK version in image (NOTE: All SDK versions can target all runtimes) | Full SDK version number |
|----------------------------------------|-------------------------------------------|----------------------------------------------------------------------------------------------|---------------------------------|
| 1.0.3-runtime | 1.0.3 | *None | *None |
| 1.0.3-runtime-nanoserver | 1.0.3 | *None | *None |
| 1.0.3-runtime-deps | None | *None | *None |
| 1.0.3-sdk-projectjson | 1.0.3 | 1.0.3-sdk-projectjson | 1.0.0-preview2-003156 |
| 1.0.3-sdk-projectjson-nanoserver | 1.0.3 | 1.0.3-sdk-projectjson | 1.0.0-preview2-003156 |
| 1.0.3-sdk-msbuild-rc3 | 1.0.3, 1.1.0 | 1.0.3-sdk-msbuild-rc3 | 1.0.0-rc3-004517 |
| 1.0.3-sdk-msbuild-rc3-nanoserver | 1.0.3, 1.1.0 | 1.0.3-sdk-msbuild-rc3 | 1.0.0-rc3-004517 |
| 1.1.0-runtime | 1.1.0 | *None | *None |
| 1.1.0-runtime-nanoserver | 1.1.0 | *None | *None |
| 1.1.0-runtime-deps | None | *None | *None |
| 1.1.0-sdk-projectjson | 1.1.0 | 1.1.0-sdk-projectjson | 1.0.0-preview2-1-003177 |
| 1.1.0-sdk-projectjson-nanoserver | 1.1.0 | 1.1.0-sdk-projectjson | 1.0.0-preview2-1-003177 |
| 1.1.0-sdk-msbuild-rc3 | 1.0.3, 1.1.0 | 1.1.0-sdk-msbuild | 1.0.0-rc3-004517 |
| 1.1.0-sdk-msbuild-rc3-nanoserver | 1.0.3, 1.1.0 | 1.1.0-sdk-msbuild | 1.0.0-rc3-004517 |
> **Note:** Edit your project file to target the runtime you wish to use. All SDK versions work with all runtimes though the SDK is not included in the image.

View file

@ -15,7 +15,7 @@ The installers and binary archives on this page include .NET Core 1.0 SDK Previe
## Installation from a binary archive
When using binary archives to install, we recommend the contents be extracted to /opt/dotnet and a symbolic link created for dotnet. If an earlier release of .NET Core is already installed, the directory and symbolic link may already exist. Ubuntu and Mint users should follow the instructions in the Ubuntu Installation section below.
When using binary archives to install, we recommend the contents be extracted to `/opt/dotnet` and a symbolic link created for `dotnet`. If an earlier release of .NET Core is already installed, the directory and symbolic link may already exist. Ubuntu and Mint users should follow the instructions in the Ubuntu Installation section below.
```bash
sudo mkdir -p /opt/dotnet
@ -25,10 +25,12 @@ sudo ln -s /opt/dotnet/dotnet /usr/local/bin
## Ubuntu installation
```
dotnet-host-ubuntu-x64.deb
dotnet-hostfxr-ubuntu-x64.deb
dotnet-sharedframework-ubuntu-x64.deb
dotnet-sdk-ubuntu-x64.1.0.0-preview4-004233.deb
```
### Set up package source

View file

@ -2,16 +2,16 @@
The installers and binary archives on this page include .NET Core 1.0 SDK RC 3.
| .NET Core 1.0 RC 3 | Installer | Binaries |
| ----------------------- | :----------------------------------------------: | :----------------------------------------------:|
| Windows | [32-bit](https://go.microsoft.com/fwlink/?linkid=839629) / [64-bit](https://go.microsoft.com/fwlink/?linkid=839640) | [32-bit](https://go.microsoft.com/fwlink/?linkid=839632) / [64-bit](https://go.microsoft.com/fwlink/?linkid=839634) |
| macOS | [64-bit](https://go.microsoft.com/fwlink/?linkid=839635) | [64-bit](https://go.microsoft.com/fwlink/?linkid=839641) |
| CentOS 7.1 | - | [64-bit](https://go.microsoft.com/fwlink/?linkid=839642) |
| Debian 8 | - | [64-bit](https://go.microsoft.com/fwlink/?linkid=839630) |
| Fedora 23 | - | [64-bit](https://go.microsoft.com/fwlink/?linkid=839639) |
| openSUSE 13.2 | - | [64-bit](https://go.microsoft.com/fwlink/?linkid=839637) |
| Ubuntu 14.04 | See notes below for Ubuntu 14.04 and Mint 17 installers | [64-bit](https://go.microsoft.com/fwlink/?linkid=839628) |
| Ubuntu 16.04 | See notes below for Ubuntu 16.04 and Mint 18 installers | [64-bit](https://go.microsoft.com/fwlink/?linkid=839636) |
| .NET Core 1.0 RC 3 | Installer | Binaries | Docker Images |
| ----------------------- | :----------------------------------------------: | :----------------------------------------------:| :----------------------------------------------:|
| Windows | [32-bit](https://go.microsoft.com/fwlink/?linkid=839629) / [64-bit](https://go.microsoft.com/fwlink/?linkid=839640) | [32-bit](https://go.microsoft.com/fwlink/?linkid=839632) / [64-bit](https://go.microsoft.com/fwlink/?linkid=839634) | [1.1.0-sdk-msbuild-rc3-nanoserver](https://hub.docker.com/r/microsoft/dotnet/) |
| macOS | [64-bit](https://go.microsoft.com/fwlink/?linkid=839635) | [64-bit](https://go.microsoft.com/fwlink/?linkid=839641) | |
| CentOS 7.1 | - | [64-bit](https://go.microsoft.com/fwlink/?linkid=839642) | |
| Debian 8 | - | [64-bit](https://go.microsoft.com/fwlink/?linkid=839630) | [1.1.0-sdk-msbuild-rc3](https://hub.docker.com/r/microsoft/dotnet/) |
| Fedora 23 | - | [64-bit](https://go.microsoft.com/fwlink/?linkid=839639) | |
| openSUSE 13.2 | - | [64-bit](https://go.microsoft.com/fwlink/?linkid=839637) | |
| Ubuntu 14.04 | See notes below for Ubuntu 14.04 and Mint 17 installers | [64-bit](https://go.microsoft.com/fwlink/?linkid=839628) | |
| Ubuntu 16.04 | See notes below for Ubuntu 16.04 and Mint 18 installers | [64-bit](https://go.microsoft.com/fwlink/?linkid=839636) | |
## Installation from a binary archive