gpt4 book ai didi

c# 程序集与 wpf 应用程序绑定(bind)

转载 作者:太空宇宙 更新时间:2023-11-03 12:50:54 25 4
gpt4 key购买 nike

我想将来自更远的文件夹的 dll 文件与我的应用程序绑定(bind)。

例如:

File structures:

-Important.dll

-Folder

  • MyApplication.exe

我需要这样的东西:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="../" />
</assemblyBinding>
</runtime>
</configuration>

但它不起作用。

最佳答案

我们通过以下方式解决了这个问题:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Important" publicKeyToken="1234567890abcdef"/>
<codeBase version="1.2.3.4" href="../OtherFolder/Important.dll"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

关于c# 程序集与 wpf 应用程序绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35598862/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com