Skip to content

Commit

Permalink
Merge pull request #269 from bording/fix-winrt-compilation
Browse files Browse the repository at this point in the history
Fix WinRT compilation
  • Loading branch information
michaelklishin authored Oct 24, 2016
2 parents 5979f45 + 55f3e6b commit 16d4555
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public WorkPool(IModel model)
public void Start()
{
#if NETFX_CORE
Task.Factory.StartNew(Loop, TaskCreationOptions.LongRunning);
System.Threading.Tasks.Task.Factory.StartNew(Loop, System.Threading.Tasks.TaskCreationOptions.LongRunning);
#else
var thread = new Thread(Loop)
{
Expand Down

0 comments on commit 16d4555

Please sign in to comment.