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.
每当我尝试将文件添加到我的 Visual Studio 项目时,都会收到以下警告:
无法将文件 [文件名] 添加到项目中。此文件位于项目目录树中
如何修复此错误?
进入您的 Windows 文件资源管理器并导航到 .csproj 文件并使用记事本(或 NotePad++ 等高级文本编辑器)打开它
您会注意到两行具有相似或重复的 Compile Include 行:
<Compile Include="..\ProjectDir\SubDir\MyClass.cs"> <Link>"SubDir\MyClass.cs"</Link> </Compile>
删除上面的行,只保留与下面类似的行:
<Compile Include="SubDir\MyClass.cs" />