<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,4 @@
 using System.ComponentModel.Composition;
-using Microsoft.VisualStudio.ApplicationModel.Environments;
 using Microsoft.VisualStudio.Text.Editor;
 using Microsoft.VisualStudio.Utilities;
 using Microsoft.VisualStudio.Text.Classification;
@@ -37,11 +36,11 @@ namespace Winterdom.VisualStudio.Extensions.Text {
 
       [Export(typeof(AdornmentLayerDefinition))]
       [Name(LineHighlight.NAME)]
-      [Order(Before = DefaultAdornmentLayers.Selection)]
+      [Order(Before = &quot;Selection&quot;)]
       [TextViewRole(PredefinedTextViewRoles.Document)]
       public AdornmentLayerDefinition editorAdornmentLayer = null;
 
-      public void TextViewCreated(IWpfTextView textView, IEnvironment context) {
+      public void TextViewCreated(IWpfTextView textView) {
          IClassificationType classification =
             ClassificationRegistry.GetClassificationType(LineHighlight.NAME);
          IClassificationFormatMap map =</diff>
      <filename>AdornmentFactory.cs</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,7 @@
     &lt;OutputType&gt;Library&lt;/OutputType&gt;
     &lt;AppDesignerFolder&gt;Properties&lt;/AppDesignerFolder&gt;
     &lt;RootNamespace&gt;Winterdom.VisualStudio.Extensions.Text&lt;/RootNamespace&gt;
-    &lt;AssemblyName&gt;LineAdorments&lt;/AssemblyName&gt;
+    &lt;AssemblyName&gt;LineAdornments&lt;/AssemblyName&gt;
     &lt;TargetFrameworkVersion&gt;v4.0&lt;/TargetFrameworkVersion&gt;
     &lt;FileAlignment&gt;512&lt;/FileAlignment&gt;
     &lt;GeneratePkgDefFile&gt;false&lt;/GeneratePkgDefFile&gt;
@@ -36,9 +36,6 @@
     &lt;Reference Include=&quot;Microsoft.VisualStudio.CoreUtility&quot;&gt;
       &lt;Private&gt;False&lt;/Private&gt;
     &lt;/Reference&gt;
-    &lt;Reference Include=&quot;Microsoft.VisualStudio.ExtensibilityHosting&quot;&gt;
-      &lt;Private&gt;False&lt;/Private&gt;
-    &lt;/Reference&gt;
     &lt;Reference Include=&quot;Microsoft.VisualStudio.Text.Data&quot;&gt;
       &lt;Private&gt;False&lt;/Private&gt;
     &lt;/Reference&gt;
@@ -59,6 +56,7 @@
     &lt;Reference Include=&quot;System.Core&quot; /&gt;
     &lt;Reference Include=&quot;System.Data.DataSetExtensions&quot; /&gt;
     &lt;Reference Include=&quot;System.Data&quot; /&gt;
+    &lt;Reference Include=&quot;System.Xaml&quot; /&gt;
     &lt;Reference Include=&quot;System.Xml&quot; /&gt;
     &lt;Reference Include=&quot;WindowsBase&quot; /&gt;
   &lt;/ItemGroup&gt;
@@ -68,6 +66,7 @@
     &lt;Compile Include=&quot;LineHighlight.cs&quot; /&gt;
   &lt;/ItemGroup&gt;
   &lt;ItemGroup&gt;
+    &lt;None Include=&quot;source.extension.vsixmanifest&quot; /&gt;
     &lt;Content Include=&quot;TextAdornment_large.png&quot;&gt;
       &lt;CopyToOutputDirectory&gt;Always&lt;/CopyToOutputDirectory&gt;
     &lt;/Content&gt;
@@ -75,9 +74,6 @@
       &lt;CopyToOutputDirectory&gt;Always&lt;/CopyToOutputDirectory&gt;
     &lt;/Content&gt;
   &lt;/ItemGroup&gt;
-  &lt;ItemGroup&gt;
-    &lt;None Include=&quot;extension.vsixmanifest&quot; /&gt;
-  &lt;/ItemGroup&gt;
   &lt;Import Project=&quot;$(MSBuildToolsPath)\Microsoft.CSharp.targets&quot; /&gt;
   &lt;Import Project=&quot;$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\VSSDK\Microsoft.VsSDK.targets&quot; /&gt;
   &lt;!-- To modify your build process, add your task inside one of the targets below and uncomment it. </diff>
      <filename>LineAdornments.csproj</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,8 @@
 &#65279;using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
-using Microsoft.VisualStudio.ExtensibilityHosting;
 
 
-//Select the right catalog for MEF to pick up the extension
-[assembly: VsCatalogName(&quot;Microsoft.VisualStudio.Editor&quot;)]
-
 // General Information about an assembly is controlled through the following 
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.</diff>
      <filename>Properties/AssemblyInfo.cs</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,24 @@
 &#65279;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
-&lt;VSIX xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns=&quot;http://schemas.microsoft.com/developer/vsx-schema/2010&quot;&gt;
-   &lt;Identifier ID=&quot;LineAdornments.Winterdom.c9fd1954-9fea-444d-ac36-29705c68775b&quot;&gt;
-      &lt;Name&gt;LineAdorments&lt;/Name&gt;
+&lt;Vsix Version=&quot;1.0.0&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns=&quot;http://schemas.microsoft.com/developer/vsx-schema/2010&quot;&gt;
+   &lt;Identifier Id=&quot;LineAdornments.Winterdom.c9fd1954-9fea-444d-ac36-29705c68775b&quot;&gt;
+      &lt;Name&gt;LineAdornments&lt;/Name&gt;
       &lt;Author&gt;Tomas Restrepo&lt;/Author&gt;
       &lt;Version&gt;1.0&lt;/Version&gt;
       &lt;Description&gt;A sample Visual Studio 2010 extension that highlights the current line of text in the editor.&lt;/Description&gt;
       &lt;Locale&gt;1033&lt;/Locale&gt;
+      &lt;MoreInfoUrl&gt;http://winterdom.com/&lt;/MoreInfoUrl&gt;
       &lt;Icon&gt;TextAdornment_small.png&lt;/Icon&gt;
       &lt;PreviewImage&gt;TextAdornment_large.png&lt;/PreviewImage&gt;
-      &lt;SupportedVSEdition version=&quot;10.0&quot;&gt;
-         &lt;Edition&gt;VST_All&lt;/Edition&gt;
-         &lt;Edition&gt;Pro&lt;/Edition&gt;
-      &lt;/SupportedVSEdition&gt;
-      &lt;SupportedFrameworkRuntimeEdition minversion=&quot;4.0&quot; maxversion=&quot;4.0&quot; /&gt;
+      &lt;SupportedProducts&gt;
+         &lt;VisualStudio Version=&quot;10.0&quot;&gt;
+            &lt;Edition&gt;VST_All&lt;/Edition&gt;
+            &lt;Edition&gt;Pro&lt;/Edition&gt;
+         &lt;/VisualStudio&gt;
+      &lt;/SupportedProducts&gt;
+      &lt;SupportedFrameworkRuntimeEdition MinVersion=&quot;4.0&quot; MaxVersion=&quot;4.0&quot; /&gt;
    &lt;/Identifier&gt;
    &lt;References /&gt;
    &lt;Content&gt;
-      &lt;MEFComponent&gt;LineAdorments.dll&lt;/MEFComponent&gt;
+      &lt;MefComponent&gt;LineAdornments.dll&lt;/MefComponent&gt;
    &lt;/Content&gt;
-&lt;/VSIX&gt;
+&lt;/Vsix&gt;</diff>
      <filename>source.extension.vsixmanifest</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>14e0acc8484a93c8772e0ffd3d86693da52c6d62</id>
    </parent>
  </parents>
  <author>
    <name>Tomas Restrepo</name>
    <email>tomas@winterdom.com</email>
  </author>
  <url>http://github.com/tomasr/LineAdornments/commit/74a93e9af3afe74fce8b121f59bbacfb7da5062d</url>
  <id>74a93e9af3afe74fce8b121f59bbacfb7da5062d</id>
  <committed-date>2009-10-20T11:48:10-07:00</committed-date>
  <authored-date>2009-10-20T11:48:10-07:00</authored-date>
  <message>Build and works, but left coordinate is off</message>
  <tree>94b0563a85562a2445349b6802e7a5702b10f375</tree>
  <committer>
    <name>Tomas Restrepo</name>
    <email>tomas@winterdom.com</email>
  </committer>
</commit>
