Visual Studio 2015 does not find System.Windows.Interactivity - visual-studio

Last week I've updated my windows from 8.1 to 10 and my Visual Studio from 2013 Ultimate to Enterprise 2015.
Yesterday I've implemented Load Tests via a Web Performance and Load Test Project. At this point I'd like to add an ILoadTestPlugin via the "Add Load Test Plug-In" option.
This does not work, as Visual Studio tells me it cannot find System.Windows.Interactivity assembly.
As this also happens in my Visual Studio 2013 installation, I think the problem is not Visual Studio 2015 related.
As the error comes from the Visual Studio IDE as an Visual Studio internal error, this is not a duplicate of "how to add System.Windows.Interactivity to my solution!

Related

Is there a Visual Studio Installer Project type for Visual Studio 2019?

I am trying to build a VS 2017 solution which includes a Visual Studio Installer Project with the just released Visual Studio Pro 2019. Of course, when I tried to open the solution I got an error because there was not Visual Studio Installer project type in VS 2019. And, I cant find a place to load it from.
How do I add a Visual Studio Installer Project type in the released version of VS 2019?
Install the addin in Visual Studio 2019:
This extension provides the same functionality that currently exists
in Visual Studio 2015 for Visual Studio Installer projects. To use
this extension, you can either open the Extensions and Updates dialog,
select the online node, and search for "Visual Studio Installer
Projects Extension," or you can download directly from this page.
This extension is designed to work with Visual Studio 2017 and
Visual Studio 2019.

Runtime error when rebuild visual studio 2013 project with visual studio 2015

I have a C++ project,run fine when using visual studio 2013.
When use visual studio 2015, project is still build fine, but when running error: "the application was unable to start correctly 0xc00007b".
I know this is a very general question, any ideas? What should i check?

Visual Studio Installer Project Extension running in VS 2017 Pro thinks it's running in VS 2013 Pro

Got a big problem with the Visual Studio 2017 Installer Projects Extension for Visual Studio 2017 Professional. I added a Visual Studio Installer Setup project to a solution and set it up the way it's basically supposed to be done (Primary Output in the Application Folder and an icon in the Desktop Folder is all that was needed). Then I right-clicked on the Setup project, clicked "Build" and then I get this:
Please wait while Windows configures Microsoft Visual Studio Professional 2013.
And then it stalls indefinitely. I have to close Visual Studio in Task Manager to stop everything. What's more, I'm Visual Studio Professional 2017, not 2013. I used to have Visual Studio 2013 Ultimate, but I uninstalled it. What could possibly be causing the confusion?
It appears that you have also got Visual Studio 2013 installed, and that there is as conflict between 2013 and 2017 because that message is a Windows Installer repair of VS 2013. Something is happening during your build that requires the VS 2013 installation to be repaired. The Windows Event Log (Application) will have an MsiInstaller log entry saying which component appears to be broken. If you post that information there may be a clue to the problem. If you (for example) have manually removed anything that may belong to the VS 2013 installed product then that would cause the same kind of problem.
You have this similar problem:
Rebuilding Visual Studio Installer project, launches Visual Studio 2013 seetup
Visual Studio 2015 msi build initiates another installation
When you say it stalls indefinitely, I would expect it to ask for the Visual Studio 2013 install image so that it can repair it. If you go to Programs&Features and manually repair VS 2013 it might fix the problem.
I also had Visual Studio 2013 installed as mentioned by #PhilDW.
Navigating to Event Viewer → Windows Logs → Application I found loads of warnings:
Detection of product '{9C593464-7F2F-37B3-89F8-7E894E3B09EA}', feature 'Visual_Studio_Professional_x86_enu', component '{E3FF99AA-78B9-4A06-8A74-869E9F65E1FE}' failed. The resource 'C:\WINDOWS\Microsoft.NET\Framework\URTInstallPath_GAC\' does not exist.
The key here being that the folder C:\WINDOWS\Microsoft.NET\Framework\URTInstallPath_GAC\ did not exist thanks to an answer in the first link provided by #PhilDW.
Created the missing final folder URTInstallPath_GAC in the path mentioned and the installers now build really fast whereas before they used to take forever (sometimes literally!).

Windows Phone 7 solution can no longer be opened by Visual Studio 2012 after opening it in Visual Studio 2013

I was developing a solution for Windows Phone 7 on my system using Visual Studio 2012. I installed Visual Studio 2013 and opened the solution with it. I found that Visual Studio 2013 won't let me build a Windows Phone 7 application, so I wanted to re-open the solution in Visual Studio 2012.
Now Visual Studio 2012 shows me the following error message:
This project is incompatible with the current edition of Visual Studio
What do I need to do to 'undo' the changes made to my project in the upgrade process so that I can continue working in the older version of Visual Studio to finish my project?
Visual Studio 2013 upgrades the project to the Windows Phone 8 SDK, and that is not compatible with Visual Studio 2012. If you are using a form of Source Control (Visual Studio Online, GitHub) you should roll back to the previous version. If not, Visual Studio (by default) creates a _backup folder under your solution where it will backup any files modified in the conversion process. Use these to return the project to its pre-visualstudio-2013-state.

Visual Studio 2012 Website Does Work Properly in Visual Studio 2012

I originally created an ASP.NET site in Visual Studio 2010 a few years ago and it went through the VS 2010 SP1 update as well. This meant that Visual Studio 2012 opened the solution without performing a one time upgrade.
The issue I am having is that the built-in browser selector in Visual Studio 2012 is not available for this project and the settings only let you use the default browser.
When I looked in the .SLN file, the version line indicates Visual Studio 2012 (i.e. # Visual Studio 2012) and no other setting in there appears to have anything to do with this limitation.
Has anybody had this issue and, if so, can you please let me know how your overcame it?
Thanks!
You're going to have to upgrade your project to allow it to make use of Visual Studio 2012 only features. Note, if you do this you will no longer be able to open your project in earlier versions of VS.
http://msdn.microsoft.com/en-us/library/hh266747%28VS.110%29.aspx
For VS 2010 , you can install WoVS Default Browser Switcher extension
Also a related question Change default browser in Visual Studio 2010 RC

Resources