From d7f6ca38b682704461ee328e254bb59aa62ae8ee Mon Sep 17 00:00:00 2001 From: Mark Cilia Vincenti Date: Tue, 1 Oct 2024 09:19:03 +0200 Subject: [PATCH] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b2006a..e61e517 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ There is also no need to reference this library as a dependency for .NET 9.0+. Y ### Factory method (if targeting frameworks prior to .NET 5.0) Due to frameworks prior to .NET 5.0 supporting the notorious `Thread.Abort`, we cannot use the same `System.Threading.Lock` namespace or else the locks would not be hardened against thread aborts, so we need to use a creator method instead. -You must also [multi-target](https://learn.microsoft.com/en-us/nuget/create-packages/multiple-target-frameworks-project-file) .NET 9.0 in your `.csproj` file as well. +**IMPORTANT:** You MUST also [multi-target](https://learn.microsoft.com/en-us/nuget/create-packages/multiple-target-frameworks-project-file) .NET 9.0 in your `.csproj` file as well. Example: ```