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-08-09Re-enable StyleCop warnings SA1028 and SA1518 (trailing whitespace and blank ↵Stephen Toub
lines) (#40113) Mechanical/automated change. The only manual changes were a) removing the two rules from the CodeAnalysis.ruleset file, b) removing spaces from one line of a .targets file that is used to generate a .cs file, and c) reverting the changes in a few test files where the naive replacement happened in the middle of a verbatim string where the whitespace actually mattered. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
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-05-02Nullable for Type class (dotnet/coreclr#23489)buyaa-n
System.Type, System.Reflection nullability Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-12-20Add System.Private.CoreLib shared sources (#12162)dotnet bot
Taken from corefx commit 5956ad35864352b38c53aa8c2d1ce012c96b168d. Subsequent updates will happen via a mirroring bot.