Skip to content

Commit 846f118

Browse files
More acrolinx for manifest-from-resources.md
1 parent f846d42 commit 846f118

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/extensibility/internals/manifest-from-resources.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.subservice: extensibility-integration
1010
---
1111
# Manifest from Resources
1212

13-
The Manifest from Resources tool is a console application that takes a list of image resources (.png or .xaml files) and generates an .imagemanifest file that allows those images to be used with the Visual Studio Image Service. Additionally, this tool can be used to add images to an existing .imagemanifest. This tool is useful for adding high-DPI and theming support for images to a Visual Studio extension. The generated .imagemanifest file should be included in and deployed as a part of a Visual Studio extension (.vsix).
13+
The Manifest from Resources tool is a console application that takes a list of image resources (.png or .xaml files). Using that list, it generates an .imagemanifest file that allows those images to be used with the Visual Studio Image Service. Additionally, this tool can be used to add images to an existing .imagemanifest. This tool is useful for adding high-DPI and theming support for images to a Visual Studio extension. The generated .imagemanifest file should be included in and deployed as a part of a Visual Studio extension (.vsix).
1414

1515
## How to use the tool
1616
**Syntax**
@@ -31,8 +31,8 @@ The Manifest from Resources tool is a console application that takes a list of i
3131
|/newGuids|Setting this flag tells the tool to create a new value for the images' GUID symbol instead of merging the one from the existing manifest.|Optional|
3232
|/newIds|Setting this flag tells the tool to create new ID symbol values for every image instead of merging values from the existing manifest.|Optional|
3333
|/noLogo|Setting this flag stops product and copyright information from printing.|Optional|
34-
|/?|Print out Help information.|Optional|
35-
|/help|Print out Help information.|Optional|
34+
|/?|Prints Help information.|Optional|
35+
|/help|Prints out Help information.|Optional|
3636

3737
**Examples**
3838

@@ -54,14 +54,14 @@ The Manifest from Resources tool is a console application that takes a list of i
5454

5555
- Running this tool on the same image strip multiple times for the same .imagemanifest will result in duplicate manifest entries. This outcome is because the tool attempts to split the image strip into standalone images and then add those to the existing manifest.
5656

57-
- Merging (omitting /newGuids or /newIds) should only be done for tool-generated manifests. Manifests that have been customized or generated through other means might not be merged correctly.
57+
- Merging (omitting /newGuids or /newIds) should only be done for tool-generated manifests. Manifests that are customized or generated through other means might not be merged correctly.
5858

5959
- Manifests generated for native assemblies might need to be hand-edited after generation to make the ID symbols match the resource IDs from the native assembly's .rc file.
6060

6161
## Sample Output
6262
**Simple image manifest**
6363

64-
An image manifest will resemble this .xml file:
64+
An image manifest resembles this .xml file:
6565

6666
```xml
6767
<?xml version="1.0" encoding="utf-8"?>

0 commit comments

Comments
 (0)