Windows 服务未通过安装项目安装
我有一个 Windows 服务和一个与之配套的安装项目。当我运行安装项目安装命令时,它完成安装,然后给出 1001 错误,指出找不到 testservice.exe.config 文件。
我查看了我的源项目,该文件从未生成...我有 .exe 文件,但它们都不是 .exe.config 文件。我怎样才能生成这个文件?
I have a windows service and a setup project to go along with it. When I run the setup project install command it gets part way through the install and then gives me an 1001 error saying it could not find the testservice.exe.config file.
I looked in my source project and that file is never generated... I have the .exe one but none of them are .exe.config files. How can I generate this file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您当然有 App.config 文件。如果编译服务,Bin 文件夹中应该生成 testservice.exe.config。阅读 什么时候创建app.config,什么时候创建app.exe.config,有什么区别以供进一步说明。
You certainly have App.config file. If you compile your service, there should be testservice.exe.config generated in Bin folder. Read When is an app.config created, when an app.exe.config and what is the difference for further clarification.
听起来您需要将 users.config 文件更改为 App.config。之后 Visual Studio 应该完成剩下的工作。
Sounds like you need to change your users.config file to App.config. After that Visual Studio should do the rest.