Skip to content

Commit

Permalink
make readable (dotnet#1325)
Browse files Browse the repository at this point in the history
* make readable

* rpetrusha feedback

* typo
  • Loading branch information
Rick-Anderson authored and mairaw committed Dec 14, 2016
1 parent 0917900 commit 098cb31
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions docs/core/tutorials/target-dotnetcore-with-msbuild.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,16 @@ The .NET Core tooling is going to [move from project.json to MSBuild based proje
We expect the first version of the .NET Core tools that use MSBuild to ship along with the next version of Visual Studio. However, it is possible to use MSBuild for .NET Core
projects today, and this page shows how.

We recommend that most people targeting .NET Core with *new* projects today use the default tooling experience with project.json because of the following
reasons:
We recommend new projects targeting .NET Core use the default tooling with *project.json* for the following reasons:

- MSBuild doesn't yet support a lot of the benefits of project.json
- A lot of the ASP.NET based tooling doesn't currently work with MSBuild projects
- When we do release the .NET Core tooling that uses MSBuild, it will be able to automatically convert from project.json to MSBuild projects
- MSBuild doesn't yet support many of the features of *project.json*.
- Much of the ASP.NET based tooling doesn't currently work with MSBuild projects.
- When MSBuild based .NET Core tooling is released, it will automatically convert *project.json* to MSBuild based.

You may want to use MSBuild to target .NET Core for existing projects that already use MSBuild that you want to port to .NET Core, or if you are using
MSBuild's extensibility in your build for scenarios that are not well supported for project.json projects.
Consider using MSBuild when:

- Existing projects that use MSBuild are being ported to .NET Core.
- Projects that use MSBuild's extensibility that are not well-supported by *project.json*.

## Prerequisites

Expand Down

0 comments on commit 098cb31

Please sign in to comment.