Reputation: 3552
I've recently upgraded my OS to Windows 10
. I have a very basic Silverlight 5
application which gives me Unable to start Debugging. The Silverlight Developer Runtime Not Installed. Please Installed a matching version
error in VS 2010
whenever I am trying to run the project.
I have :
Silverlight 5
in web project.Silverlight SDK
, Silverlight5_Tools with SP1 installed
& Silverlight Runtime
which is 64-bit
.After doing all these steps and going through many online posts, still I'm unable to resolve this issue.
My Doubts are :
Windows 10
upgrade has anything to do with this situation?Windows 10
comes with a new browser Edge
, is this because of this browser? Like Silverlight
compability.Again I am not sure but these are my doubt. Any suggestions?
Upvotes: 8
Views: 10718
Reputation: 38009
This is a really old thread, but I just ran into this issue with a project. I was getting the message that the Developer runtime was not installed, but in fact it was, and another similar project ran just fine on the same machine with the same version of VS 2015.
The fix was to ensure that the startup project is the WEB project, not the Silverlight project. Somehow, the default startup project got switched to the SL project. After I switched back, then it worked just fine.
Upvotes: 0
Reputation: 1425
I had this issue and Uninstalling and Reinstalling didn't work.
Error in debug mode (F5 Debug solution configuration) was "Unable to start debugging. The Silverlight Developer Runtime is not installed"
In Debug configuration I would get the above error but finally I put the solution into release mode and it worked - then back to debug mode and everything worked without error.
Seems like a really odd fix but sure enough closing and re-opening the solution everything works now - Same install procedure as OP.
Another thing that's interesting is, the Debug only works in Chrome. If I target IE or edge I still get "Unable to start debugging. The Silverlight Developer Runtime is not installed"
Upvotes: 5
Reputation: 21
I uninstalled Silverlight and then installed Silverlight_Developer.exe. I also switched default browser in Visual Studio to Internet Explorer (I have Edge otherwise which won't work...).
Nice to see some more people also using Silverlight these days, hehehe.
Upvotes: 2
Reputation: 767
Do you have a 64 bit OS ? If so - uninstall Silverlight (developer!) and make sure you install the silverlight.exe (developer!) not the 64 bit version. That worked for me. HTH
Upvotes: 13
Reputation: 71
Go to the properties of the Web folder start project. Click Web on the left tab. Unclick Silverlight in the debuggers.
Not a total solution but at least it allows you to debug other portions.
Upvotes: 7