summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib
diff options
context:
space:
mode:
authorViktor Hofer <viktor.hofer@microsoft.com>2019-06-14 15:12:42 +0200
committerDan Moseley <danmose@microsoft.com>2019-06-17 19:04:04 -0700
commitd6bec4a3ac652457f84a97e5a910f477fb491e03 (patch)
treedfe66f942e01114078a41236c1d420f523dd4a33 /src/System.Private.CoreLib
parent05659c32af2bc3a0d441edf9a55436873c025aaa (diff)
downloadcoreclr-d6bec4a3ac652457f84a97e5a910f477fb491e03.tar.gz
coreclr-d6bec4a3ac652457f84a97e5a910f477fb491e03.tar.bz2
coreclr-d6bec4a3ac652457f84a97e5a910f477fb491e03.zip
Delete dead uapaot code (dotnet/corefx#38330)
* Delete dead uapaot code Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'src/System.Private.CoreLib')
-rw-r--r--src/System.Private.CoreLib/shared/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/README.md b/src/System.Private.CoreLib/shared/README.md
index 250eb87f26..28c9e733a3 100644
--- a/src/System.Private.CoreLib/shared/README.md
+++ b/src/System.Private.CoreLib/shared/README.md
@@ -1,12 +1,12 @@
# System.Private.CoreLib Shared Sources
-This directory contains the shared sources for System.Private.CoreLib. These are shared between [dotnet/corert](https://github.com/dotnet/corert/tree/master/src/System.Private.CoreLib/shared), [dotnet/coreclr](https://github.com/dotnet/coreclr/tree/master/src/System.Private.CoreLib/shared) and [dotnet/corefx](https://github.com/dotnet/corefx/tree/master/src/Common/src/CoreLib).
+This directory contains the shared sources for System.Private.CoreLib. These are shared between [mono/mono](https://github.com/mono/mono/tree/master/netcore/System.Private.CoreLib/shared), [dotnet/coreclr](https://github.com/dotnet/coreclr/tree/master/src/System.Private.CoreLib/shared) and [dotnet/corefx](https://github.com/dotnet/corefx/tree/master/src/Common/src/CoreLib).
The sources are synchronized with a mirroring tool that watches for new commits on either side and creates new pull requests (as @dotnet-bot) in the other repository.
## Conventions
-Code in the shared directory should have no code specific to CoreCLR, CoreRT or CoreFX. Parts of classes that need to have different implementations on different runtimes should use partial classes and &#42;.CoreRT.cs/&#42;.CoreCLR.cs/&#42;.CoreFX.cs files in the non shared portion. Code that is different based on platform (Windows/Unix) is fine to leave in the shared portion. Remember to follow the [style guidelines](https://github.com/dotnet/corefx/blob/master/Documentation/coding-guidelines/coding-style.md).
+Code in the shared directory should have no code specific to CoreCLR, CoreRT or CoreFX. Parts of classes that need to have different implementations on different runtimes should use partial classes and &#42;.CoreCLR.cs/&#42;.CoreFX.cs files in the non shared portion. Code that is different based on platform (Windows/Unix) is fine to leave in the shared portion. Remember to follow the [style guidelines](https://github.com/dotnet/corefx/blob/master/Documentation/coding-guidelines/coding-style.md).
## Getting clean CI and merging the mirror PRs