Skip to content

Commit 8f975c0

Browse files
Merge pull request #14166 from MicrosoftDocs/ghogen-patch-269553
Use approved GUID and remove extra period
2 parents 6b14474 + bbc2ecb commit 8f975c0

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/extensibility/how-to-create-an-atom-feed-for-a-private-gallery.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Create an Atom Feed for a Private Gallery'
33
description: You can create an Atom (RSS) feed to an intranet location that contains extensions and add the feed to Extensions and Updates as a private gallery.
4-
ms.date: 11/04/2016
4+
ms.date: 8/5/2025
55
ms.topic: how-to
66
helpviewer_keywords:
77
- Atom feed, VSIX private galleries
@@ -16,13 +16,13 @@ ms.subservice: extensibility-integration
1616
You can create an Atom (RSS) feed to an intranet location that contains extensions and add the feed to **Extensions and Updates** as a private gallery. For more information, see [Private galleries](../extensibility/private-galleries.md).
1717

1818
## Create an Atom feed
19-
To create an Atom feed as a private gallery, you first gather your extensions (*.vsix* files) into a folder. You can organize them into subfolders if you want. You will also need the following resources:
19+
To create an Atom feed as a private gallery, you first gather your extensions (`.vsix` files) into a folder. You can organize them into subfolders if you want. You also need the following resources:
2020

2121
- An *atom.xml* file that makes the extensions available as a private gallery. For information about how to connect the *atom.xml* file to **Extensions and Updates**, see [Private galleries](../extensibility/private-galleries.md).
2222

23-
- A folder that contains any image files that were extracted from the extensions (for example, screen shots). The *atom.xml* file contains relative links to these images so that they are available in **Extensions and Updates**.
23+
- A folder that contains any image files that were extracted from the extensions (for example, screen shots). The *atom.xml* file contains relative links to these images so that they're available in **Extensions and Updates**.
2424

25-
For example, assume that you have gathered the following two extensions into a folder:
25+
For example, assume that you've gathered the following two extensions into a folder:
2626

2727
- *Template_Wizard_239.vsix*, which is an empty VSIX project template.
2828

@@ -37,19 +37,19 @@ You can create an Atom (RSS) feed to an intranet location that contains extensio
3737
<id>uuid:bcecded5-97c8-4d24-96f1-7d9e16652433;id=1</id>
3838
<updated>2011-04-14T21:25:48Z</updated>
3939
<entry>
40-
<id>SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa</id>
40+
<id>SelectionHighlight.aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb</id>
4141
<title type="text">Highlight all occurrences of selected word</title>
4242
<summary type="text">This extends the editor to highlight ....</summary>
4343
<published>2011-04-14T14:24:51-07:00</published>
4444
<updated>2011-04-14T14:24:22-07:00</updated>
4545
<author>
4646
<name>Microsoft</name>
4747
</author>
48-
<link rel="icon" href="VSIXImages/SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa_Icon_SelectionHighlightIcon.jpg" />
49-
<link rel="previewimage" href="VSIXImages/SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa_PreviewImage_SelectionHighlight.jpg" />
48+
<link rel="icon" href="VSIXImages/SelectionHighlight.aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb_Icon_SelectionHighlightIcon.jpg" />
49+
<link rel="previewimage" href="VSIXImages/SelectionHighlight.aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb_PreviewImage_SelectionHighlight.jpg" />
5050
<content type="application/octet-stream" src="SelectionHighlight.vsix" />
5151
<Vsix xmlns="http://schemas.microsoft.com/developer/vsx-syndication-schema/2010" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
52-
<Id>SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa</Id>
52+
<Id>SelectionHighlight.aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb</Id>
5353
<Version>1.31</Version>
5454
<References />
5555
<Rating xsi:nil="true" />
@@ -64,7 +64,7 @@ You can create an Atom (RSS) feed to an intranet location that contains extensio
6464
</feed>
6565
```
6666

67-
Notice that the two link tags refer to screen shots in the generated folder of images.
67+
Notice that the two link tags refer to screenshots in the generated folder of images.
6868

6969
## Related content
7070
- [Private galleries](../extensibility/private-galleries.md)

0 commit comments

Comments
 (0)