public
Description: A sample VS2010 extension that renders C# some keywords in a different color.
Homepage:
Clone URL: git://github.com/tomasr/KeywordClassifier.git
commit  ab6c533aba15bc5f737ef3568e73bb47fbb6b211
tree    d4d039934eae5edd6d412a2f7d81e726a4766c40
parent  2ff7a661c721e3065b345b72de21465a10c9035f
KeywordClassifier / extension.vsixmanifest
100644 23 lines (22 sloc) 1.128 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010">
   <Identifier ID="KeywordClassifier.Winterdom.a887584b-9f87-4354-beec-8a751e5f925a">
      <Name>Keyword Classifier</Name>
      <Author>Tomas Restrepo</Author>
      <Version>1.0</Version>
      <Description>Sample classifier extension for the Visual Studio Editor that hightlights C#/C++ flow control keywords and LINQ operators using a different formatting than other keywords.</Description>
      <Locale>1033</Locale>
      <MoreInfoURL>http://winterdom.com/</MoreInfoURL>
      <Icon>Classifier_small.png</Icon>
      <PreviewImage>Classifier_large.png</PreviewImage>
      <SupportedVSEdition version="10.0">
         <Edition>VST_All</Edition>
         <Edition>Pro</Edition>
      </SupportedVSEdition>
      <SupportedFrameworkRuntimeEdition minversion="4.0" maxversion="4.0" />
   </Identifier>
   <References />
   <Content>
      <MEFComponent>KeywordClassifier.dll</MEFComponent>
   </Content>
</VSIX>