我为Visual-studio创建了扩展。在“调试”模式下构建项目时,出现错误消息The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters
。但是在“发布”模式下,它可以成功构建。
在调试模式下,项目通过以下路径在文件夹中构建: “ C:\ Users \ UserName \ AppData \ Local \ Microsoft \ VisualStudio \ 15.0_ed6a412fExp \ Extensions \ CompanyName \ ProjectName \ 1.3 +项目的所有子文件夹” 总计超过260个符号。 >
我尝试了下一个选项来解决此问题:
<application xmlns="urn:schemas-microsoft-com:asm.v3"> <windowsSettings xmlns:ws2="https://schemas.microsoft.com/SMI/2016/WindowsSettings"> <ws2:longPathAware>true</ws2:longPathAware> </windowsSettings> </application>
这个步骤并没有帮助我。我可以解决当前的问题吗?
谢谢。
答案 0 :(得分:0)
您可以尝试
来自link
答案 1 :(得分:0)
MSDN支持人员建议尝试:( Best way to resolve file path too long exception
此外,开发者https://visualstudio.uservoice.com/forums/121579-visual-studio-ide/suggestions/2156195-fix-260-character-file-name-length-limitation的有用链接 看看VS dev的第二条评论
THUS ,使用.net 4.6.2可以解决我认为的问题