Skip to content

Commit 55f3e6b

Browse files
committed
Fix WinRT compilation
1 parent 5979f45 commit 55f3e6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/client/RabbitMQ.Client/src/client/impl/ConsumerWorkService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public WorkPool(IModel model)
6666
public void Start()
6767
{
6868
#if NETFX_CORE
69-
Task.Factory.StartNew(Loop, TaskCreationOptions.LongRunning);
69+
System.Threading.Tasks.Task.Factory.StartNew(Loop, System.Threading.Tasks.TaskCreationOptions.LongRunning);
7070
#else
7171
var thread = new Thread(Loop)
7272
{

0 commit comments

Comments
 (0)