How to make Reflector an addin for Visual Studios? - visual-studio-2005

I downloaded Reflector.Net and it's an .Exe outside VS. I remember (last year) when I downloaded it, it was an Addin to VS. How can I make it back to an Addin?

Reflector Add-In Lives Again ;-)
P.S. The reflector add-in that made Reflector an Visual Studio add-in is discontinued.

Related

Can I or can I not use addin manager in visual studio 2017?

So I have an old Rhapsody addin (RhaspodyAddin.AddIn) that I can't convert to VSIX package file because its 3rd party.
Looking at the online docs: here it suggests that I need to add the addin in the addin manager. But the addin Manager is gone in msvs2017 (I am converting a project from MSVS2012 which does have addin manager).
It says that addins are deprecated since 2013.
So does anyone know what I need to do to use this older .addin style addin or if it is even possible anymore in MSVS2017?
AddIns are no longer supported in Visual Studio, you must ask the vender for a Vspackage based extension (using the .vsix file format)

Missing Outlook 2013 Add-in

I am working on making a Outlook Add-in for Outlook 2013. The issue is, I use Visual Studio 2010. I did some googling and found that I need the Developer Tool Kit and it lead me here. I installed the tool kit, but I am still not seeing any new Templates. What am I doing wrong, or what can I do to get that Outlook Add-in?
Thanks in advance!
Unfortunately VSTO allows creating version-specific add-ins. VSTO 2010 (Visual Studio 2010 Tools for Office Runtime) is shipped with Visual Studio 2010 Professional edition or above. It supports creation and editing of document- and application-level add-ins for Office 2007 and Office 2010. You need to use later Visual Studio versions for creating COM add-ins for Office 2013. However, you can run solutions in Office 2013 that were created in earlier Visual Studio versions, see Running Solutions in Different Versions of Microsoft Office for more information.

Can't integrate Visual Studio 2013 with an add-in

I have an add-in that works with Visual Studio 2008, 2010 and 2012. All I have to do is to copy some files to c:\users\username\documents\Addins folder, and then check the relevant line in VS Add-in Manager.
I've just installed Visual Studio 2013, and I'm trying to integrate it with that add-in. It does not work. I googled and it says something about changes to add-ins... new VS packages... I lost it.... Just want to make it work with no major changes. Do you know how to?
Thank you
Make sure your .addin file lists support for VS 2013:
<HostApplication>
<Name>Microsoft Visual Studio</Name>
<Version>12.0</Version>
</HostApplication>
And the directory to copy files is usually documents\Visual Studio 2013\Addins.
It would be best to convert it to a VSPackage as AddIns are depreciated in VS 2013. As with any other future updates from MS you wouldnt want that to break your addin each time would be the risk.
http://msdn.microsoft.com/en-us/library/dn246938.aspx

Where can I get add-ins for visual studio express?

There is countless add-ins on http://visualstudiogallery.msdn.microsoft.com/ but it seems they are all not for visual studio express (I use visual studio 2010 C# express in my laptop).
But extension manager does provide links to the site so I wonder how can I add-ins for VS express in the site?
Visual Studio Express does not support add-ins.
If you are student, you may be able to get full version (Professional) from either MSDN AA or from DreamSpark. Otherwise you are out of luck (unless you purchase it yourself).
EDIT: You may also try SharpDevelop. It is open-source alternative to Visual Studio. It does not support Visual Studio extensions, but it does support its own extensions. And it may have the features you are looking for.
EDIT Dec 2014: There is now a Visual Studio Community Edition which is free for noncommercial and some commerical uses and does support add-ins!

Creating a Visual Studio 2010 add-in with a user-interface?

How can I create a Visual Studio 2010 add-in with a user-interface? I want my add-in to have a window that can be pinned, just like the "Output", "Task list", "Error list" and all the other extensive windows in Visual Studio.
Where can I find documentation on add-ins with such user-interfaces to get me started? I can only find documentation on the actual coding.
Although there is some Microsoft documentation for writing add-ins, I recommend you start at Carlos Quintero's Resources about Visual Studio .NET extensibility. There are many how-to articles and links to a variety of documentation.
I figured out that what I needed was Visual Studio 2010 packages.
Fear not, these packages can be made in managed languages too (C# and Visual Basic). However, they require the Visual Studio 2010 SDK, which I didn't have installed.
It's very easy to make, and is done without hassle! Furthermore, it's cool, since the UI of the addins allow WPF!

Resources