我在尝试使用 .NET 4.5 并针对“任何 CPU”“调试”ASP.NET MVC Web 应用程序时遇到上述异常。我发现的有关此问题的所有其他问题似乎都确切地知道应用程序中导致问题的位置,但堆栈跟踪对我来说没有任何意义,因为它没有提及我自己编写的任何代码(见下文: )
[InvalidProgramException: Common Language Runtime detected an invalid program.]
System.Windows.Markup.XmlnsPrefixAttribute..ctor(String xmlNamespace, String prefix) +0
System.Reflection.CustomAttribute._CreateCaObject(RuntimeModule pModule, IRuntimeMethodInfo pCtor, Byte** ppBlob, Byte* pEndBlob, Int32* pcNamedArgs) +0
System.Reflection.CustomAttribute.CreateCaObject(RuntimeModule module, IRuntimeMethodInfo ctor, IntPtr& blob, IntPtr blobEnd, Int32& namedArgs) +38
System.Reflection.CustomAttribute.GetCustomAttributes(RuntimeModule decoratedModule, Int32 decoratedMetadataToken, Int32 pcaCount, RuntimeType attributeFilterType, Boolean mustBeInheritable, IList derivedAttributes, Boolean isDecoratedTargetSecurityTransparent) +589
System.Reflection.CustomAttribute.GetCustomAttributes(RuntimeAssembly assembly, RuntimeType caType) +103
System.Reflection.RuntimeAssembly.GetCustomAttributes(Boolean inherit) +33
Owin.Loader.DefaultLoader.SearchForStartupAttribute(String friendlyName, IList`1 errors, Boolean& conflict) +294
Owin.Loader.DefaultLoader.GetDefaultConfiguration(String friendlyName, IList`1 errors) +105
Owin.Loader.DefaultLoader.LoadImplementation(String startupName, IList`1 errorDetails) +161
Owin.Loader.DefaultLoader.Load(String startupName, IList`1 errorDetails) +51
Microsoft.Owin.Host.SystemWeb.OwinBuilder.GetAppStartup() +238
Microsoft.Owin.Host.SystemWeb.OwinHttpModule.InitializeBlueprint() +103
System.Threading.LazyInitializer.EnsureInitializedCore(T& target, Boolean& initialized, Object& syncLock, Func`1 valueFactory) +86
System.Threading.LazyInitializer.EnsureInitialized(T& target, Boolean& initialized, Object& syncLock, Func`1 valueFactory) +72
Microsoft.Owin.Host.SystemWeb.OwinHttpModule.Init(HttpApplication context) +104
System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers) +418
System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context) +172
System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context) +336
System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext) +296
[HttpException (0x80004005): Common Language Runtime detected an invalid program.]
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +9930568
System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +101
System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +254
谁能告诉我如何找出抛出异常的地点和时间?它甚至不会在抛出主页之前加载主页,也不会破坏 startup.cs 文件的代码,所以我没有太多工作要做。
我对 ASP.NET MVC 开发相当陌生,因此调试以前未遇到的异常非常困难,我非常感谢您对此事的任何帮助!
更新:我正在尝试在 Windows 8.1 Professional 64 位计算机上使用 IIS Express 在 Firefox 中运行 Visual Studio 2013 中制作的 Web 应用程序,该配置与一周前适用于同一 Web 应用程序的配置相同。从那时起,我对 MVC 模型和控制器进行了更改,但没有更改任何会影响其部署/调试的东西。我只需要知道如何获取有关引发异常的位置的更多信息。