diff --git a/README.md b/README.md index 689fbf5d..cabe4511 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ Async synchronization primitives, async collections, TPL and dataflow extensions. The JoinableTaskFactory allows synchronously blocking the UI thread for async work. This package is applicable to any .NET application (not just Visual Studio). -[Getting started](https://microsoft.github.io/vs-threading/docs/getting-started.md). +[Getting started](https://microsoft.github.io/vs-threading/docs/getting-started.html). -[See the full list of features](https://microsoft.github.io/vs-threading/docs/features.md). +[See the full list of features](https://microsoft.github.io/vs-threading/docs/features.html). ## Microsoft.VisualStudio.Threading.Analyzers @@ -19,4 +19,4 @@ Async synchronization primitives, async collections, TPL and dataflow extensions Static code analyzer to detect common mistakes or potential issues regarding threading and async coding. -[Diagnostic analyzer rules](https://microsoft.github.io/vs-threading/analyzers/index.md). +[Diagnostic analyzer rules](https://microsoft.github.io/vs-threading/analyzers/index.html). diff --git a/doc/editorconfigs/README.md b/doc/editorconfigs/README.md index 4fbffaa7..d07b6ff8 100644 --- a/doc/editorconfigs/README.md +++ b/doc/editorconfigs/README.md @@ -25,7 +25,7 @@ While several project types have specific .editorconfig files defined in this fo Libraries that may run in any process, whether they have a main thread or not, should code themselves defensively to avoid any dependency on the main thread so that applications that do not follow `JoinableTaskFactory` rules can avoid deadlocks even when synchronously blocking their main thread using `Task.Wait()` on code running inside your library. In particular, shared libraries of general interest should _always_ use `.ConfigureAwait(false)` when awaiting on tasks. -[Learn more about authoring libraries following best threading practices](https://microsoft.github.io/vs-threading/docs/library_with_jtf.md). +[Learn more about authoring libraries following best threading practices](https://microsoft.github.io/vs-threading/docs/library_with_jtf.html). ### Libraries that run inside a JoinableTaskFactory-compliant application