在 VS2005 解决方案中导入 VS2010 csproj
我想在我的 VS2005 解决方案中导入使用 VS2010 创建的 .csproj。但我有以下消息:
找不到导入的项目“C:\Microsoft.CSharp.targets”。确认声明中的路径正确,并且该文件存在于磁盘上。
我不知道如何导入我的 .csproj。
是否可以有 2 个 sln 文件(一个 vs2010 sln 文件和一个 vs2005 sln 文件)具有相同的 csproj ?或者我应该为每个 sln 文件复制每个 csproj 吗?
问候,
弗洛里安
I want to import a .csproj create with VS2010 in my VS2005 solution. But I have the following message :
The imported project "C:\Microsoft.CSharp.targets" was not found. Confirm that the path in the declaration is correct, and that the file exists on disk.
I don't know how to import my .csproj.
Is it possible to have 2 sln files (a vs2010 sln file and a vs2005 sln file) with the same csproj ? Or Should i copy each csproj for each sln file ?
Regards,
Florian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要手动编辑 .csproj 文件以使其与 VS2005 兼容。在notepad.exe中打开它,打开另一个VS2005 .csproj文件以便进行比较。
重点关注文件底部附近的
行,这是生成错误消息的行。其他的毫无疑问,我没有VS2005可以再查了。当然最好避免像这样的混合和匹配,VS2010 在转换 VS2005 项目后打开它们几乎没有问题。You'll need to edit the .csproj file by hand to make it compatible with VS2005. Open it in notepad.exe, open another VS2005 .csproj file so that you can compare.
Focus on the
<Import Project="xxxx">
line near the bottom of the file, that's the one that is producing the error message. There are no doubt others, I don't have VS2005 anymore to check. Mixing and matching like this is of course best avoided, VS2010 has little trouble opening VS2005 projects after it converts them.