-
Notifications
You must be signed in to change notification settings - Fork 6.1k
What's new in .NET Core 2.1 revisions #5813
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
|
||
|
|
||
| In this example, the `--` option that precedes the `--verbose` option. It delimits the options passed directly to the `dotnet watch` command from the arguments that are passed to the child `dotnet` process. Without it, the `--verbose` option applies to the `dotnet watch` command, not the `dotnet build` command. | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feels like a grammar problem in the first sentence
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is a grammar problem, @KathleenDollard. Thanks for pointing it out; I've fixed it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Left a couple of comments.
| ### Single-source tool management with the `dotnet tool` command | ||
| ### Tool management with the `dotnet tool` command | ||
|
|
||
| In .NET Core SDK 2.1 (v 2.1.300), all tools operations use the `dotnet tool` command. The following options are available: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove extra space before the parentheses and perhaps inside the parentheses too?
| .NET Core 2.1 includes enhancements and new features in the following areas: | ||
|
|
||
| - [Tooling](#tooling) | ||
| - [Roll forward](#roll-forward) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update ms.date
| COMPlus_TieredCompilation="1" | ||
| ``` | ||
|
|
||
| - To use tiered compilation on a per-project basis, add the '<TieredCompilation>` property to the `<PropertyGroup>` section of the MSBuild project file, as the following example shows: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix the first backtick which is using a single quote here
|
|
||
| - To use tiered compilation on a per-project basis, add the '<TieredCompilation>` property to the `<PropertyGroup>` section of the MSBuild project file, as the following example shows: | ||
|
|
||
| ```XML |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lowercase xml
| ```csharp | ||
| AppContext.SetSwitch("System.Net.Http.useSocketsHttpHandler", false); | ||
| ``` | ||
| ```vb |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: add an empty line between the code blocks
What's new in .NET Core 2.1 revisions
//cc @mairaw @richlander @KathleenDollard