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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-09Remove netcore/ directory from the mono/mono repository. (#20361)Zoltan Varga
2019-05-10Turn on nullability for all of Corelib (dotnet/coreclr#24497)Stephen Toub
* Enable nullable at the project level * Remove `#nullable enable` from individual files Removes `#nullable enable` from almost all .cs files in System.Private.CoreLib. I left it only in the ~30 files (out of ~1480 that had it) that are mirrored to corefx, that are built into projects by corefx that don't yet set NullableContextOptions at the project level, and that use nullable annotations; otherwise, they'd break the corefx build. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2019-04-09Annotate Unix interop (dotnet/coreclr#23589)Dan Moseley
* Unix interop * More interop * Fix * fix Signed-off-by: dotnet-bot <anirudhagnihotry098@gmail.com>
2019-01-18Move Environment to shared CoreLib (dotnet/corefx#34654)Stephen Toub
Rather than having Environment partially live in corefx and call into an EnvironmentAugments type in CoreLib that in turn calls into an Environment type in CoreLib, we're just moving Environment to live in CoreLib. To start that, this PR moves Environment and its dependencies from their current locations into the shared CoreLib. Those changes will mirror over to coreclr. After that, I'll fix it up to work in CoreLib. And once those changes are built and available back to corefx, I'll update System.Runtime.Extensions to just use the functionality from CoreLib and delete remaining unnecessary code from corefx. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>