如何强制服务的位数

发布于 2024-11-16 21:25:11 字数 240 浏览 5 评论 0原文

我有几个 C# Windows 服务。坚持作为 64 位进程运行。

这不会是一个问题,除非我将所有共享配置迁移到 C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config

结果服务无法读取配置,目前我有为了复制共享配置(这会破坏将其移动到 machine.config 的意义),

我已将构建配置从 x64 更改为 x86,并重新安装,但该服务仍然以 64 位模式运行。

I have several C# Windows service. One insists on running as a 64 bit process.

This wouldn't be a problem except that I migrated all shared configuration, to C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config

As a result the service fails to read the config, and for the moment I am having to duplicate the shared configuration (which defeats the point of moving it to machine.config)

I have changed the build configuration from x64 to x86, and re-installed but the service still runs in 64 bit mode.

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

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

发布评论

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

评论(1

我最亲爱的 2024-11-23 21:25:11

执行 Corflags /+32Bit [Service.Exe](.Net SDK 的一部分),这将通知操作系统必须以 32 位模式加载该程序集。

Execute Corflags /+32Bit [Service.Exe] (part of the .Net SDK) which will notify the OS that this assembly must be loaded in 32 bit mode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文