Using Chirpy in VS2012?

1.1k Views Asked by At

I'm trying to set Chirpy up - we are moving from MS Visual Studio 2010 to 2012. I know that it should end up in the Addins folder, but I do not see it listed under tools -> addins. Any thoughts?

We're using an older version (for Github, no one wants to upgrade so that we don't have Git issues) - so it may not be as simple as this.

Thanks!

2

There are 2 best solutions below

3
Filipe Albuquerque On BEST ANSWER

You have to edit the file C:\Users{USER}\Documents\Visual Studio 2012\Addins\Zippy.Addin

Change the 10.0 to 11.0, after that it should work fine.

0
Bart Schouten On

There are two places where you should edit:

    <HostApplication>
        <Name>Microsoft Visual Studio Macros</Name>
        <Version>XX.0</Version>
    </HostApplication>
    <HostApplication>
        <Name>Microsoft Visual Studio</Name>
        <Version>XX.0</Version>
    </HostApplication>

Change the XX.0:

If you have VS2012 then put in: 11.0 If you have VS2013 then put in: 12.0

Restart VS en the add-in will be there ;)