Hello.
After the post yesterday about the car keys in Visual Studio 2013 completion, today via twitter Ramon Ordiales (@ramoneeza) proposed to me another couple of interesting changes for the Publisher of C# at VS2013. One of them was to align the assignments of values “=” in the code editor.
Pulling from memory, and bing.com I remembered the 2012 Productivity Power Tools for Visual Studio 2012, do.Transform this:

therein:

Eye, disabling the options default of “Insert space after…” “in the formatting c#.”
Then I realized by modifying the vsix to see if it might work in Visual Studio 2013. Once unzipped the package, I have modified the manifesto to support VS2013 (lines 19 to 23)
1:
2: <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">
3: <Identifier Id="VSProPack.Microsoft.e7b28bb4-a322-47da-9f4e-0902d8Ba276e">
4: <Name>Productivity Power Tools 2012</Name>
5: <Author>Microsoft</Author>
6: <Version>11.0.60403.00</Version>
7: <Description xml:space="preserve">A set of extensions to Visual Studio 2012 Professional (and above) which improves developer productivity.</Description>
8: <Locale>1033</Locale>
9: <MoreInfoUrl>http://go.microsoft.com/fwlink/?LinkId=271503</MoreInfoUrl>
10: <License>EULA.rtf</License>
11: <Icon>ProPowerTool_Thumb.png</Icon>
12: <PreviewImage>ProPowerTool_Preview.png</PreviewImage>
13: <SupportedProducts>
14: <VisualStudio Version="11.0">
15: <Edition>Ultimate</Edition>
16: <Edition>Premium</Edition>
17: <Edition>Pro</Edition>
18: </VisualStudio>
19: <VisualStudio Version="12.0">
20: <Edition>Ultimate</Edition>
21: <Edition>Premium</Edition>
22: <Edition>Pro</Edition>
23: </VisualStudio>
24: </SupportedProducts>
25: <SupportedFrameworkRuntimeEdition MinVersion="4.0" MaxVersion="4.0" />
26: </Identifier>
The installer of pearls… everything works great-
However what you are after installing it is the least similar to Visual Studio 2013. We will this solution does not work … unless you want to play with fire, although this is subject for another post.
Saludos @ Home
El Bruno

Leave a comment