Update oop-extensibility-model-overview.md

Updated wording/casing.  Also removed 'Gladstone' as that might have been the project's codename.  Not sure.
This commit is contained in:
Greg Ingram 2021-09-19 12:33:31 -04:00 коммит произвёл GitHub
Родитель 7b4fca2791
Коммит 6fdf8ac48c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -26,15 +26,15 @@ Writing extensions using the new model provides the following benefits:
* **Increased reliability** – Extensions written with the new model are out-of-proc and will not block the Visual Studio UI. This means that if the extension crashes, VS will not crash as a result.
* **Reduced API complexity** – The new models wrapper API has been built from the ground-up to be more cohesive and simpler to implement while retaining the old models advanced functionality.
* **.NET Core Only** – In order to benefit from latest enhancements on .NET and C# the new extensibility model will only support .NET Core 6 and forward. All APIs will also be built on .NET core and will be .NET 6 compatible and extensions will be loaded in a .NET Core host.
* **.NET Core Only** – In order to benefit from latest enhancements on .NET and C#, the new extensibility model will only support .NET Core 6 and forward. All APIs will also be built on .NET Core, will be .NET 6 compatible, and extensions will be loaded in a .NET Core host.
* **Hot-loading functionality** – Excluding ones requiring VS component prerequisites that havent been installed yet, extensions written using the new model can be installed and loaded without needing to restart Visual Studio.
* **Cross-CPU Platform** – Since underlying implementation is based on RPC compatible brokered services and is .NET core based, all Gladstone extensions will run on all CPU platforms supported by .NET core runtime.
* **Cross-CPU Platform** – Since underlying implementation is based on RPC compatible brokered services and is .NET Core based, all extensions will run on all CPU platforms supported by .NET Core runtime.
* **Low-trust extensions (Coming Soon)** – Since extensions in the new model run in a separate process, they can be isolated from devenv and ran in a low-trust sandbox. This environment will provide the extensions with read-only access to the file system and controlled writing access via the models APIs.
## Technology
The new extensibility model is primarily built on top remote RPC contracts that are provided as brokered services from Visual Studio. The extensions are hosted in an external ServiceHub process that communicates with Visual Studio via RPC and both utilize services provided by Visual Studio and may also provide services to Visual Studio process in certain cases.
Extensibility packages that are provided as part of the SDK consist of base classes, utility methods and wrapper objects around these RPC contracts with the goal of making extensibility surface area easier to use, easier to discover and also to be able to quickly contribute to Visual Studio ecosystem such as creating a new command handler.
Extensibility packages that are provided as part of the SDK consist of base classes, utility methods and wrapper objects around these RPC contracts with the goal of making the extensibility surface area easier to use, easier to discover, and also to be able to quickly contribute to Visual Studio ecosystem such as creating a new command handler.
## Next Steps