Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/visual-studio/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Visual studio 通过Visual Studio项目文件禁用驱动程序签名_Visual Studio_Build_Msbuild_Driver - Fatal编程技术网

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

Visual studio 通过Visual Studio项目文件禁用驱动程序签名,visual-studio,build,msbuild,driver,Visual Studio,Build,Msbuild,Driver,由于VS中抛出异常,很遗憾,我无法访问项目的属性对话框。不过,我可以手动编辑vcxproj文件 因此,我的问题是如何编辑vcxproj文件以完全禁用作为VisualStudio构建过程一部分的签名?我不需要VS来做这件事,因为它发生在我的构建管道的后面 因此,我的问题是如何编辑vcxproj文件以完全禁用它 是否将签名作为Visual Studio生成过程的一部分 解决方案 您可以在xxxx.vcxproj文件中添加如下内容: 注意:这意味着在构建过程中关闭驱动程序签名 希望它能帮助您。您可以在

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

因此,我的问题是如何编辑vcxproj文件以完全禁用作为VisualStudio构建过程一部分的签名?我不需要VS来做这件事,因为它发生在我的构建管道的后面

因此,我的问题是如何编辑vcxproj文件以完全禁用它 是否将签名作为Visual Studio生成过程的一部分

解决方案

您可以在xxxx.vcxproj文件中添加如下内容:

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


希望它能帮助您。

您可以在xxx.vcxproj文件中使用Off。谢谢!似乎起作用了。
<PropertyGroup>
    <SignMode>Off</SignMode>
 </PropertyGroup>