2

I've installed the protobuf-net ProtoBufTool custom tool into visual studio to automatically generate .cs file from protocol buffers files. I want to be able to build my project using msbuild for continuous integration and have moved over to using a python script to generate the files.

So how do you remove a custom tool from visual studio?

I've removed it from Documents\Visual Studio 2010\Templates\ItemTemplates\Visual C# which is where I installed it. I've searched for it in the registry and the GAC. I've tried removing it from the file properties in VS and it keeps coming back. I don't want to nuke my machine from orbit!

Edit: I've found the correct registry key now to disable the tool (see Clearing Custom Tool file property in Visual Studio 2010) but I'd still be interested to know if there's a better workflow for managing custom tools

Community
  • 1
  • 1
Ben Ford
  • 2,087
  • 21
  • 26

3 Answers3

1

May be you can try:

  • Tools -> Add-in Managers
  • Tools -> Extension Manager
wyz
  • 761
  • 3
  • 14
0

"Tools -> External tools" menu can help you.

Anton
  • 9,682
  • 11
  • 38
  • 68
0

As Marc pointed out there's a perfectly good uninstaller for just this situation.

Ben Ford
  • 2,087
  • 21
  • 26