Skip to content

Commit

Permalink
Merge branch 'fix-first-chance-exceptions-macos' into 'main'
Browse files Browse the repository at this point in the history
Fix first chance exceptions macos

See merge request Sharpmake/sharpmake!565
  • Loading branch information
jspelletier committed Oct 11, 2024
2 parents 3e44200 + 43dc98a commit 6b7de28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sharpmake/ExtensionMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public static string GetVisualStudioVCRootPath(this DevEnv visualVersion)
string vsDir = visualVersion.GetVisualStudioDir();
if (visualVersion > DevEnv.vs2015)
{
return Path.Combine(vsDir, @"VC\Tools\MSVC", visualVersion.GetVisualStudioVCToolsVersion().ToString());
return Path.Combine(vsDir, "VC", "Tools", "MSVC", visualVersion.GetVisualStudioVCToolsVersion().ToString());
}
else
{
Expand Down

0 comments on commit 6b7de28

Please sign in to comment.