0

I am trying to build repository on linux/mono (autofac project). It contain .xproj file, but I am unable to build it with xbuild. How to convert xproj into .csproj ? (If there is no any tool, then i will recreate csproj from nothing or from older version (if there is one), but i want to know about automated translation)

1 Answers1

0

.xproj is an MSBuild file for dnx projects. It's a partial replacement for the csproj file. The dependencies have been moved out altogether to a project.json file, leaving just the build instructions in the xproj file.

Look at this: http://ivanz.com/2016/05/17/farewell-project-json-hello-msbuild-and-csproj

Patrick
  • 90
  • 7