From 0e96c2e20dbf612af427bf98621204bcede51734 Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Mon, 17 Jul 2017 11:47:51 -0700 Subject: [PATCH] Nano server tests: Make the dotnet cli folder name unique --- test/MusicStore.E2ETests/SmokeTestsOnNanoServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/MusicStore.E2ETests/SmokeTestsOnNanoServer.cs b/test/MusicStore.E2ETests/SmokeTestsOnNanoServer.cs index d474f1cfc2..8984b52703 100644 --- a/test/MusicStore.E2ETests/SmokeTestsOnNanoServer.cs +++ b/test/MusicStore.E2ETests/SmokeTestsOnNanoServer.cs @@ -87,7 +87,7 @@ namespace E2ETests RemoteDeploymentConfig = RemoteDeploymentConfigHelper.GetConfiguration(); - DotnetRuntimePathOnShare = Path.Combine(RemoteDeploymentConfig.FileSharePath, "dotnet"); + DotnetRuntimePathOnShare = Path.Combine(RemoteDeploymentConfig.FileSharePath, "dotnet_" + Guid.NewGuid()); // Prefer copying the zip file to fileshare and extracting on file share over copying the extracted // dotnet runtime folder from source to file share as the size could be significantly huge.