Skip to content

Commit fc0523a

Browse files
authored
update corefx use (dotnet#17972)
1 parent d26da05 commit fc0523a

23 files changed

+26
-26
lines changed

.github/ISSUE_TEMPLATE/dotnet-breaking-change.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Also, remove this comment before submitting the issue.
4343
- ASP.NET Core
4444
- C#
4545
- Core
46-
- CoreFx
46+
- Core .NET libraries
4747
- Data
4848
- Debugger
4949
- Deployment for .NET Core

docs/core/compatibility/2.0-2.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.date: 12/17/2019
77

88
If you're migrating from version 2.0 to version 2.1 of .NET Core, the breaking changes listed in this article may affect your app.
99

10-
## CoreFx
10+
## Core .NET libraries
1111

1212
- [Private fields added to built-in struct types](#private-fields-added-to-built-in-struct-types)
1313
- [OpenSSL versions on macOS](#openssl-versions-on-macos)

docs/core/compatibility/2.2-3.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ If you're migrating from version 2.2 to version 3.0 of .NET Core, ASP.NET Core,
260260

261261
***
262262

263-
## CoreFx
263+
## Core .NET libraries
264264

265265
- [APIs that report version now report product and not file version](#apis-that-report-version-now-report-product-and-not-file-version)
266266
- [Custom EncoderFallbackBuffer instances cannot fall back recursively](#custom-encoderfallbackbuffer-instances-cannot-fall-back-recursively)

docs/core/compatibility/2.2-3.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ If you're migrating from version 2.2 to version 3.1 of .NET Core, ASP.NET Core,
263263

264264
[!INCLUDE[Target framework: .NET Framework not supported](~/includes/core-changes/aspnetcore/3.0/targetfx-netfx-tfm-support.md)]
265265

266-
## CoreFx
266+
## Core .NET libraries
267267

268268
- [APIs that report version now report product and not file version](#apis-that-report-version-now-report-product-and-not-file-version)
269269
- [Custom EncoderFallbackBuffer instances cannot fall back recursively](#custom-encoderfallbackbuffer-instances-cannot-fall-back-recursively)

docs/core/compatibility/corefx.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Base class library breaking changes
3-
description: Lists the breaking changes in .NET CoreFx, the base class library.
4-
ms.date: "09/20/2019"
3+
description: Lists the breaking changes in core .NET libraries.
4+
ms.date: 09/20/2019
55
---
6-
# CoreFx breaking changes
6+
# Core .NET libraries breaking changes
77

8-
CoreFx provides the primitives and other general types used by .NET Core.
8+
The core .NET libraries provide the primitives and other general types used by .NET Core.
99

1010
The following breaking changes are documented on this page:
1111

docs/core/compatibility/fx-core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you're migrating an app from .NET Framework to .NET Core, the breaking change
1111
> [!NOTE]
1212
> This article is not a complete list of breaking changes between .NET Framework and .NET Core. The most important breaking changes are added here as we become aware of them.
1313
14-
## CoreFx
14+
## Core .NET libraries
1515

1616
- [Change in default value of UseShellExecute](#change-in-default-value-of-useshellexecute)
1717
- [UnauthorizedAccessException thrown by FileSystemInfo.Attributes](#unauthorizedaccessexception-thrown-by-filesysteminfoattributes)

docs/core/compatibility/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
items:
3131
- name: ASP.NET Core
3232
href: aspnetcore.md
33-
- name: CoreFx
33+
- name: Core .NET libraries
3434
href: corefx.md
3535
- name: Cryptography
3636
href: cryptography.md

docs/desktop-wpf/migration/differences-from-net-framework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ When your project uses `<PackageReference>`, packages aren't stored locally in a
3535

3636
Code Access Security (CAS) is not supported by .NET Core or WPF for .NET Core. All CAS-related functionality is treated under the assumption of full-trust. WPF for .NET Core removes CAS-related code. The public API surface of these types still exists to ensure that calls into these types succeed.
3737

38-
Publicly defined CAS-related types were moved out of the WPF assemblies and into the CoreFX assemblies. The WPF assemblies have type-forwarding set to the new location of the moved types.
38+
Publicly defined CAS-related types were moved out of the WPF assemblies and into the Core .NET library assemblies. The WPF assemblies have type-forwarding set to the new location of the moved types.
3939

4040
| Source assembly | Target assembly | Type |
4141
| --------------- | --------------- | ------------------- |

includes/core-changes/categoryselector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
> [!div class="op_single_selector"]
22
>
33
> - [ASP.NET Core](~/docs/core/compatibility/aspnetcore.md)
4-
> - [CoreFx](~/docs/core/compatibility/corefx.md)
4+
> - [Core .NET libraries](~/docs/core/compatibility/corefx.md)
55
> - [Cryptography](~/docs/core/compatibility/cryptography.md)
66
> - [EF Core](/ef/core/what-is-new/ef-core-3.0/breaking-changes)
77
> - [Globalization](~/docs/core/compatibility/globalization.md)

includes/core-changes/corefx/1.0/filesysteminfo-attributes-exceptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Modify any `catch` statements to catch an <xref:System.UnauthorizedAccessExcepti
1616

1717
#### Category
1818

19-
CoreFx
19+
Core .NET libraries
2020

2121
#### Affected APIs
2222

0 commit comments

Comments
 (0)