Skip to content
Open
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
6 changes: 5 additions & 1 deletion docs/standard/library-guidance/strong-naming.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ You should strong name your open-source .NET libraries if their targets include
> [!NOTE]
> This guidance is specific to publicly distributed .NET libraries, such as .NET libraries published on NuGet.org. Strong naming is not required by most .NET applications and should not be done by default.

✔️ CONSIDER strong naming your library's assemblies.
✔️ CONSIDER strong naming your library's assemblies if you only target .NET Framework or .NET Standard.

> Strong naming has no impact on modern .NET runtimes. If your library only targets modern .NET, then you don't need to strong name your assemblies.

> If you multi-target across .NET Framework/.NET Standard _and_ modern .NET, then you should strong name across all of your Target Frameworks.

✔️ CONSIDER adding the strong naming key pair (public + private) to your source control system.

Expand Down