我有一个项目因为错误而无法打开:
SELECT
count(*) AS Cnt
,COALESCE(users.country, 'unknown') AS Country
FROM
sessions
LEFT JOIN users ON sessions.username=users.username
GROUP BY users.country;
我有
项目目录中的proj_path.vcxproj : error : The imported project "some_other_path\p.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.
文件,但Visual Studio 2010仍然在我的PC上甚至不存在的其他文件夹中使用它。在哪里修复这条路径?