forked from NoahRic/Spellchecker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsource.extension.vsixmanifest
28 lines (28 loc) · 1.16 KB
/
source.extension.vsixmanifest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010">
<Identifier Id="SpellChecker">
<Name>Spell Checker</Name>
<Author>Roman Golovin and Noah Richards</Author>
<Version>2.0</Version>
<Description>An editor extension that checks the spelling of comments, strings, and plaintext as you type.</Description>
<Locale>1033</Locale>
<MoreInfoUrl>http://blogs.msdn.com/noahric</MoreInfoUrl>
<License>ms-pl.txt</License>
<Icon>spell-icon.png</Icon>
<PreviewImage>spell-screenshot.png</PreviewImage>
<InstalledByMsi>false</InstalledByMsi>
<SupportedProducts>
<VisualStudio Version="10.0">
<Edition>Ultimate</Edition>
<Edition>Premium</Edition>
<Edition>Pro</Edition>
</VisualStudio>
</SupportedProducts>
<SupportedFrameworkRuntimeEdition MinVersion="4.0" MaxVersion="4.0" />
<SystemComponent>false</SystemComponent>
</Identifier>
<References />
<Content>
<MefComponent>SpellChecker.dll</MefComponent>
</Content>
</Vsix>