Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在具有 ANTLR 语法的 Visual Studio 2010 项目中,我收到以下错误“未找到“AntlrClassGenerationTask”任务”。
我发现了问题,解决方案文件夹的名称中有字符“(2)”,显然这导致找不到 ANTLR 任务(在其他分支中工作正常)并且任务程序集包含在解决方案内的文件夹中.
因此,将文件夹名称从“MySolution(2)”更改为“MySolution”后,问题就消失了。
有点奇怪,因为没有对解决方案文件夹的绝对引用,都使用了 VS 宏,如 $(ProjectDir)Antlr。