SxS(并排)不起作用

发布于 2024-10-20 08:56:43 字数 310 浏览 1 评论 0原文

继我的最后一个问题之后:我执行了史蒂夫提供的所有步骤, SxS 解析日志为空,但我仍然收到“类未注册”错误。

我知道我的 .exe 正在使用我的自定义 .manifest,因为如果我将程序集的版本更改为不正确的内容,我会收到“并排配置”错误,但是当所有内容都匹配时,我会收到“类未注册”错误。

我使用的 .manifests 在我的上一个问题中找到。

谢谢!

Following up from my last question: I did all the steps provided by Steve, the SxS Parse log is empty, but I still get a "Class Not Registered" error.

I know my .exe is using my custom .manifest, because if I change the Version of my assembly to something incorrect, I get the "Side-by-side configuration" error, however when everything matches, I get the Class Not Registered error.

The .manifests I use are found in my last question.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺孤伤于心 2024-10-27 08:56:43

尝试这个并跳过并排清单。我的发现是它们不起作用。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
    <ms_asmv2:trustInfo xmlns:ms_asmv2="urn:schemas-microsoft-com:asm.v2">
        <ms_asmv2:security>
            <ms_asmv2:requestedPrivileges>
                <ms_asmv2:requestedExecutionLevel level="asInvoker">
                </ms_asmv2:requestedExecutionLevel>
            </ms_asmv2:requestedPrivileges>
        </ms_asmv2:security>
    </ms_asmv2:trustInfo>
</assembly>

try this and skip side by side manifests. my findings are they don't work.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
    <ms_asmv2:trustInfo xmlns:ms_asmv2="urn:schemas-microsoft-com:asm.v2">
        <ms_asmv2:security>
            <ms_asmv2:requestedPrivileges>
                <ms_asmv2:requestedExecutionLevel level="asInvoker">
                </ms_asmv2:requestedExecutionLevel>
            </ms_asmv2:requestedPrivileges>
        </ms_asmv2:security>
    </ms_asmv2:trustInfo>
</assembly>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文