我有一个扩展名为.xproj
的.NET核心项目。
当我在VS 2017中打开项目时,项目文件.xproj migrated to .csproj
。
如何打开.xproj文件Visual Studio 2017/2015?
我需要安装任何工具吗?
当我尝试在VS2015中打开xproj时。它给出了错误导入的项目"C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.
我需要安装任何工具吗?
最佳答案
dotnet migrate
一样。 global.json
文件并将sdk-> version的值设置为已安装的Preview2 cli的版本,可以在VS 2015(仅2015)中继续使用project.json/xproj。与版本完全匹配的文件夹必须存在C:\Program Files\dotnet\sdk
中,否则您将收到错误消息Microsoft.DotNet.Props was not found
)。有关更多详细信息,请参见https://github.com/dotnet/cli/blob/rel/1.0.1/Documentation/ProjectJsonToCSProj.md#how-do-i-work-with-projectjson-and-csproj-on-the-same-machine。 关于.net - 如何在VS2017/2015中打开.xproj文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43679083/