My ASP.Net project is working well, when suddenly we had a power failure. When I ran my web app, it is now showing a lot of
Could not load assembly S
This fixed my issue. Add this BundleConfig.cs Check your paths.
ScriptManager.ScriptResourceMapping.AddDefinition("bootstrap", new ScriptResourceDefinition {
Path = "~/scripts/bootstrap.min.js",
DebugPath = "~/scripts/bootstrap.js",
LoadSuccessExpression = "bootstrap"});
And kept this in the ScriptManager on the site.master
Follow this article for more clarity if needed