Vladan Strigo
Vladan Strigo

Reputation: 551

When is xproj/project.json going away?

I've been reading about project.json going away since May, also telling it will be done/removed in Preview2 tooling somewhere.

Then at some later posts that project.json will not right away go away, but only xproj which will with Preview2 be converted to csproj.

However I'm using the latest tooling, the latest .NET Core and it's still there :) both project.json and xproj.

When and what are the CURRENT plans does anyone know?

Upvotes: 1

Views: 1055

Answers (1)

Jérôme MEVEL
Jérôme MEVEL

Reputation: 7804

As written on the ASP.NET Core roadmap

Q4 2016 / Q1 2017

This will be the first minor update, mainly focused on replacing .xproj/project.json with .csproj/MSBuild. Project format update should be automatic. Just opening a 1.0 project will update it to the new project format. There will also be new functionality and improvements in the runtime and libraries.

As context, .NET Core 1.0 included a preview version of the .NET Core Tools, referred to as “Preview 2”. The tools were “preview” primarily because we knew that we would change the tools experience post 1.0. .NET Core and the .NET Core Tools will both be “RTM quality” or “stable” with this release.

Upvotes: 4

Related Questions