无需清单即可发布
我使用 Visual Studio 2010,使用 C# 进行开发。
我想知道当我发布解决方案时是否可以指定 VS 不创建 xxx.exe.manifest 和 xxx.application 文件,因为我不需要这两个文件文件来运行我的应用程序(至少我不觉得我需要它们,如果我不想根除它们,请随时提供建议......)。
不知道有没有办法呢?
I work on Visual Studio 2010, developing in C#.
I wonder if it is possible to specify to VS not to create the xxx.exe.manifest and xxx.application files when I publish my solution as I don't need both files to run my application (at least I don't feel that I need them, feel free to advice if I shouldn't want to eradicate them...).
Do you know if there is a way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在链接器的命令行上指定 /MANIFEST:NO 或在项目配置中禁用它们。
You should specify /MANIFEST:NO on the command line for linker or disabled them in Project configuration.