-
Notifications
You must be signed in to change notification settings - Fork 198
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
Add ExternalAccess package for the legacy ASP .NET Core editor #8838
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.
I keep going back and forth in my head about whether this should have "LegacyEditor" on the end of the project name, and I don't know the answer.
I think the answer is probably no. Currently, there are more things in Web Tools that use Razor that just the legacy ASP.NET Core editor, such as scaffolding. However, even if it were just the legacy editor dependency, I still probably wouldn't add that suffix anyway, since it would just serve to constrain the purpose of this project to be unnecessarily specific. E.g., what if we found another Web Tools dependency later that was less obvious, but unrelated to the legacy editor? Would we add a new "external access" project for that dependency, layering it with this external access project? Or, would we go through the effort of renaming this one? That seems like a lot of extra over-design when I think "WebTools" is probably clear enough to define its purpose for now and forever. 😄 |
2710998
to
b82d9a1
Compare
@davidwengier: After our chat yesterday, I've decided to go with "LegacyEditor" rather than "WebTools". You made some excellent arguments and I agree that it's better to have a name that indicates its purpose rather than opening it up to be used for anything by a particular team. In other words, "don't ship the org chart." Thanks very much for your thoughts! |
8202fcf
to
fe05138
Compare
This change adds an "external access" project that produces a NuGet package. This project will ultimately contain a set of internal APIs that will be used to provide a stable contract that the legacy ASP .NET Core editor can communicate with, allowing other Razor APIs to evolve. For now, it's empty.