File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
src/coverlet.core/Symbols Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
9
9
### Fixed
10
10
-Incorrect coverage for methods returning IAsyncEnumerable in generic classes [ #1383 ] ( https://github.com/coverlet-coverage/coverlet/issues/1383 )
11
+ -Wrong branch coverage for async methods .NET Standard 1.x [ #1376 ] ( https://github.com/coverlet-coverage/coverlet/issues/1376 )
11
12
-Allign published nuget package version to github release version [ #1413 ] ( https://github.com/coverlet-coverage/coverlet/issues/1413 )
12
13
-Sync nuget and github release versions [ #1122 ] ( https://github.com/coverlet-coverage/coverlet/issues/1122 )
13
14
Original file line number Diff line number Diff line change @@ -199,6 +199,7 @@ instruction.Previous.Operand is MethodReference operand &&
199
199
operand . DeclaringType . Scope . Name == "System.Runtime" ||
200
200
operand . DeclaringType . Scope . Name == "netstandard" ||
201
201
operand . DeclaringType . Scope . Name == "mscorlib" ||
202
+ operand . DeclaringType . Scope . Name == "System.Threading.Tasks" ||
202
203
operand . DeclaringType . Scope . Name == "System.Threading.Tasks.Extensions"
203
204
)
204
205
)
You can’t perform that action at this time.
0 commit comments