有没有办法在 Visual Studio 2008 内部指定应用程序需要管理员?
我看到很多关于如何嵌入清单文件以要求管理员的文章,但我发现的问题是我们自动递增版本号,因此静态清单文件似乎不起作用,因为我们'每次都必须更新版本号。
有没有办法让 VS 生成清单并自动嵌入它并使用 AssemblyInfo.cs 文件中的信息更新它?
I see plenty of articles on how to embed a manifest file to require admin, but the problem I find with that is we auto-increment the version number number, so a static manifest file doesn't seem like it'd work because we'd have to update the version number each time.
Is there any way to get VS to generate the manifest and embed it automatically and have it updated with the info from the AssemblyInfo.cs file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们使用 M4 作为构建过程的一部分来更新清单中的版本号。
看看:http://www.gnu.org/software/m4/
We use M4 as part of our build process to update version numbers in our Manifest.
Check it out: http://www.gnu.org/software/m4/
您可以右键单击该应用程序,然后选择“添加新项目”。 然后选择“应用程序清单文件”。
app.manifest 将允许告诉 Windows 应用程序需要什么权限级别。
这非常容易。
[编辑]:我不确定您需要从 assemblyInfo.cs 文件中更新什么。
You can right click on the application, and select "Add new item". Then select "Application Manifest File".
The app.manifest will allow tell windows what permission level the app needs.
Its extremly easy.
[EDIT]: I'm not sure what you would need to update from the assemblyInfo.cs file.