I donโt know what happened to my project, but when I tried to start it, I received the error message Could not load file or assembly 'Exceptionless.Mvc' or one of its dependencies
Eceptionless.MVC is not used or mentioned anywhere in my project. I canโt even find the text with the Exception ......
So, I used Nuget Manager to install the exceptless.MVC package.
Now i get an error
`HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid. Config Error There is a duplicate 'exceptionless' section defined `
Installing an Exclusive .Mvc Added the Following to My Web Configuration
<section name="exceptionless" type="Exceptionless.ExceptionlessSection, Exceptionless" /> <exceptionless apiKey="API_KEY_HERE" /> <modules runAllManagedModulesForAllRequests="true"> <add name="ExceptionlessModule" type="Exceptionless.Mvc.ExceptionlessModule, Exceptionless.Mvc" /> </modules>
and updated configuration package
<package id="Exceptionless" version="4.2.1982" targetFramework="net45" />
This is the only ref for MVC exceptions / exceptions in my project.
I am at a loss that looking for it with mvc without any problems or where duplicate sections are
any help pls?
source share