Using ASP.NET WebForms in Visual Studio 2010 and adding Glimpse to my WebSite (not WebApp):
I am trying to install the NuGet → Glimpse package.
Installation is quite simple:
PM> Install-Package Glimpse
Successfully installed "Glimpse 0.79".
Successfully added 'Glimpse 0.79' to local.
But then I get an error in pink Failed to create binding redirects for 'localhost'. An item with the same key has already been added.
I got an error regarding the link to "Microsoft.Web.Infrastructure" that I resolved by finding this dll and putting it in the bin folder for my website
Now I get the http 404 error at http: // localhost / websiteName / Glimpse / Config
I suppose the error is because the configuration file does not actually exist there, and the route that he was trying to insert into IIS did not work properly, so the page could not be found.
Any help would be greatly appreciated, thanks in advance!
source share