Skip to content

Commit ec05e79

Browse files
jkoritzinskybaronfel
authored andcommitted
Fix a few more tmp path places
1 parent 4551f4d commit ec05e79

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/Microsoft.DotNet.PackageInstall.Tests/TestToolBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class TestToolBuilderCollection : ICollectionFixture<TestToolBuilder>
1919
// global packages folder to ensure that the newly built package is used the next time a test tries to install it.
2020
//
2121
// The main thing this class can't handle is if the way the .NET SDK builds packages changes. In CI runs, we should use a clean test execution folder each time (I think!), so this shouldn't be an issue.
22-
// For local testing, you may need to delete the artifacts\tmp\Debug\TestTools folder if the SDK changes in a way that affects the built package.
22+
// For local testing, you may need to delete the artifacts\tmp\Debug\testing\TestTools folder if the SDK changes in a way that affects the built package.
2323
public class TestToolBuilder
2424
{
2525
public class TestToolSettings

test/UnitTests.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<DestinationFolder>eng/</DestinationFolder>
106106
</TestExecutionDirectoryFiles>
107107

108-
<FilesInHelixRoot Include="$(RepoRoot)artifacts\tmp\$(Configuration)\NuGet.config" />
108+
<FilesInHelixRoot Include="$(TestLayoutDir)\NuGet.config" />
109109
<FilesInHelixRoot Condition="$([MSBuild]::IsOSPlatform(`Windows`))" Include="$(RepoRoot)build\RunTestsOnHelix.cmd" />
110110
<FilesInHelixRoot Condition=" '$([MSBuild]::IsOSPlatform(`Windows`))' == 'false' " Include="$(RepoRoot)build\RunTestsOnHelix.sh" />
111111
</ItemGroup>

test/dotnet-new.IntegrationTests/BaseIntegrationTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static string GetTestTemplateLocation(string templateName)
6868

6969
/// <summary>
7070
/// Creates a temp test directory under test execution folder.
71-
/// Format: artifacts\tmp\Debug\dotnet-new.IntegrationTests\<paramref name="testName"/>\<paramref name="folderName"/>\date-time-utc-now[optional counter].
71+
/// Format: artifacts\tmp\Debug\testing\dotnet-new.IntegrationTests\<paramref name="testName"/>\<paramref name="folderName"/>\date-time-utc-now[optional counter].
7272
/// </summary>
7373
/// <remarks>
7474
/// Use this method when temp folder should be under location that is aware of repo nuget.config.

test/dotnet-new.IntegrationTests/Utilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ internal static string GetTestExecutionTempFolder()
2020

2121
/// <summary>
2222
/// Creates a temp folder in location dedicated for dotnet-new.IntegrationTests.
23-
/// Format: artifacts\tmp\Debug\dotnet-new.IntegrationTests\<paramref name="caller"/>\<paramref name="customName"/>\date-time-utc-now[optional counter].
23+
/// Format: artifacts\tmp\Debug\testing\dotnet-new.IntegrationTests\<paramref name="caller"/>\<paramref name="customName"/>\date-time-utc-now[optional counter].
2424
/// </summary>
2525
internal static string CreateTemporaryFolder([CallerMemberName] string caller = "Unnamed", string customName = "")
2626
{

0 commit comments

Comments
 (0)