Skip to content

Commit 4537e23

Browse files
committed
remove localization from link
1 parent cc62f2d commit 4537e23

File tree

1 file changed

+1
-1
lines changed
  • docs/extensibility/visualstudio.extensibility/project

1 file changed

+1
-1
lines changed

docs/extensibility/visualstudio.extensibility/project/project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ WorkspacesExtensibility workSpace = this.Extensibility.Workspaces();
6262

6363
If you're creating an [in-process extension](../get-started/in-proc-extensions.md), you instead access the project query space as shown in the following code example. Unless you have specifically created an in-process extension, use the snippet in the previous section to get an instance of the project query space object.
6464

65-
In the following code excerpt, `package` represents an instance of [AsyncPackage](https://learn.microsoft.com/en-us/dotnet/api/microsoft.visualstudio.shell.asyncpackage?view=visualstudiosdk-2022), a class utilized in the development of Visual Studio extensions. The method `GetServiceAsync` is employed to asynchronously procure the query service from the Visual Studio's service container.
65+
In the following code excerpt, `package` represents an instance of [AsyncPackage](https://learn.microsoft.com/dotnet/api/microsoft.visualstudio.shell.asyncpackage?view=visualstudiosdk-2022), a class utilized in the development of Visual Studio extensions. The method `GetServiceAsync` is employed to asynchronously procure the query service from the Visual Studio's service container.
6666

6767
```csharp
6868
IProjectSystemQueryService queryService = await package.GetServiceAsync<IProjectSystemQueryService, IProjectSystemQueryService>();

0 commit comments

Comments
 (0)