Skip to content

Commit b22131b

Browse files
authored
Merge pull request #1414 from microsoft/docfx
Fix markdown links
2 parents dade5e0 + f0bbb37 commit b22131b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99

1010
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).
1111

12-
[Getting started](https://microsoft.github.io/vs-threading/docs/getting-started.md).
12+
[Getting started](https://microsoft.github.io/vs-threading/docs/getting-started.html).
1313

14-
[See the full list of features](https://microsoft.github.io/vs-threading/docs/features.md).
14+
[See the full list of features](https://microsoft.github.io/vs-threading/docs/features.html).
1515

1616
## Microsoft.VisualStudio.Threading.Analyzers
1717

1818
[![NuGet package](https://img.shields.io/nuget/v/Microsoft.VisualStudio.Threading.Analyzers.svg)](https://www.nuget.org/packages/Microsoft.VisualStudio.Threading.Analyzers)
1919

2020
Static code analyzer to detect common mistakes or potential issues regarding threading and async coding.
2121

22-
[Diagnostic analyzer rules](https://microsoft.github.io/vs-threading/analyzers/index.md).
22+
[Diagnostic analyzer rules](https://microsoft.github.io/vs-threading/analyzers/index.html).

doc/editorconfigs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ While several project types have specific .editorconfig files defined in this fo
2525
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.
2626
In particular, shared libraries of general interest should _always_ use `.ConfigureAwait(false)` when awaiting on tasks.
2727

28-
[Learn more about authoring libraries following best threading practices](https://microsoft.github.io/vs-threading/docs/library_with_jtf.md).
28+
[Learn more about authoring libraries following best threading practices](https://microsoft.github.io/vs-threading/docs/library_with_jtf.html).
2929

3030
### Libraries that run inside a JoinableTaskFactory-compliant application
3131

0 commit comments

Comments
 (0)