Skip to content

Commit

Permalink
Hotfix: deadlock then creating a new dotnet project.
Browse files Browse the repository at this point in the history
  • Loading branch information
danwalmsley committed Mar 1, 2018
1 parent 59367d2 commit 12a5824
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using RoslynPad.Roslyn;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;

Expand Down Expand Up @@ -27,6 +28,8 @@ public void BeforeActivation()

public async Task<IProject> LoadAsync(ISolution solution, string filePath)
{
await RoslynWorkspace.CreateWorkspaceAsync(solution);

return await OmniSharpProject.Create(solution, filePath);
}
}
Expand Down

0 comments on commit 12a5824

Please sign in to comment.