Skip to content

Commit

Permalink
Merge pull request #1001 from corngood/mono-windows-fix
Browse files Browse the repository at this point in the history
disable VisualStudioInstanceProvider on mono
  • Loading branch information
DustinCampbell authored Oct 30, 2017
2 parents 6f1f5f1 + c147de9 commit f450e9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public VisualStudioInstanceProvider(ILoggerFactory loggerFactory)

public override ImmutableArray<MSBuildInstance> GetInstances()
{
if (!PlatformHelper.IsWindows)
if (PlatformHelper.IsMono)
{
return NoInstances;
}
Expand Down

0 comments on commit f450e9e

Please sign in to comment.