Reputation: 1
I am experiencing problems creating facilities winforms applications in Visual Studio 2013.
On some computers (Windows 8), the deploy reports that:. "It is not possible to install or run this application The application requires a set of modules (assembly) Microsoft.VisualStudio.DebuggerVisualizers Version 10.0.0.0 be installed in the GAC ... "
How do I handle this problem?
Upvotes: 0
Views: 120
Reputation: 5314
If you set the 'CopyLocal' property of the reference file to 'true', it should copy the .dll into the output path of the project, and include it when you deploy.
Upvotes: 1