diff --git a/build/DependencyVersions.props b/build/DependencyVersions.props
index 07e237526..abef520fc 100644
--- a/build/DependencyVersions.props
+++ b/build/DependencyVersions.props
@@ -53,7 +53,7 @@
$(NuGetBuildTasksPackageVersion)
$(NuGetBuildTasksPackageVersion)
$(NuGetBuildTasksPackageVersion)
- 15.8.0
+ 15.9.0-preview-20180807-05
$(MicrosoftNETTestSdkPackageVersion)
$(MicrosoftNETTestSdkPackageVersion)
0.2.0-beta-000042
diff --git a/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs b/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs
index 7121959fe..bc88af2cd 100644
--- a/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs
+++ b/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs
@@ -152,11 +152,14 @@ namespace Microsoft.DotNet.Cli.Test.Tests
.ExecuteWithCapturedOutput("--logger \"trx;logfilename=custom.trx\" --logger console;verbosity=normal -- RunConfiguration.ResultsDirectory=" + trxLoggerDirectory);
// Verify
- var trxFilePath = Path.Combine(trxLoggerDirectory, "custom.trx");
- Assert.True(File.Exists(trxFilePath));
- result.StdOut.Should().Contain(trxFilePath);
- result.StdOut.Should().Contain("Passed VSTestPassTest");
- result.StdOut.Should().Contain("Failed VSTestFailTest");
+ if (!DotnetUnderTest.IsLocalized())
+ {
+ var trxFilePath = Path.Combine(trxLoggerDirectory, "custom.trx");
+ Assert.True(File.Exists(trxFilePath));
+ result.StdOut.Should().Contain(trxFilePath);
+ result.StdOut.Should().Contain("Passed VSTestPassTest");
+ result.StdOut.Should().Contain("Failed VSTestFailTest");
+ }
// Cleanup trxLoggerDirectory if it exist
if (Directory.Exists(trxLoggerDirectory))