ASP.NET DLL文件夹更改

时间:2016-08-03 08:24:43

标签: c# asp.net dll

我正在使用此方法更改DLL文件夹。但是,此方法不允许访问父目录。

如果你帮忙,我会很高兴的。谢谢。

Web.config文件:

</configuration>
<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <probing privatePath="bin;C:\Windows\SysWOW64" />
    </assemblyBinding>
  </runtime>
</configuration>

1 个答案:

答案 0 :(得分:0)

我通过单独添加文件解决了我的问题。谢谢。

解决方案:

的Web.config

<configuration>
<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc"  culture="neutral" publicKeyToken="31bf3856ad364e35"/>
        <codeBase version="5.2.3.0" href="FILE://C:/bin2/subbin/System.Web.Mvc.dll"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Http"  culture="neutral" publicKeyToken="31bf3856ad364e35"/>
        <codeBase version="5.0.0.0" href="FILE://C:/bin2/subbin/System.Web.Http.dll"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Http.WebHost"  culture="neutral" publicKeyToken="31bf3856ad364e35"/>
        <codeBase version="5.0.0.0" href="FILE://C:/bin2/subbin/System.Web.Http.WebHost.dll"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Http.Formatting"  culture="neutral" publicKeyToken="31bf3856ad364e35"/>
        <codeBase version="5.2.3.0" href="FILE://C:/bin2/subbin/System.Net.Http.Formatting.dll"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json"  culture="neutral" publicKeyToken="30ad4fe6b2a6aeed"/>
        <codeBase version="4.5.0.0" href="FILE://C:/bin2/subbin/Newtonsoft.Json.dll"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Design"  culture="neutral" publicKeyToken="B03F5F7F11D50A3A"/>
        <codeBase version="4.0.0.0" href="FILE://C:/bin2/subbin/System.Design.dll"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Windows.Forms"  culture="neutral" publicKeyToken="B77A5C561934E089"/>
        <codeBase version="4.0.0.0" href="FILE://C:/bin2/subbin/System.Windows.Forms.dll"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Entity"  culture="neutral" publicKeyToken="B77A5C561934E089"/>
        <codeBase version="4.0.0.0" href="FILE://C:/bin2/subbin/System.Web.Entity.dll"/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Data.Linq"  culture="neutral" publicKeyToken="B77A5C561934E089"/>
        <codeBase version="4.0.0.0" href="FILE://C:/bin2/subbin/System.Data.Linq.dll"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

</configuration>