Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-19Remove packages from NETStandard.Library 1.6Eric St. John
With one exception: System.Runtime.InteropServices.RuntimeInformation. For the rest we will no longer ship packages. Instead the types will be supported as follows: 1. In a netstandard2.0+ project via NETStandard.Library package's netstandard.dll 2. In a netstandard1.x project via NETStandard.Library package and closure which ship from servicing branches. 3. In a framework specific project via the framework's targeting pack or framework package.
2017-01-11Automated update of ns1.7->ns2.0 and nca1.1->nca2.0Alex Perovich
2016-10-13Expose some missing threading types/members (Timer, exceptions, etc.) (#12392)Koundinya Veluri
- Expose: Timer members, some exception types and members, ThreadExceptionEventArgs/Handler, Monitor.Wait with exitContext parameter - Move CriticalHandle and remaining types from System.Runtime.Handles to System.Runtime, expose CriticalHandle[ZeroOr]MinusOneIsInvalid - Revert base class of safe handle types that used to derive from SafeHandle[ZeroOr]MinusOneIsInvalid, and upgrade those projects to ns1.7
2016-10-05Update project ToolsVersions to 14.0 (#12355)Alex Perovich
2016-08-04Reving up the versions of the contracts where we have added Apis for ↵Jose Perez Rodriguez
netcoreapp1.1 (#10531) Reving up the versions of the contracts where we have added Apis for netcoreapp1.1
2016-04-26Eliminate use of PackageTargetRuntime in CSPROJEric St. John
PackageTargetRuntime can now be derived from the OSGroup of the project. Set the default values in dir.props and only override if necessary.
2016-03-11Fat package conversionsChristopher Costa
2016-01-03Add support for building and filtering via OSGroup in .builds filesWes Haggard
After this change if you build a .builds file it will all projects defined in it. However if you specify OSGroup or FilterOSGroup as a property it will only build the projects that are for that OSGroup or AnyOS. Change the default OSGroup to AnyOS instead of Windows_NT. By default if you build from the root it will only filter the projects to just the OS that you are building on (including anything that is AnyOS). If you want to build all projects for all OS's from the root pass /p:BuildAllOSGroups=true property from the command line. Includes an update to project-guidelines.md and windows-instructions.md docs with information on the changes. [MERGE with support commit]
2015-12-16Initial integration of packaging supportEric St. John
Adds packages for a few libraries and integrates package build into the binary build process.