2012-04-17 3 views
7

Hier ist der Stack-Trace:Die Datei 'Microsoft.Web.Infrastructure' oder eine ihrer Abhängigkeiten konnte nicht geladen werden. Zugriff wird verweigert

[FileLoadException: Could not load file or assembly 'Microsoft.Web.Infrastructure' or one of its dependencies. Access is denied.] 

System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks) +0 
System.Reflection.RuntimeAssembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks) +39 
System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection, Boolean suppressSecurityChecks) +132 
System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +144 
System.Reflection.Assembly.Load(String assemblyString) +28 
System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +115 

[ConfigurationErrorsException: Could not load file or assembly 'Microsoft.Web.Infrastructure' or one of its dependencies. Access is denied.] 
System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +1023 
System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory() +346 
System.Web.Configuration.CompilationSection.LoadAssembly(AssemblyInfo ai) +85 
System.Web.Configuration.AssemblyInfo.get_AssemblyInternal() +54 
System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig) +274 
System.Web.Compilation.BuildManager.GetPreStartInitMethodsFromReferencedAssemblies() +63 
System.Web.Compilation.BuildManager.CallPreStartInitMethods() +235 
System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException) +1109 

[HttpException (0x80004005): Could not load file or assembly 'Microsoft.Web.Infrastructure' or one of its dependencies. Access is denied.] 
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +762 
System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +156 
System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +357 

Alles hat gut funktioniert. Ich habe nie etwas an meinen Referenzen geändert. Ich habe Microsoft.Web.Infrastructure.dll in meinem Projekt hinzugefügt und lokal kopieren wird auf True festgelegt.

Alles war gut, bis ich neue Ansicht ohne eine Masterseite hinzugefügt. Was ist los? Wie löst man das?

Antwort

5

Ich hatte das gleiche Problem, es stellte sich heraus, Visual Studio hatte die. DLL in Frage gestellt. Neustart von Visual Studio behebt das Problem, obwohl ich immer noch keine Ahnung warum es passiert ist.

+0

Das behebt das gleiche Problem für mich auch ... – Alex

+0

Vielen Dank - nach viel Googeln stieß ich auf diese, neu gestartet VS und sicher genug, es wieder funktioniert :) – Jen

Verwandte Themen