通过 Visual Studio 项目文件禁用驱动程序签名

Disable Driver Signing via Visual Studio Project File

由于在 VS 中抛出异常,我很遗憾无法访问项目的 属性 对话框。不过我可以手动编辑 vcxproj 文件。

所以,我的问题是如何编辑 vcxproj 文件以在 Visual Studio 构建过程中完全禁用签名?我不需要 VS 来完成它,因为它稍后会在我的构建管道中发生。

So, my ask is how can I edit the vcxproj file to completely disable signing as a part of the Visual Studio build process?

解决方案

您可以在 xxxx.vcxproj 文件中这样添加:

<PropertyGroup>
    <SignMode>Off</SignMode>
 </PropertyGroup>

注意:这意味着您在构建过程中关闭了驱动程序签名。

希望对您有所帮助。