Add and update content for 1.1 Preview 1

This commit is contained in:
Lee Coward 2016-10-24 09:32:29 -07:00
parent 1ff2c6b83a
commit 6348843649
3 changed files with 56 additions and 7 deletions

View file

@ -1,8 +1,8 @@
# Contributions to .NET Core 1.1.0 Preview 1
Still working out the best way to present contributors. The list below is generated with the following command against each repo. The release qualifier is different from the example in some cases.
We're still working out the best way to present contributors and trying to be as accurate as possible. The list below is generated with the following command against each repo. The release qualifier is different from the example in some cases. Also, where multiple email addresses were returned for a single person, the counts were aggregated with the email address reported the most commits.
```
```bash
git shortlog -sne --no-merges HEAD..release/1.1.0 --since master@{2016-09-07} --until master@{2016-10-23}
```

View file

@ -0,0 +1,21 @@
# 1.1.0 Preview 1 Known Issues
This document lists known issues for *.NET Core 1.1.0 Preview 1* and *.NET Core SDK 1.0.0 Preview 2.1* which may be encountered during usage.
## Previous versions of the Host Resolver are removed
Everything about .NET Core is designed to be side-by-side but there is an issue with the Preview 1 installers which removes previous versions of the Host Resolver (dotnet/host/fxr). The Preview 1 version is compatible with previous releases and you should see no changes in behavior. This will be fixed for the final 1.1.0 release.
## Visual Studio unable to find the SDK
Installing the SDK will create new side-by-side directories for each version under \Program Files\dotnet\sdk. Generally it should be safe to remove older versions but there is an issue in Visual Studio which prevents it from finding this Preview if previous versions are uninstalled. The work around is to either not remove the previous versions or rename the directory.
- Directory name as installed is 1.0.0-preview2.1-003155
- Rename from ***preview2.1*** to ***preview2-1***
This will be resolved in the final 1.1.0 release and is tracked by [CLI Issue 4466](https://github.com/dotnet/cli/issues/4466).
## C++ Math libraries can behave differently across platforms
This is expected behavior. See discussion in [coreclr issue 4318](https://github.com/dotnet/coreclr/issues/4318)

View file

@ -1,10 +1,38 @@
# Release Notes
## .NET Core 1.1.0 Preview 1 released mm/dd/2016
### Added Linux Distro Support
### Commits for 1.1.0 Preview 1
## .NET Core 1.1.0 Preview 1 released 10/24/2016
There are a few issues to be aware of, which are described in the [.NET Core 1.1.0 Preview 1 Known Issues](1.1.0-preview1-known-issues.md) document.
### Linux Distros Added
Support has been added tofor the distros highlighted below.
* Red Hat Enterprise Linux 7.2
* CentOS 7.1+
* Debian 8.2+
* Fedora 23, _**24**_
* Linux Mint 17.1, _**18**_
* OpenSUSE 13.2, _**42.1**_
* Oracle Linux 7.1
* Ubuntu 14.04 & 16.04
* Mac OS X 10.11, _**10,12**_
* Windows 7+ / Server 2012 R2+
* Windows Nano Server TP5
### WCF
XmlSerializer, DataContractSerializer, and DataContractJsonSerializer can now serialize or deserialize objects at runtime without using IL emit or code generation. Prior to this release, in Universal Windows Platform (UWP) applications, these serializers can only be generated at compile time by .NET Native toolchain. This new feature, therefore, is especially useful for UWP applications in scenarios where pre-generated serializers at compile time is hard to achieve when runtime information is required for seraization. For example, constructor XmlSerializer.ctor(Type,XmlRootAttribute) is now supported on UWP.
### ASP.NET Core
* Please see the [ASP.NET Core release page](https://github.com/aspnet/home/releases/1.1.0-preview1) for details on fixes from ASP.NET Core, MVC, Entitiy Framework Core and others.
### Commits for 1.1 Preview 1
### Contributors
The list of contributors can be found in the [1.1.0 Preview 1 Contributor List](1.1.0-preview1-contributor-list.md)