Skip to content

Commit 2e39740

Browse files
committed
Gerund fixes
1 parent 7bf91f1 commit 2e39740

13 files changed

+32
-32
lines changed

docs/sharepoint/how-to-add-a-custom-sharepoint-node-to-server-explorer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ ms.workload:
8989

9090
- System.Drawing
9191

92-
## Deploying the extension
92+
## Deploy the extension
9393
To deploy the **Server Explorer** extension, create a [!INCLUDE[vsprvs](../sharepoint/includes/vsprvs-md.md)] extension (VSIX) package for the assembly and any other files that you want to distribute with the extension. For more information, see [Deploy extensions for the SharePoint Tools in Visual Studio](../sharepoint/deploying-extensions-for-the-sharepoint-tools-in-visual-studio.md).
9494

9595
## See also

docs/sharepoint/how-to-add-a-property-to-a-custom-sharepoint-project-item-type.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ ms.workload:
3737
[!code-vb[SPExtensibility.ProjectItemExtension.MenuAndProperty#11](../sharepoint/codesnippet/VisualBasic/projectitemmenuandproperty/extension/projectitemtypeproperty.vb#11)]
3838
[!code-csharp[SPExtensibility.ProjectItemExtension.MenuAndProperty#11](../sharepoint/codesnippet/CSharp/projectitemmenuandproperty/extension/projectitemtypeproperty.cs#11)]
3939

40-
### Understanding the code
40+
### Understand the code
4141
To ensure that the same instance of the `CustomProperties` class is used each time the <xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItemEvents.ProjectItemPropertiesRequested> event occurs, the code example saves the properties object to the <xref:Microsoft.VisualStudio.SharePoint.IAnnotatedObject.Annotations%2A> property of the project item the first time this event occurs. The code retrieves this object whenever this event occurs again. For more information about using the <xref:Microsoft.VisualStudio.SharePoint.IAnnotatedObject.Annotations%2A> property to save data with project items, see [Associate custom data with SharePoint tools extensions](../sharepoint/associating-custom-data-with-sharepoint-tools-extensions.md).
4242

4343
To persist changes to the property value, the **set** accessor for `ExampleProperty` saves the new value to the <xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItem.ExtensionData%2A> property of the <xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItem> object that the property is associated with. For more information about using the <xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItem.ExtensionData%2A> property to persist data with project items, see [Save data in extensions of the SharePoint project system](../sharepoint/saving-data-in-extensions-of-the-sharepoint-project-system.md).
4444

45-
### Specifying the behavior of custom properties
45+
### Specify the behavior of custom properties
4646
You can define how a custom property appears and behaves in the **Properties** window by applying attributes from the <xref:System.ComponentModel> namespace to the property definition. The following attributes are useful in many scenarios:
4747

4848
- <xref:System.ComponentModel.DisplayNameAttribute>: Specifies the name of the property that appears in the **Properties** window.
@@ -55,14 +55,14 @@ ms.workload:
5555

5656
- <xref:System.ComponentModel.EditorAttribute>: Specifies a custom editor to use to modify the property.
5757

58-
## Compiling the code
58+
## Compile the code
5959
These code examples require a class library project with references to the following assemblies:
6060

6161
- Microsoft.VisualStudio.SharePoint
6262

6363
- System.ComponentModel.Composition
6464

65-
## Deploying the project item
65+
## Deploy the project item
6666
To enable other developers to use your project item, create a project template or a project item template. For more information, see [Create item templates and project templates for SharePoint project items](../sharepoint/creating-item-templates-and-project-templates-for-sharepoint-project-items.md).
6767

6868
To deploy the project item, create a [!include[vsprvs](../sharepoint/includes/vsprvs-md.md)] extension (VSIX) package for the assembly, the template, and any other files that you want to distribute with the project item. For more information, see [Deploy extensions for the SharePoint tools in Visual Studio](../sharepoint/deploying-extensions-for-the-sharepoint-tools-in-visual-studio.md).

docs/sharepoint/how-to-add-a-property-to-a-sharepoint-project-item-extension.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ ms.workload:
3737
[!code-csharp[SPExtensibility.ProjectItemExtension.MenuAndProperty#8](../sharepoint/codesnippet/CSharp/projectitemmenuandproperty/extension/projectitemextensionproperty.cs#8)]
3838
[!code-vb[SPExtensibility.ProjectItemExtension.MenuAndProperty#8](../sharepoint/codesnippet/VisualBasic/projectitemmenuandproperty/extension/projectitemextensionproperty.vb#8)]
3939

40-
### Understanding the code
40+
### Understand the code
4141
To ensure that the same instance of the `CustomProperties` class is used each time the <xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItemEvents.ProjectItemPropertiesRequested> event occurs, the code example adds the properties object to the <xref:Microsoft.VisualStudio.SharePoint.IAnnotatedObject.Annotations%2A> property of the project item the first time this event occurs. The code retrieves this object whenever this event occurs again. For more information about using the <xref:Microsoft.VisualStudio.SharePoint.IAnnotatedObject.Annotations%2A> property to associate data with project items, see [Associate custom data with SharePoint tools extensions](../sharepoint/associating-custom-data-with-sharepoint-tools-extensions.md).
4242

4343
To persist changes to the property value, the **set** accessor for `ExampleProperty` saves the new value to the <xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItem.ExtensionData%2A> property of the <xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItem> object that the property is associated with. For more information about using the <xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectItem.ExtensionData%2A> property to persist data with project items, see [Save data in extensions of the SharePoint project system](../sharepoint/saving-data-in-extensions-of-the-sharepoint-project-system.md).
4444

45-
### Specifying the behavior of custom properties
45+
### Specify the behavior of custom properties
4646
You can define how a custom property appears and behaves in the **Properties** window by applying attributes from the <xref:System.ComponentModel> namespace to the property definition. The following attributes are useful in many scenarios:
4747

4848
- <xref:System.ComponentModel.DisplayNameAttribute>: Specifies the name of the property that appears in the **Properties** window.
@@ -55,14 +55,14 @@ ms.workload:
5555

5656
- <xref:System.ComponentModel.EditorAttribute>: Specifies a custom editor to use to modify the property.
5757

58-
## Compiling the code
58+
## Compile the code
5959
These examples require a class library project with references to the following assemblies:
6060

6161
- Microsoft.VisualStudio.SharePoint
6262

6363
- System.ComponentModel.Composition
6464

65-
## Deploying the extension
65+
## Deploy the extension
6666
To deploy the extension, create a [!include[vsprvs](../sharepoint/includes/vsprvs-md.md)] extension (VSIX) package for the assembly and any other files that you want to distribute with the extension. For more information, see [Deploy extensions for the SharePoint tools in Visual Studio](../sharepoint/deploying-extensions-for-the-sharepoint-tools-in-visual-studio.md).
6767

6868
## See also

docs/sharepoint/how-to-add-a-property-to-sharepoint-projects.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ms.workload:
3737
[!code-vb[SpExt_SPCustomPrjProperty#1](../sharepoint/codesnippet/VisualBasic/customspproperty/customproperty.vb#1)]
3838
[!code-csharp[SpExt_SPCustomPrjProperty#1](../sharepoint/codesnippet/CSharp/customspproperty/customproperty.cs#1)]
3939

40-
### Understanding the code
40+
### Understand the code
4141
To ensure that the same instance of the `CustomProjectProperties` class is used each time the <xref:Microsoft.VisualStudio.SharePoint.ISharePointProjectEvents.ProjectPropertiesRequested> event occurs, the code example adds the properties object to the <xref:Microsoft.VisualStudio.SharePoint.IAnnotatedObject.Annotations%2A> property of the project the first time this event occurs. The code retrieves this object whenever this event occurs again. For more information about using the <xref:Microsoft.VisualStudio.SharePoint.IAnnotatedObject.Annotations%2A> property to associate data with projects, see [Associate custom data with SharePoint tools extensions](../sharepoint/associating-custom-data-with-sharepoint-tools-extensions.md).
4242

4343
To persist changes to the property values, the **set** accessors for the properties use the following APIs:
@@ -48,7 +48,7 @@ ms.workload:
4848

4949
For more information about persisting data in these files, see [Save data in extensions of the SharePoint project system](../sharepoint/saving-data-in-extensions-of-the-sharepoint-project-system.md).
5050

51-
### Specifying the behavior of custom properties
51+
### Specify the behavior of custom properties
5252
You can define how a custom property appears and behaves in the **Properties** window by applying attributes from the <xref:System.ComponentModel> namespace to the property definition. The following attributes are useful in many scenarios:
5353

5454
- <xref:System.ComponentModel.DisplayNameAttribute>: Specifies the name of the property that appears in the **Properties** window.
@@ -61,7 +61,7 @@ ms.workload:
6161

6262
- <xref:System.ComponentModel.EditorAttribute>: Specifies a custom editor to use to modify the property.
6363

64-
## Compiling the code
64+
## Compile the code
6565
This example requires references to the following assemblies:
6666

6767
- Microsoft.VisualStudio.SharePoint
@@ -74,7 +74,7 @@ ms.workload:
7474
-
7575
- System.ComponentModel.Composition
7676

77-
## Deploying the extension
77+
## Deploy the extension
7878
To deploy the extension, create a [!include[vsprvs](../sharepoint/includes/vsprvs-md.md)] extension (VSIX) package for the assembly and any other files that you want to distribute with the extension. For more information, see [Deploy extensions for the SharePoint tools in Visual Studio](../sharepoint/deploying-extensions-for-the-sharepoint-tools-in-visual-studio.md).
7979

8080
## See also

docs/sharepoint/how-to-add-a-shortcut-menu-item-to-a-custom-sharepoint-project-item-type.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ ms.workload:
3939

4040
This example uses the SharePoint project service to write the message to the **Output** window. For more information, see [Use the SharePoint project service](../sharepoint/using-the-sharepoint-project-service.md).
4141

42-
## Compiling the code
42+
## Compile the code
4343
This example requires a class library project with references to the following assemblies:
4444

4545
- Microsoft.VisualStudio.SharePoint
4646

4747
- System.ComponentModel.Composition
4848

49-
## Deploying the project item
49+
## Deploy the project item
5050
To enable other developers to use your project item, create a project template or a project item template. For more information, see [Create item templates and project templates for SharePoint project items](../sharepoint/creating-item-templates-and-project-templates-for-sharepoint-project-items.md).
5151

5252
To deploy the project item, create a [!include[vsprvs](../sharepoint/includes/vsprvs-md.md)] extension (VSIX) package for the assembly, the template, and any other files that you want to distribute with the project item. For more information, see [Deploy extensions for the SharePoint tools in Visual Studio](../sharepoint/deploying-extensions-for-the-sharepoint-tools-in-visual-studio.md).

docs/sharepoint/how-to-add-a-shortcut-menu-item-to-a-sharepoint-project-item-extension.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ ms.workload:
3939

4040
This example uses the SharePoint project service to write the message to the **Output** window. For more information, see [Use the SharePoint project service](../sharepoint/using-the-sharepoint-project-service.md).
4141

42-
## Compiling the code
42+
## Compile the code
4343
This example requires a class library project with references to the following assemblies:
4444

4545
- Microsoft.VisualStudio.SharePoint
4646

4747
- System.ComponentModel.Composition
4848

49-
## Deploying the extension
49+
## Deploy the extension
5050
To deploy the extension, create a [!include[vsprvs](../sharepoint/includes/vsprvs-md.md)] extension (VSIX) package for the assembly and any other files that you want to distribute with the extension. For more information, see [Deploy extensions for the SharePoint tools in Visual Studio](../sharepoint/deploying-extensions-for-the-sharepoint-tools-in-visual-studio.md).
5151

5252
## See also

docs/sharepoint/how-to-add-a-shortcut-menu-item-to-sharepoint-projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ ms.workload:
3737
[!code-csharp[SPExtensibility.ProjectExtension.Menu#1](../sharepoint/codesnippet/CSharp/projectmenu/extension/projectitemextensionmenu.cs#1)]
3838
[!code-vb[SPExtensibility.ProjectExtension.Menu#1](../sharepoint/codesnippet/VisualBasic/projectmenu/extension/projectitemextensionmenu.vb#1)]
3939

40-
## Compiling the code
40+
## Compile the code
4141
This example requires a class library project with references to the following assemblies:
4242

4343
- Microsoft.VisualStudio.SharePoint
4444
-
4545
- System.ComponentModel.Composition
4646

47-
## Deploying the extension
47+
## Deploy the extension
4848
To deploy the extension, create a [!include[vsprvs](../sharepoint/includes/vsprvs-md.md)] extension (VSIX) package for the assembly and any other files that you want to distribute with the extension. For more information, see [Deploy extensions for the SharePoint tools in Visual Studio](../sharepoint/deploying-extensions-for-the-sharepoint-tools-in-visual-studio.md).
4949

5050
## See also

docs/sharepoint/how-to-add-and-remove-additional-assemblies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ms.workload:
2525

2626
You can also add and change the safe controls and class resource files associated with the assemblies.
2727

28-
## Adding additional assemblies, safe controls, and class resources
28+
## Add additional assemblies, safe controls, and class resources
2929
You can add additional assemblies into the SharePoint solution package. Additional assemblies in a sandboxed solution deploy to the global assembly cache, but SharePoint project items in a sandboxed solution are added to the content database. You can also add safe controls and class resources to these additional assemblies. For more information about safe controls, see [Providing Packaging and Deployment Information in Project Items](../sharepoint/providing-packaging-and-deployment-information-in-project-items.md) or "Creating a SafeControl Entry" in [Deploying Web Parts in SharePoint Foundation](http://go.microsoft.com/fwlink/?LinkId=245505).
3030

3131
#### To add an existing assembly
@@ -78,7 +78,7 @@ ms.workload:
7878

7979
3. In the **File Name** column, choose the ellipsis (![ASP.NET Mobile Designer ellipse](../sharepoint/media/mwellipsis.gif "ASP.NET Mobile Designer ellipse")), and choose the class resource that you want to add.
8080

81-
## Deleting custom assemblies
81+
## Delete custom assemblies
8282
You can delete assemblies from a SharePoint package, or delete safe controls and class resources from existing assemblies.
8383

8484
#### To delete an existing assembly

docs/sharepoint/how-to-add-and-remove-feature-dependencies.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ms.workload:
2424
# How to: Add and remove feature dependencies
2525
Your SharePoint Feature may depend on other Features for functionality or data. In these cases, you can mark these other Features as dependencies for your Feature. This way, the SharePoint server ensures that dependent Features are activated before your Feature is activated.
2626

27-
## Adding dependencies
27+
## Add dependencies
2828
You can add other Features in your solution as dependencies. This way, you can make sure that required Features are installed and activated before your feature is installed.
2929

3030
#### To add a dependency on a feature in the solution
@@ -35,7 +35,7 @@ ms.workload:
3535

3636
You can add more than one feature by choosing multiple titles while choosing the **Ctrl** key.
3737

38-
## Adding custom dependencies
38+
## Addi custom dependencies
3939
You can add Features that are already deployed on a SharePoint server as a dependency. This way, the SharePoint activation process checks to make sure that all dependent Features are activated before your Feature is installed.
4040

4141
#### To add a dependency by the feature ID
@@ -46,7 +46,7 @@ ms.workload:
4646

4747
3. In the **Feature ID** text box, enter the GUID for the Feature that you want to mark as an activation dependency, and then choose the **Add** button.
4848

49-
## Editing custom dependencies
49+
## Edit custom dependencies
5050
You can edit custom dependencies that you added previously. However, dependent Features that are in your solution can only be removed, not edited.
5151

5252
#### To change a dependency on a feature in the solution
@@ -57,7 +57,7 @@ ms.workload:
5757

5858
3. In the **Edit Custom Feature Activation Dependency** dialog box, change the title, Feature ID, or description, and then choose the **Submit** button.
5959

60-
## Removing dependencies
60+
## Remove dependencies
6161

6262
#### To remove a dependency on a feature in the solution
6363

docs/sharepoint/how-to-add-and-remove-features-and-items-to-a-package-by-using-the-package-designer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ms.workload:
2525

2626
Alternatively, you can use the Packaging Explorer to add and remove SharePoint project items. You can also view and change the hierarchy of the SharePoint project items and Features that are put into the package (.wsp). For more information, see [How to: Add and remove features and items to a Package by using the Packaging Explorer](../sharepoint/how-to-add-and-remove-features-and-items-to-a-package-by-using-the-packaging-explorer.md).
2727

28-
## Adding features to a SharePoint package
28+
## Add features to a SharePoint package
2929
You can use the Package Designer to add Features to a SharePoint package.
3030

3131
#### To add SharePoint features with the package designer
@@ -46,7 +46,7 @@ ms.workload:
4646

4747
The SharePoint Project Items and Features appear in the **Items in the Package** list.
4848

49-
## Removing Features from a SharePoint Package
49+
## Remove Features from a SharePoint Package
5050
You can use the Package Designer to remove Features to a SharePoint package.
5151

5252
#### To remove SharePoint features with the package designer

docs/sharepoint/how-to-add-and-remove-features-and-items-to-a-package-by-using-the-packaging-explorer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ms.workload:
2525

2626
Alternatively, you can use the Packaging Designer to view and re-order the Features to change the activation order. For more information, see [How to: Add and remove features and items to a package by using the Package Designer](../sharepoint/how-to-add-and-remove-features-and-items-to-a-package-by-using-the-package-designer.md).
2727

28-
## Opening the Packaging Explorer
28+
## Open the Packaging Explorer
2929
You can use the following procedure to open the Packaging Explorer, if your Visual Studio solution has at least one SharePoint project. Alternatively, the Packaging Explorer opens automatically when you view a Feature or package designer. After you close all Feature and package designers, the Packaging Explorer also closes.
3030

3131
#### To open the Packaging Explorer
@@ -52,7 +52,7 @@ ms.workload:
5252
> [!NOTE]
5353
> Use this procedure if you have more than one SharePoint project in your solution.
5454
55-
## Validating a feature or package
55+
## Validate a feature or package
5656
You can identify potential problems in the SharePoint Features and packages by validating the files. Warnings and errors are displayed in the Output window and Error List window.
5757

5858
#### To validate a SharePoint feature or package

docs/sharepoint/how-to-add-and-remove-items-to-sharepoint-features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ms.workload:
2323
# How to: Add and remove items to SharePoint features
2424
When you create a SharePoint solution, Visual Studio adds the default SharePoint project items to your Feature. Before deployment, you can add and remove SharePoint project items to modify the SharePoint Feature.
2525

26-
## Adding SharePoint project items to a feature
26+
## Add SharePoint project items to a feature
2727

2828
#### To add SharePoint project items with the Feature Designer
2929

@@ -41,7 +41,7 @@ ms.workload:
4141

4242
The SharePoint Project Items appear in the **Items in the Feature** list.
4343

44-
## Removing SharePoint project items from a feature
44+
## Remove SharePoint project items from a feature
4545

4646
#### To remove SharePoint items with the Feature Designer
4747

0 commit comments

Comments
 (0)