Skip to content

Commit

Permalink
Merge pull request #84 from jgsogo/remove-csi
Browse files Browse the repository at this point in the history
Remove hardcoded path to tool
  • Loading branch information
SSE4 authored May 23, 2019
2 parents ef608fb + d385be7 commit 1e4f8ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Conan.VisualStudio/Services/SolutionEventsHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ private void RunCsi(Project project)
RedirectStandardOutput = true,
CreateNoWindow = true
};
System.Diagnostics.Process.Start(startInfo);
// TODO: Path to hardcoded MSBuild/15.0, make it conditional
// System.Diagnostics.Process.Start(startInfo);
}

public int OnAfterOpenProject(IVsHierarchy pHierarchy, int fAdded)
Expand Down

0 comments on commit 1e4f8ec

Please sign in to comment.