为专用库创建 Atom 源
可以将 Atom (RSS) 源创建到包含扩展的 Intranet 位置,并将源作为专用库添加到扩展和汇报。 有关详细信息,请参阅专用库。
创建 Atom 源
若要创建 Atom 源作为专用库,首先将扩展(.vsix 文件)收集到文件夹中。 如果需要,可以将它们组织到子文件夹中。 还需要以下资源:
一个 atom.xml 文件,它使扩展可用作专用库。 有关如何将 atom.xml 文件连接到扩展和汇报的信息,请参阅专用库。
一个文件夹,其中包含从扩展中提取的任何图像文件(例如屏幕截图)。 atom.xml 文件包含指向这些图像的相对链接,以便它们在扩展和汇报中可用。
例如,假设已将以下两个扩展收集到文件夹中:
Template_Wizard_239.vsix,它是一个空的 VSIX 项目模板。
SelectionHighlight.vsix,它是突出显示所选单词的所有实例的工具。
atom.xml 文件的内容类似于以下示例:
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text" />
<id>uuid:bcecded5-97c8-4d24-96f1-7d9e16652433;id=1</id>
<updated>2011-04-14T21:25:48Z</updated>
<entry>
<id>SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa</id>
<title type="text">Highlight all occurrences of selected word</title>
<summary type="text">This extends the editor to highlight ....</summary>
<published>2011-04-14T14:24:51-07:00</published>
<updated>2011-04-14T14:24:22-07:00</updated>
<author>
<name>Microsoft</name>
</author>
<link rel="icon" href="VSIXImages/SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa_Icon_SelectionHighlightIcon.jpg" />
<link rel="previewimage" href="VSIXImages/SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa_PreviewImage_SelectionHighlight.jpg" />
<content type="application/octet-stream" src="SelectionHighlight.vsix" />
<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">
<Id>SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa</Id>
<Version>1.31</Version>
<References />
<Rating xsi:nil="true" />
<RatingCount xsi:nil="true" />
<DownloadCount xsi:nil="true" />
</Vsix>
</entry>
<entry>
<id>Template_Wizard_239.Microsoft.3b38a7e3-5cbc-4389-a92a-d82tyc2ed592</id>
...
</entry>
</feed>
请注意,这两个链接标记引用生成的图像文件夹中的屏幕截图。