Visual Studio application no longer allows debugging

My visual studio addin project will no longer work and run in the debugger. When you try to run this message, the following message appears:

A project with an Output Type of CLass Library cannot be stared directly.

It worked about 5 months ago, just fine, but I opened it and started it for the first time since then and received this message. It was used to start another instance of Visual Studio with the add installed through the proxy addin file.

How do I set up a project or solution so that it behaves like this again? Do I need to manually configure the solution file project?

+3
source share
2 answers

. , Visual Studio Start External Program Command line arguments.

:

[Visual Studio path]\Common7\IDE\devenv.exe

:

/resetaddin [Name of addin].connect

alt text

+8

Visual Studio 2012

Visual Studio 2012 .

:

[Visual Studio path]\Common7\IDE\devenv.exe

:

/rootsuffix Exp

+1

Source: https://habr.com/ru/post/1780546/


All Articles