How to start Silverlight with IE in Visual Studio, while Google Chrome remains standard for normal viewing

I cannot debug Silverlight with Google Chrome. I do not want to change the default browser for IE for normal browsing on the Internet.

How to request IE to start when starting a silverlight project in Visual Studio?

+4
source share
3 answers

In Visual Studio, you can specify the browser that will be used when starting the web project. Right-click on the start web page in your web project and click on the Browse button.

In the dialog that appears, click on Chrome and set it to default.

This will not change the default browser in Windows.

+7
source

Right-click on ClientBin while in your Projectweb.and change the default browser or remove un wanted browser, then click ok. This is it.

or

ProjectWeb-> Browse with-> change default browser → ok

+1
source

Or just install the IETab extension for Chrome, and then install it to automatically launch a Silverlight page in IE mode.

https://chrome.google.com/webstore/detail/ie-tab/hehijbfgiekmjfkfjpbkbammjbdenadd

0
source

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


All Articles