tomasr / KeywordClassifier

A sample VS2010 extension that renders C# some keywords in a different color.

This URL has Read+Write access

KeywordClassifier / extension.vsixmanifest
100644 22 lines (21 sloc) 1.063 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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="FlowControlClassifier.Winterdom.a887584b-9f87-4354-beec-8a751e5f925a">
      <Name>Flow Control Classifier</Name>
      <Author>Tomas Restrepo</Author>
      <Version>1.0</Version>
      <Description>Sample classifier extension for the Visual Studio Editor that hightlights C# flow control keywords using a different formatting than other keywords.</Description>
      <Locale>1033</Locale>
      <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>FlowControlClassifier.dll</MEFComponent>
   </Content>
</VSIX>