diff --git a/Microsoft.Identity.Web.sln b/Microsoft.Identity.Web.sln index dadd24fd7..d1a224f86 100644 --- a/Microsoft.Identity.Web.sln +++ b/Microsoft.Identity.Web.sln @@ -136,11 +136,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TokenAcquirerTests", "tests EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebAppUiTests", "tests\E2E Tests\WebAppUiTests\WebAppUiTests.csproj", "{CD2986BB-6A75-4FA4-8791-2C311D6D5227}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NET 7 tests", "NET 7 tests", "{2A25ADFF-67CA-4BBB-A6A3-36607BD6275C}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ThreadingTests", "ThreadingTests", "{2A25ADFF-67CA-4BBB-A6A3-36607BD6275C}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebApp", "tests\E2E Tests\NET 7 tests\WebApp\WebApp.csproj", "{68001420-D41D-4E49-A168-E8D66B89669B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebApp", "tests\E2E Tests\ThreadingTests\WebApp\WebApp.csproj", "{68001420-D41D-4E49-A168-E8D66B89669B}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntegrationTests", "tests\E2E Tests\NET 7 tests\IntegrationTests\IntegrationTests.csproj", "{1674F4F5-6AD8-484B-86A4-8679123A39F0}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntegrationTests", "tests\E2E Tests\ThreadingTests\IntegrationTests\IntegrationTests.csproj", "{1674F4F5-6AD8-484B-86A4-8679123A39F0}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "benchmark", "benchmark", "{A6799B45-E2FD-4ACA-86A2-D1AD5B1E2ECE}" EndProject diff --git a/tests/E2E Tests/NET 7 tests/IntegrationTests/IntegrationTests.csproj b/tests/E2E Tests/ThreadingTests/IntegrationTests/IntegrationTests.csproj similarity index 100% rename from tests/E2E Tests/NET 7 tests/IntegrationTests/IntegrationTests.csproj rename to tests/E2E Tests/ThreadingTests/IntegrationTests/IntegrationTests.csproj diff --git a/tests/E2E Tests/NET 7 tests/IntegrationTests/Properties/launchSettings.json b/tests/E2E Tests/ThreadingTests/IntegrationTests/Properties/launchSettings.json similarity index 100% rename from tests/E2E Tests/NET 7 tests/IntegrationTests/Properties/launchSettings.json rename to tests/E2E Tests/ThreadingTests/IntegrationTests/Properties/launchSettings.json diff --git a/tests/E2E Tests/NET 7 tests/IntegrationTests/Net7ThreadingTest.cs b/tests/E2E Tests/ThreadingTests/IntegrationTests/ThreadingTest.cs similarity index 85% rename from tests/E2E Tests/NET 7 tests/IntegrationTests/Net7ThreadingTest.cs rename to tests/E2E Tests/ThreadingTests/IntegrationTests/ThreadingTest.cs index 7927b2fda..db8c65403 100644 --- a/tests/E2E Tests/NET 7 tests/IntegrationTests/Net7ThreadingTest.cs +++ b/tests/E2E Tests/ThreadingTests/IntegrationTests/ThreadingTest.cs @@ -9,11 +9,11 @@ namespace IntegrationTests; // provided by https://github.com/f1nzer/ms-identity-web-1957-bug-repro -public class Net7ThreadingTest : IClassFixture> +public class ThreadingTest : IClassFixture> { private readonly WebApplicationFactory _factory; - public Net7ThreadingTest(WebApplicationFactory factory) + public ThreadingTest(WebApplicationFactory factory) { _factory = factory; } diff --git a/tests/E2E Tests/NET 7 tests/IntegrationTests/Usings.cs b/tests/E2E Tests/ThreadingTests/IntegrationTests/Usings.cs similarity index 100% rename from tests/E2E Tests/NET 7 tests/IntegrationTests/Usings.cs rename to tests/E2E Tests/ThreadingTests/IntegrationTests/Usings.cs diff --git a/tests/E2E Tests/NET 7 tests/WebApp/Program.cs b/tests/E2E Tests/ThreadingTests/WebApp/Program.cs similarity index 100% rename from tests/E2E Tests/NET 7 tests/WebApp/Program.cs rename to tests/E2E Tests/ThreadingTests/WebApp/Program.cs diff --git a/tests/E2E Tests/NET 7 tests/WebApp/Properties/launchSettings.json b/tests/E2E Tests/ThreadingTests/WebApp/Properties/launchSettings.json similarity index 100% rename from tests/E2E Tests/NET 7 tests/WebApp/Properties/launchSettings.json rename to tests/E2E Tests/ThreadingTests/WebApp/Properties/launchSettings.json diff --git a/tests/E2E Tests/NET 7 tests/WebApp/WebApp.csproj b/tests/E2E Tests/ThreadingTests/WebApp/WebApp.csproj similarity index 100% rename from tests/E2E Tests/NET 7 tests/WebApp/WebApp.csproj rename to tests/E2E Tests/ThreadingTests/WebApp/WebApp.csproj diff --git a/tests/E2E Tests/NET 7 tests/WebApp/appsettings.Development.json b/tests/E2E Tests/ThreadingTests/WebApp/appsettings.Development.json similarity index 100% rename from tests/E2E Tests/NET 7 tests/WebApp/appsettings.Development.json rename to tests/E2E Tests/ThreadingTests/WebApp/appsettings.Development.json diff --git a/tests/E2E Tests/NET 7 tests/WebApp/appsettings.json b/tests/E2E Tests/ThreadingTests/WebApp/appsettings.json similarity index 100% rename from tests/E2E Tests/NET 7 tests/WebApp/appsettings.json rename to tests/E2E Tests/ThreadingTests/WebApp/appsettings.json