Skip to content

Commit a082087

Browse files
committed
Fix getting path to full framework MSBuild
1 parent d7cce5a commit a082087

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tests/Microsoft.NET.TestFramework/ToolsetInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ public static ToolsetInfo Create(string repoRoot, string repoArtifactsDir, strin
289289
{
290290
if (TryResolveCommand("MSBuild", out string pathToMSBuild))
291291
{
292-
ret.FullFrameworkMSBuildPath = Path.GetDirectoryName(pathToMSBuild);
292+
ret.FullFrameworkMSBuildPath = pathToMSBuild;
293293
}
294294
else
295295
{

0 commit comments

Comments
 (0)