如何强制服务的位数
我有几个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行 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.