environment : Windows 10; Viusal Studio 2017; VMWare 14.0; Ubuntu 18.04
Occur error : Exception occured while copying sources to remote machine
这是我的调试结果:
1>------ 已启动生成: 项目: Ubuntu Program, 配置: Debug x64 ------
1>Validating sources
1>Copying sources remotely to '192.168.27.128'
1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\VC\VCTargets\Application Type\Linux\1.0\Linux.targets(157,5): error : Exception occured while copying sources to remote machine - 路径中具有非法字符.
1>已完成生成项目“Ubuntu Program.vcxproj”的操作 - fail.
我的源代码是:
#include <cstdio>
#include <iostream>
using namespace std;
int main()
{
printf("hello from Ubuntu_Program!\n");
return 0;
}
我已经阅读了Microsoft Docs并在Google上搜索但不知道为什么以及如何弄清楚,如果有人可以帮助我,我会很高兴.
最佳答案 删除项目名称中的空格将解决此问题.如果需要,将其替换为下划线_.