Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/core/tutorials/publishing-with-visual-studio.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
title: Publish a .NET console application using Visual Studio
description: Learn how to use Visual Studio to create the set of files that are needed to run a .NET application.
ms.date: 08/22/2023
dev_langs:
- "csharp"
- "vb"
ms.custom: "vs-dotnet"
---
# Tutorial: Publish a .NET console application using Visual Studio
Expand Down
3 changes: 0 additions & 3 deletions docs/core/whats-new/dotnet-core-2-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ title: What's new in .NET Core 2.2
description: Learn about the new features found in .NET Core 2.2.
dev_langs:
- "csharp"
- "vb"
ms.date: 12/04/2018
---

Expand Down Expand Up @@ -56,7 +55,6 @@ internal sealed class SimpleEventListener : EventListener
In addition, .NET Core 2.2 adds the following two properties to the <xref:System.Diagnostics.Tracing.EventWrittenEventArgs> class to provide additional information about ETW events:

- <xref:System.Diagnostics.Tracing.EventWrittenEventArgs.OSThreadId?displayProperty=nameWithType>

- <xref:System.Diagnostics.Tracing.EventWrittenEventArgs.TimeStamp?displayProperty=nameWithType>

## Data
Expand All @@ -72,7 +70,6 @@ Starting with .NET Core 2.2, an access token issued by Azure Active Directory ca
In .NET Core 2.1, the JIT compiler implemented a new compiler technology, *tiered compilation*, as an opt-in feature. The goal of tiered compilation is improved performance. One of the important tasks performed by the JIT compiler is optimizing code execution. For little-used code paths, however, the compiler may spend more time optimizing code than the runtime spends executing unoptimized code. Tiered compilation introduces two stages in JIT compilation:

- A **first tier**, which generates code as quickly as possible.

- A **second tier**, which generates optimized code for those methods that are executed frequently. The second tier of compilation is performed in parallel for enhanced performance.

For information on the performance improvement that can result from tiered compilation, see [Announcing .NET Core 2.2 Preview 2](https://devblogs.microsoft.com/dotnet/announcing-net-core-2-2-preview-2/).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ ms.date: 10/09/2023
no-loc: [System.Text.Json]
dev_langs:
- "csharp"
- "vb"
helpviewer_keywords:
- "JSON serialization"
- "serializing objects"
Expand Down
Loading