diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 54a40c205f3c..b23d4d5b6a4e 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -57,13 +57,13 @@
https://github.com/dotnet/runtime
a06eccb3600b702d911bcdf8fb0caa50970858d9
-
+
https://github.com/dotnet/msbuild
- 7804350cd4fe271bee48b3dc99e9f4681ee686c5
+ 369631b4b21ef485f4d6f35e16b0c839a971b0e9
-
+
https://github.com/dotnet/msbuild
- 7804350cd4fe271bee48b3dc99e9f4681ee686c5
+ 369631b4b21ef485f4d6f35e16b0c839a971b0e9
https://github.com/dotnet/fsharp
diff --git a/eng/Versions.props b/eng/Versions.props
index 0d445fa806f9..1c1fb736dbae 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -90,10 +90,10 @@
- 16.10.0-preview-21205-05
+ 16.10.0-preview-21215-05
$(MicrosoftBuildPackageVersion)
$(MicrosoftBuildPackageVersion)
- 16.10.0-preview-21205-05
+ 16.10.0-preview-21215-05
$(MicrosoftBuildPackageVersion)
$(MicrosoftBuildPackageVersion)
$(MicrosoftBuildFrameworkPackageVersion)
diff --git a/src/Tests/dotnet-msbuild.Tests/GivenDotnetMSBuildBuildsProjects.cs b/src/Tests/dotnet-msbuild.Tests/GivenDotnetMSBuildBuildsProjects.cs
index 0fee23bb6e46..c82a7277b2c8 100644
--- a/src/Tests/dotnet-msbuild.Tests/GivenDotnetMSBuildBuildsProjects.cs
+++ b/src/Tests/dotnet-msbuild.Tests/GivenDotnetMSBuildBuildsProjects.cs
@@ -40,14 +40,14 @@ public void ItRunsSpecifiedTargetsWithPropertiesCorrectly()
var testProjectDirectory = testInstance.Path;
new MSBuildCommand(Log, "SayHello", testProjectDirectory)
- .Execute()
+ .ExecuteWithoutRestore()
.Should()
.Pass()
.And
.HaveStdOutContaining("Hello, from MSBuild!");
new MSBuildCommand(Log, "SayGoodbye", testProjectDirectory)
- .Execute()
+ .ExecuteWithoutRestore()
.Should()
.Pass()
.And