File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
samples/MusicStore/MusicStore.Test/Properties
src/MyTested.AspNetCore.Mvc.Core/Internal Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 17
17
18
18
// The following GUID is for the ID of the typelib if this project is exposed to COM
19
19
[ assembly: Guid ( "0a3a93a1-a79c-4d08-8ace-6e72b30c3ab7" ) ]
20
-
21
- [ assembly: CollectionBehavior ( DisableTestParallelization = true ) ]
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ public static TResult RunSync<TResult>(Func<Task<TResult>> func)
17
17
return taskFactory
18
18
. StartNew ( func )
19
19
. Unwrap ( )
20
+ . ConfigureAwait ( false )
20
21
. GetAwaiter ( )
21
22
. GetResult ( ) ;
22
23
}
@@ -26,6 +27,7 @@ public static void RunSync(Func<Task> func)
26
27
taskFactory
27
28
. StartNew ( func )
28
29
. Unwrap ( )
30
+ . ConfigureAwait ( false )
29
31
. GetAwaiter ( )
30
32
. GetResult ( ) ;
31
33
}
You can’t perform that action at this time.
0 commit comments