diff --git a/src/redist/targets/BundledComponents.targets b/src/redist/targets/BundledComponents.targets index 5c4610240..09fad7527 100644 --- a/src/redist/targets/BundledComponents.targets +++ b/src/redist/targets/BundledComponents.targets @@ -1,4 +1,8 @@ + + $(BaseOutputPath)$(Configuration)\dotnet\ + + https://dotnetcli.azureedge.net/dotnet/ @@ -177,17 +181,17 @@ - + - - + + - + DestinationDirectory="$(RedistLayoutPath)/%(BundledLayoutComponent.RelativeLayoutPath)" /> diff --git a/test/Microsoft.DotNet.Tools.Tests.Utilities/RepoDirectoriesProvider.cs b/test/Microsoft.DotNet.Tools.Tests.Utilities/RepoDirectoriesProvider.cs index 27f704575..0200bd607 100644 --- a/test/Microsoft.DotNet.Tools.Tests.Utilities/RepoDirectoriesProvider.cs +++ b/test/Microsoft.DotNet.Tools.Tests.Utilities/RepoDirectoriesProvider.cs @@ -55,8 +55,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities else { string configuration = new DirectoryInfo(AppContext.BaseDirectory).Parent.Name; - // TODO: Don't put in framework-specific folder (so we don't need to sync TFM here) - DotnetUnderTest = Path.Combine(RepoRoot, "artifacts", "bin", "redist", configuration, "netcoreapp3.0", "publish", "dotnet" + dotnetExtension); + DotnetUnderTest = Path.Combine(RepoRoot, "artifacts", "bin", "redist", configuration, "dotnet", "dotnet" + dotnetExtension); } } }