|
1 |
| -Microsoft.VisualStudio.Threading |
2 |
| -================================= |
| 1 | +# vs-threading |
3 | 2 |
|
4 |
| -[](https://nuget.org/packages/Microsoft.VisualStudio.Threading) |
5 | 3 | [](https://dev.azure.com/azure-public/vside/_build/latest?definitionId=12)
|
6 | 4 | [](https://gitter.im/vs-threading/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
7 | 5 |
|
8 |
| -Analyzers: [](https://nuget.org/packages/Microsoft.VisualStudio.Threading.Analyzers) |
9 |
| - |
10 |
| -## Features |
11 |
| - |
12 |
| -* Async versions of many threading synchronization primitives |
13 |
| - * `AsyncAutoResetEvent` |
14 |
| - * `AsyncBarrier` |
15 |
| - * `AsyncCountdownEvent` |
16 |
| - * `AsyncManualResetEvent` |
17 |
| - * `AsyncReaderWriterLock` |
18 |
| - * `AsyncSemaphore` |
19 |
| - * `ReentrantSemaphore` |
20 |
| -* Async versions of very common types |
21 |
| - * `AsyncEventHandler` |
22 |
| - * `AsyncLazy<T>` |
23 |
| - * `AsyncLazyInitializer` |
24 |
| - * `AsyncLocal<T>` |
25 |
| - * `AsyncQueue<T>` |
26 |
| -* Await extension methods |
27 |
| - * Await on a `TaskScheduler` to switch to it. |
28 |
| - Switch to a background thread with `await TaskScheduler.Default;` |
29 |
| - * Await on a `Task` with a timeout |
30 |
| - * Await on a `Task` with cancellation |
31 |
| -* `JoinableTaskFactory` that allows you to schedule asynchronous or synchronous work |
32 |
| - that does not deadlock with the UI thread even when the UI thread needs to |
33 |
| - synchronously block on the result. |
34 |
| - |
35 |
| -## Documentation |
36 |
| - |
37 |
| -* [Overview documentation](doc/index.md) |
38 |
| -* [Diagnostic analyzer rules](doc/analyzers/index.md) |
39 |
| - |
40 |
| -## Supported platforms |
41 |
| - |
42 |
| -* .NET 4.5 |
43 |
| -* .NET 4.6 |
44 |
| -* .NET Standard 1.3 |
45 |
| -* .NET Standard 2.0 |
46 |
| - |
47 |
| -[1]: https://nuget.org/packages/Microsoft.VisualStudio.Threading "Microsoft.VisualStudio.Threading NuGet package" |
| 6 | +## Microsoft.VisualStudio.Threading |
| 7 | + |
| 8 | +[](https://nuget.org/packages/Microsoft.VisualStudio.Threading) |
| 9 | + |
| 10 | +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). |
| 11 | + |
| 12 | +[Overview documentation](doc/index.md). |
| 13 | + |
| 14 | +[See the full list of features](src/Microsoft.VisualStudio.Threading/README.md). |
| 15 | + |
| 16 | +## Microsoft.VisualStudio.Threading.Analyzers |
| 17 | + |
| 18 | +[](https://nuget.org/packages/Microsoft.VisualStudio.Threading.Analyzers) |
| 19 | + |
| 20 | +Static code analyzer to detect common mistakes or potential issues regarding threading and async coding. |
| 21 | + |
| 22 | +[Diagnostic analyzer rules](doc/analyzers/index.md). |
| 23 | + |
| 24 | +[See the full list of features](src/Microsoft.VisualStudio.Threading.Analyzers.CodeFixes/README.md). |
0 commit comments