2012-04-17 18 views
7

を拒否されたスタックトレースです:ファイルまたはアセンブリ 'Microsoft.Web.Infrastructure'またはその依存関係の1つを読み込めませんでした。アクセスはこちら

[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 

すべてがうまく働きました。私は私の参照で何も変更したことはありません。 Microsoft.Web.Infrastructure.dllがプロジェクトに追加され、ローカルコピーがTrueに設定されています。

マスターページなしで新しいビューを追加するまでは問題ありませんでした。何が起こっている?これを解決するには?

答えて

5

私はこの同じ問題を抱えていましたが、それはVisual Studioが問題の.dllをロックしていたことが判明しました。 Visual Studioを再起動すると問題は解決しましたが、まだなぜそれが起きたのかはわかりません。

+0

これは私にとっても同じ問題を解決しました... – Alex

+0

ありがとうございました - 多くのグーグル・グーグル後、私はこれを見つけて、VSを再起動し、 – Jen

関連する問題