-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename corefx -> runtime libraries #105285
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jakobbotsch, I deleted these scripts because they seem outdated since the repo unification. Please let me know if they should stay.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that's fine... I don't think anyone uses or would use this anymore. cc @dotnet/jit-contrib
Tagging subscribers to this area: @dotnet/area-meta |
src/coreclr/nativeaot/Runtime.Base/src/System/Runtime/CompilerServices/Unsafe.cs
Outdated
Show resolved
Hide resolved
@@ -1,1325 +0,0 @@ | |||
#!/usr/bin/env bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this being deleted?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These scripts seem outdated and unused by anything in the repo.
…Services/Unsafe.cs Co-authored-by: Stephen Toub <stoub@microsoft.com>
@@ -7,7 +7,7 @@ | |||
using System.Collections.Generic; | |||
using System.Threading.Tasks; | |||
|
|||
namespace CoreFXTestLibrary |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CoreFXTestLibrary
was one of the old internal .NET test frameworks used before OSS. The native aot dynamic generics tests are the only place where it is still used. We have migrated away from it everywhere else.
I think RuntimeLibrariesTest
is too noble name for it. I would leave it alone. Ideally, all this would be deleted and replaced with xunit (our xunit fork that is not reflection heavy that we use in other places).
If you really want to get rid of the CoreFX
name, I would rename it to something that better describes what it is, e.g. LegacyTestLibrary
.
@@ -72,7 +72,7 @@ public string CoreRootOutputPath(CompilerIndex index, bool isFramework) | |||
/// <summary> | |||
/// Creates compiler runner instances for each supported compiler based on the populated BuildOptions. | |||
/// </summary> | |||
/// <param name="isFramework">True if compiling the CoreFX framework assemblies</param> | |||
/// <param name="isFramework">True if compiling the runtime libraries assemblies</param> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We've typically used "core libraries" (analogous to corelib which is just one). I've not heard "runtime libraries ". I edited the glossary too Core libraries
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've not heard "runtime libraries "
- https://github.com/search?q=repo%3Adotnet%2Fruntime%20%22runtime%20libraries%22&type=code
- https://learn.microsoft.com/en-us/dotnet/standard/runtime-libraries-overview
CoreLib specifically implies System.Private.CoreLib
.
Continues on #105275