从 Visual Studio 2015 无效清单发布 C# 项目
Publishing C# project from Visual Studio 2015 invalid manifest
我的项目 运行 在 Visual Studio 内很好,但是当我发布它并尝试在同一台开发计算机上 运行 setup.exe 时,我得到了一个错误:
+ Exception reading manifest from file:///C:/Game/Application%20Files/F1_1_0_0_9/F1.exe.manifest: the manifest may not be valid or the file could not be opened.
+ Parsing and DOM creation of the manifest resulted in error. Following parsing errors were noticed:
-HRESULT: 0x8007001f
Start line: 0
Start column: 0
Host file:
+ A device attached to the system is not functioning. (Exception from HRESULT: 0x8007001F)
我试过禁用 ClickOnce 清单的签名,这只会给我带来不同的错误。
在尝试了一百万种事情之后,例如以不同方式签署清单、deleting/adding dpi-aware 标记清单、使用不同版本的 .NET 等,我设法通过删除清单来解决它从我的解决方案文件。厉害了。
我的项目 运行 在 Visual Studio 内很好,但是当我发布它并尝试在同一台开发计算机上 运行 setup.exe 时,我得到了一个错误:
+ Exception reading manifest from file:///C:/Game/Application%20Files/F1_1_0_0_9/F1.exe.manifest: the manifest may not be valid or the file could not be opened.
+ Parsing and DOM creation of the manifest resulted in error. Following parsing errors were noticed:
-HRESULT: 0x8007001f
Start line: 0
Start column: 0
Host file:
+ A device attached to the system is not functioning. (Exception from HRESULT: 0x8007001F)
我试过禁用 ClickOnce 清单的签名,这只会给我带来不同的错误。
在尝试了一百万种事情之后,例如以不同方式签署清单、deleting/adding dpi-aware 标记清单、使用不同版本的 .NET 等,我设法通过删除清单来解决它从我的解决方案文件。厉害了。