diff --git a/.editorconfig b/.editorconfig index 6fcc40e49ad8..14e1cc0c01ca 100644 --- a/.editorconfig +++ b/.editorconfig @@ -280,7 +280,7 @@ dotnet_diagnostic.IDE0200.severity = none dotnet_diagnostic.IDE0240.severity = warning # Additional rules for template engine source code -[src/**{Microsoft.TemplateEngine.*,dotnet-new?*}/**.cs] +[{src,test}/**{Microsoft.TemplateEngine.*,dotnet-new?*}/**.cs] # Default analyzed API surface = 'public' (public APIs) dotnet_code_quality.api_surface = public # Provide ObsoleteAttribute message @@ -445,7 +445,7 @@ dotnet_diagnostic.SA1642.severity = none dotnet_diagnostic.SA1649.severity = none # Disable some StyleCop rules for test common Program.cs that is linked to test project of template engine -[src/Tests/Common/Program.cs] +[test/Common/Program.cs] # Declare types in namespaces dotnet_diagnostic.CA1050.severity = none # Elements should be documented @@ -456,7 +456,7 @@ dotnet_diagnostic.SA1601.severity = none dotnet_diagnostic.SA1633.severity = none # Additional rules for test source code for template engine -[src/Tests/{Microsoft.TemplateEngine.*,dotnet-new.Tests}/**.cs] +[test/{Microsoft.TemplateEngine.*,dotnet-new.Tests}/**.cs] # Test methods should not be skipped dotnet_diagnostic.xUnit1004.severity = warning # Elements should appear in the correct order @@ -506,5 +506,5 @@ dotnet_diagnostic.IDE0040.severity = warning [*.txt] insert_final_newline = false -[src/Tests/dotnet-new.Tests/**/Approvals/**] +[test/dotnet-new.Tests/**/Approvals/**] trim_trailing_whitespace = false diff --git a/CODEOWNERS b/CODEOWNERS index 5cad9a941841..34bf0b57707f 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -9,19 +9,19 @@ # Area-WebSDK /src/WebSdk/ @vijayrkn -/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/ @vijayrkn +/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/ @vijayrkn # Area-AspNetCore /src/BlazorWasmSdk/ @dotnet/aspnet-blazor-eng -/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ @dotnet/aspnet-blazor-eng +/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ @dotnet/aspnet-blazor-eng /src/Assets/TestProjects/BlazorHosted/ @dotnet/aspnet-blazor-eng /src/Assets/TestProjects/BlazorHostedRID/ @dotnet/aspnet-blazor-eng /src/Assets/TestProjects/BlazorWasmMinimal/ @dotnet/aspnet-blazor-eng /src/Assets/TestProjects/BlazorWasmWithLibrary/ @dotnet/aspnet-blazor-eng /src/RazorSdk/ @dotnet/aspnet-blazor-eng -/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/ @dotnet/aspnet-blazor-eng -/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ @dotnet/aspnet-blazor-eng -/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/ @dotnet/aspnet-blazor-eng +/test/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/ @dotnet/aspnet-blazor-eng +/test/Microsoft.NET.Sdk.Razor.Tests/ @dotnet/aspnet-blazor-eng +/test/Microsoft.NET.Sdk.Razor.Tool.Tests/ @dotnet/aspnet-blazor-eng /src/Assets/TestPackages/PackageLibraryDirectDependency/ @dotnet/aspnet-blazor-eng /src/Assets/TestPackages/PackageLibraryTransitiveDependency/ @dotnet/aspnet-blazor-eng /src/src/Assets/TestProjects/Razor*/ @dotnet/aspnet-blazor-eng @@ -31,30 +31,30 @@ # Area-Format /src/Cli/dotnet/commands/dotnet-format @sharwell @arkalyanms -/src/Tests/dotnet-format.Tests @sharwell @arkalyanms +/test/dotnet-format.Tests @sharwell @arkalyanms # Area-NuGet /src/Cli/dotnet/commands/dotnet-add/dotnet-add-package @dotnet/nuget-team -/src/Tests/dotnet-add-package.Tests @dotnet/nuget-team +/test/dotnet-add-package.Tests @dotnet/nuget-team /src/Cli/dotnet/commands/dotnet-nuget @dotnet/nuget-team -/src/Tests/dotnet-nuget.UnitTests @dotnet/nuget-team +/test/dotnet-nuget.UnitTests @dotnet/nuget-team # Area-FSharp /src/Cli/dotnet/commands/dotnet-fsi @dotnet/fsharp -/src/Tests/dotnet-fsi.Tests @dotnet/fsharp +/test/dotnet-fsi.Tests @dotnet/fsharp # Area-DotNet Test /src/Cli/dotnet/commands/dotnet-test @dotnet/dotnet-test-templates-admin /src/Cli/dotnet/commands/dotnet-vstest @dotnet/dotnet-test-templates-admin -/src/Tests/dotnet-test.Tests @dotnet/dotnet-test-templates-admin -/src/Tests/dotnet-vstest.Tests @dotnet/dotnet-test-templates-admin +/test/dotnet-test.Tests @dotnet/dotnet-test-templates-admin +/test/dotnet-vstest.Tests @dotnet/dotnet-test-templates-admin # Area-Templates /src/Cli/dotnet/commands/dotnet-new @dotnet/templating-engine-maintainers /src/Cli/dotnet-new3 @dotnet/templating-engine-maintainers /src/Cli/Microsoft.TemplateEngine.Cli @dotnet/templating-engine-maintainers -/src/Tests/dotnet-new.Tests @dotnet/templating-engine-maintainers -/src/Tests/Microsoft.TemplateEngine.* @dotnet/templating-engine-maintainers +/test/dotnet-new.Tests @dotnet/templating-engine-maintainers +/test/Microsoft.TemplateEngine.* @dotnet/templating-engine-maintainers /template_feed @dotnet/templating-engine-maintainers # ILLink and ReadyToRun targets and tasks owned by runtime team @@ -62,33 +62,33 @@ /src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.ILLink.targets clrappmodel@microsoft.com @dotnet/illink-contrib /src/Tasks/Microsoft.NET.Build.Tasks/PrepareForReadyToRunCompilation.cs @AntonLapounov /src/Tasks/Microsoft.NET.Build.Tasks/RunReadyToRunCompiler.cs @AntonLapounov -/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs clrappmodel@microsoft.com @dotnet/illink-contrib -/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishReadyToRun.cs @AntonLapounov +/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs clrappmodel@microsoft.com @dotnet/illink-contrib +/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishReadyToRun.cs @AntonLapounov # Publish.targets related to ILLink and ReadyToRun is own by both runtime and SDK team /src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Publish.targets clrappmodel@microsoft.com @dotnet/illink-contrib @AntonLapounov @dotnet/dotnet-cli /src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.ClickOnce.targets @sujitnayak # Area-Watch /src/Assets/TestProjects/Watch*/ @tmat @arkalyanms @dotnet/roslyn-ide -/src/Tests/dotnet-watch.Tests/ @tmat @arkalyanms @dotnet/roslyn-ide -/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/ @dotnet/aspnet-blazor-eng +/test/dotnet-watch.Tests/ @tmat @arkalyanms @dotnet/roslyn-ide +/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/ @dotnet/aspnet-blazor-eng /src/BuiltInTools/* @tmat @arkalyanms @dotnet/roslyn-ide /src/BuiltInTools/BrowserRefresh @dotnet/aspnet-blazor-eng # Compatibility tools owned by runtime team /src/Compatibility/ @dotnet/area-infrastructure-libraries -/src/Tests/Microsoft.DotNet.ApiCompatibility*/ @dotnet/area-infrastructure-libraries -/src/Tests/Microsoft.DotNet.ApiCompat*/ @dotnet/area-infrastructure-libraries -/src/Tests/Microsoft.DotNet.PackageValidation*/ @dotnet/area-infrastructure-libraries +/test/Microsoft.DotNet.ApiCompatibility*/ @dotnet/area-infrastructure-libraries +/test/Microsoft.DotNet.ApiCompat*/ @dotnet/area-infrastructure-libraries +/test/Microsoft.DotNet.PackageValidation*/ @dotnet/area-infrastructure-libraries # Area-GenAPI /src/Compatibility/GenAPI/ @dotnet/area-infrastructure-libraries @andriipatsula /src/Compatibility/Microsoft.DotNet.ApiSymbolExtensions/ @dotnet/area-infrastructure-libraries @andriipatsula -/src/Tests/Microsoft.DotNet.GenAPI/ @dotnet/area-infrastructure-libraries @andriipatsula -/src/Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests/ +/test/Microsoft.DotNet.GenAPI/ @dotnet/area-infrastructure-libraries @andriipatsula +/test/Microsoft.DotNet.ApiSymbolExtensions.Tests/ # Area: dotnet containers /src/Cli/Containers @dotnet/sdk-container-builds-maintainers -/src/Tests/containerize.UnitTests @dotnet/sdk-container-builds-maintainers -/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests @dotnet/sdk-container-builds-maintainers -/src/Tests/Microsoft.NET.Build.Containers.UnitTests @dotnet/sdk-container-builds-maintainers +/test/containerize.UnitTests @dotnet/sdk-container-builds-maintainers +/test/Microsoft.NET.Build.Containers.IntegrationTests @dotnet/sdk-container-builds-maintainers +/test/Microsoft.NET.Build.Containers.UnitTests @dotnet/sdk-container-builds-maintainers diff --git a/TemplateEngine.slnf b/TemplateEngine.slnf index d9167c489b23..fdaa4d4678a7 100644 --- a/TemplateEngine.slnf +++ b/TemplateEngine.slnf @@ -14,10 +14,10 @@ "src\\Microsoft.Win32.Msi\\Microsoft.Win32.Msi.csproj", "src\\Resolvers\\Microsoft.DotNet.NativeWrapper\\Microsoft.DotNet.NativeWrapper.csproj", "src\\Resolvers\\Microsoft.DotNet.SdkResolver\\Microsoft.DotNet.SdkResolver.csproj", - "src\\Tests\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", - "src\\Tests\\Microsoft.TemplateEngine.Cli.UnitTests\\Microsoft.TemplateEngine.Cli.UnitTests.csproj", - "src\\Tests\\dotnet-new.Tests\\dotnet-new.IntegrationTests.csproj", - "src\\Tests\\dotnet.Tests\\dotnet.Tests.csproj", + "test\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", + "test\\Microsoft.TemplateEngine.Cli.UnitTests\\Microsoft.TemplateEngine.Cli.UnitTests.csproj", + "test\\dotnet-new.Tests\\dotnet-new.IntegrationTests.csproj", + "test\\dotnet.Tests\\dotnet.Tests.csproj", "template_feed\\Microsoft.DotNet.Common.ItemTemplates\\Microsoft.DotNet.Common.ItemTemplates.csproj", "template_feed\\Microsoft.DotNet.Common.ProjectTemplates.9.0\\Microsoft.DotNet.Common.ProjectTemplates.9.0.csproj" ] diff --git a/containers.slnf b/containers.slnf index a11c0fd22a92..c18d1b752409 100644 --- a/containers.slnf +++ b/containers.slnf @@ -7,10 +7,10 @@ "src\\Containers\\Microsoft.NET.Build.Containers\\Microsoft.NET.Build.Containers.csproj", "src\\Containers\\containerize\\containerize.csproj", "src\\Containers\\packaging\\package.csproj", - "src\\Tests\\Microsoft.NET.Build.Containers.IntegrationTests\\Microsoft.NET.Build.Containers.IntegrationTests.csproj", - "src\\Tests\\Microsoft.NET.Build.Containers.UnitTests\\Microsoft.NET.Build.Containers.UnitTests.csproj", - "src\\Tests\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", - "src\\Tests\\containerize.UnitTests\\containerize.UnitTests.csproj" + "test\\Microsoft.NET.Build.Containers.IntegrationTests\\Microsoft.NET.Build.Containers.IntegrationTests.csproj", + "test\\Microsoft.NET.Build.Containers.UnitTests\\Microsoft.NET.Build.Containers.UnitTests.csproj", + "test\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", + "test\\containerize.UnitTests\\containerize.UnitTests.csproj" ] } } \ No newline at end of file diff --git a/documentation/project-docs/developer-guide.md b/documentation/project-docs/developer-guide.md index 90f3f6661231..7bbfa6831a1f 100644 --- a/documentation/project-docs/developer-guide.md +++ b/documentation/project-docs/developer-guide.md @@ -129,7 +129,7 @@ Run "dotnet --debug " which will launch dotnet and pause waiting for us ```shell build.cmd # to have a full build first .\artifacts\sdk-build-env.bat -cd src\Tests\YOURTEST.Tests # cd to the test folder that contains the test csproj file +cd test\YOURTEST.Tests # cd to the test folder that contains the test csproj file dotnet test --filter "FullyQualifiedName~TESTNAME" # run individual test ``` diff --git a/documentation/project-docs/repro-helix-failure.md b/documentation/project-docs/repro-helix-failure.md index 9821ebe1345b..88826085e2f3 100644 --- a/documentation/project-docs/repro-helix-failure.md +++ b/documentation/project-docs/repro-helix-failure.md @@ -18,7 +18,7 @@ REM use build env to have stage 0 dotnet on the PATH .\artifacts\sdk-build-env.bat REM run the special test target CreateLocalHelixTestLayout. To have the test layout created on disk. -dotnet msbuild /restore /t:CreateLocalHelixTestLayout .\src\Tests\UnitTests.proj /p:creator=dotnetsdkdev /p:_CustomHelixTargetQueue=Windows.Server.Amd64.VS2019.Pre.Open /bl +dotnet msbuild /restore /t:CreateLocalHelixTestLayout .\test\UnitTests.proj /p:creator=dotnetsdkdev /p:_CustomHelixTargetQueue=Windows.Server.Amd64.VS2019.Pre.Open /bl ``` Copy the result of `artifacts\bin\localHelixTestLayout` to another directory or VM. For example to `C:\helix\localHelixTestLayout`. See "Folders under localHelixTestLayout" for the content. This is _correlation_ payload in helix term. @@ -26,7 +26,7 @@ Copy the result of `artifacts\bin\localHelixTestLayout` to another directory or Publish the test project you want to repro. For example Microsoft.NET.Build.Tests. ```cmd -dotnet publish src\Tests\Microsoft.NET.Build.Tests\ +dotnet publish test\Microsoft.NET.Build.Tests\ ``` The output is in `artifacts\bin\Tests\Microsoft.NET.Build.Tests\Debug\publish`. Copy this folder to another directory or VM. For example `C:\helix\payload-dir`. This is the "workitem payload" in helix term. @@ -64,4 +64,4 @@ Due to Helix long path problem. The folders under localHelixTestLayout all have - New test environment variable introduced has not been reflected in RunTestsOnHelix.cmd. -- To test out changes to the Helix tasks, you can run the unit test project directly: `dotnet -t:Test .\src\Tests\UnitTests.proj /p:_CustomHelixTargetQueue=foo /bl` It won't be able to push the files into helix but it will let you view what helix work items are getting created. +- To test out changes to the Helix tasks, you can run the unit test project directly: `dotnet -t:Test .\test\UnitTests.proj /p:_CustomHelixTargetQueue=foo /bl` It won't be able to push the files into helix but it will let you view what helix work items are getting created. diff --git a/eng/build.yml b/eng/build.yml index 6582582f2cd4..7980caed2df5 100644 --- a/eng/build.yml +++ b/eng/build.yml @@ -88,7 +88,7 @@ jobs: -ci -restore $(_Test) - -projects $(Build.SourcesDirectory)\src\Tests\UnitTests.proj + -projects $(Build.SourcesDirectory)\test\UnitTests.proj /bl:$(Build.SourcesDirectory)\artifacts\log\$(_BuildConfig)\TestInHelix.binlog /p:_CustomHelixTargetQueue=${{ parameters.helixTargetQueue }} $(_InternalRuntimeDownloadArgs) @@ -120,7 +120,7 @@ jobs: -ci -restore -test - -projects $(Build.SourcesDirectory)\src\Tests\UnitTests.proj + -projects $(Build.SourcesDirectory)\test\UnitTests.proj /bl:$(Build.SourcesDirectory)\artifacts\log\$(_BuildConfig)\TestInHelix.binlog /p:_CustomHelixTargetQueue=${{ parameters.helixTargetQueue }} $(_InternalRuntimeDownloadArgs) @@ -161,7 +161,7 @@ jobs: -ci -restore -test - -projects $(Build.SourcesDirectory)/src/Tests/UnitTests.proj + -projects $(Build.SourcesDirectory)/test/UnitTests.proj /bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/TestInHelix.binlog /p:_CustomHelixTargetQueue=${{ parameters.helixTargetQueue }} $(_InternalRuntimeDownloadArgs) @@ -268,7 +268,7 @@ jobs: -restore -test -prepareMachine - -projects $(Build.SourcesDirectory)/src/Tests/UnitTests.proj + -projects $(Build.SourcesDirectory)/test/UnitTests.proj -configuration $(_BuildConfig) /bl:$(Build.SourcesDirectory)\artifacts\log\$(_BuildConfig)\TestInHelix.binlog /p:_CustomHelixTargetQueue=${{ parameters.helixTargetQueue }} @@ -302,7 +302,7 @@ jobs: --ci --restore --test - --projects $(Build.SourcesDirectory)/src/Tests/UnitTests.proj + --projects $(Build.SourcesDirectory)/test/UnitTests.proj /bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/TestInHelix.binlog /p:_CustomHelixTargetQueue=${{ parameters.helixTargetQueue }} $(_InternalRuntimeDownloadArgs) @@ -396,7 +396,7 @@ jobs: -ci -restore $(_Test) - -projects $(Build.SourcesDirectory)\src\Tests\Microsoft.TemplateEngine.Cli.UnitTests\Microsoft.TemplateEngine.Cli.UnitTests.csproj + -projects $(Build.SourcesDirectory)\test\Microsoft.TemplateEngine.Cli.UnitTests\Microsoft.TemplateEngine.Cli.UnitTests.csproj /bl:$(Build.SourcesDirectory)\artifacts\log\$(_BuildConfig)\TemplateEngine.Cli.UnitTests.binlog $(_InternalRuntimeDownloadArgs) displayName: Run TemplateEngine Cli Unit Tests @@ -406,7 +406,7 @@ jobs: -ci -restore $(_Test) - -projects $(Build.SourcesDirectory)\src\Tests\dotnet-new.Tests\dotnet-new.IntegrationTests.csproj + -projects $(Build.SourcesDirectory)\test\dotnet-new.Tests\dotnet-new.IntegrationTests.csproj /bl:$(Build.SourcesDirectory)\artifacts\log\$(_BuildConfig)\dotnet-new.IntegrationTests.binlog $(_InternalRuntimeDownloadArgs) displayName: Run dotnet new Integration Tests @@ -430,7 +430,7 @@ jobs: -ci -restore -test - -projects $(Build.SourcesDirectory)/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj + -projects $(Build.SourcesDirectory)/test/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj /bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/TemplateEngine.Cli.UnitTests.binlog $(_InternalRuntimeDownloadArgs) displayName: Run TemplateEngine Cli Unit Tests @@ -440,7 +440,7 @@ jobs: -ci -restore -test - -projects $(Build.SourcesDirectory)/src/Tests/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj + -projects $(Build.SourcesDirectory)/test/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj /bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/dotnet-new.IntegrationTests.binlog $(_InternalRuntimeDownloadArgs) displayName: Run dotnet new Integration Tests diff --git a/sdk.sln b/sdk.sln index 2644b853a868..91faf55b21b5 100644 --- a/sdk.sln +++ b/sdk.sln @@ -43,31 +43,31 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{580D1AE7 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{5293658E-96D2-421F-A789-D0B6BA129570}" ProjectSection(SolutionItems) = preProject - src\Tests\Common\Program.cs = src\Tests\Common\Program.cs + test\Common\Program.cs = test\Common\Program.cs EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Build.Tests", "src\Tests\Microsoft.NET.Build.Tests\Microsoft.NET.Build.Tests.csproj", "{52CB4546-DD2D-4207-B6E1-494C9506D1C1}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Build.Tests", "test\Microsoft.NET.Build.Tests\Microsoft.NET.Build.Tests.csproj", "{52CB4546-DD2D-4207-B6E1-494C9506D1C1}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Clean.Tests", "src\Tests\Microsoft.NET.Clean.Tests\Microsoft.NET.Clean.Tests.csproj", "{5CBFF0EE-71EA-49CC-8369-34A9A62C8116}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Clean.Tests", "test\Microsoft.NET.Clean.Tests\Microsoft.NET.Clean.Tests.csproj", "{5CBFF0EE-71EA-49CC-8369-34A9A62C8116}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Pack.Tests", "src\Tests\Microsoft.NET.Pack.Tests\Microsoft.NET.Pack.Tests.csproj", "{8746DC05-3035-4F24-9F2C-BAAAB5B50FD3}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Pack.Tests", "test\Microsoft.NET.Pack.Tests\Microsoft.NET.Pack.Tests.csproj", "{8746DC05-3035-4F24-9F2C-BAAAB5B50FD3}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Publish.Tests", "src\Tests\Microsoft.NET.Publish.Tests\Microsoft.NET.Publish.Tests.csproj", "{5B3E6EC9-AD8D-4F68-A9F8-C60CF11F4753}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Publish.Tests", "test\Microsoft.NET.Publish.Tests\Microsoft.NET.Publish.Tests.csproj", "{5B3E6EC9-AD8D-4F68-A9F8-C60CF11F4753}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Rebuild.Tests", "src\Tests\Microsoft.NET.Rebuild.Tests\Microsoft.NET.Rebuild.Tests.csproj", "{8283544E-9704-40C5-BEC2-2781413AA3CF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Rebuild.Tests", "test\Microsoft.NET.Rebuild.Tests\Microsoft.NET.Rebuild.Tests.csproj", "{8283544E-9704-40C5-BEC2-2781413AA3CF}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Restore.Tests", "src\Tests\Microsoft.NET.Restore.Tests\Microsoft.NET.Restore.Tests.csproj", "{112668D7-322D-4F83-A6CE-B814C25AD3BF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Restore.Tests", "test\Microsoft.NET.Restore.Tests\Microsoft.NET.Restore.Tests.csproj", "{112668D7-322D-4F83-A6CE-B814C25AD3BF}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.TestFramework", "src\Tests\Microsoft.NET.TestFramework\Microsoft.NET.TestFramework.csproj", "{CAF71BDC-7B7D-4A43-AB8C-E440A1E4F108}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.TestFramework", "test\Microsoft.NET.TestFramework\Microsoft.NET.TestFramework.csproj", "{CAF71BDC-7B7D-4A43-AB8C-E440A1E4F108}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CommandLine", "CommandLine", "{7C6A88D0-DBCC-4933-A92D-A0AC133DD5FC}" ProjectSection(SolutionItems) = preProject - src\Tests\Common\CommandLine\TestCommandLine.Default.cs = src\Tests\Common\CommandLine\TestCommandLine.Default.cs + test\Common\CommandLine\TestCommandLine.Default.cs = test\Common\CommandLine\TestCommandLine.Default.cs EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.ToolPack.Tests", "src\Tests\Microsoft.NET.ToolPack.Tests\Microsoft.NET.ToolPack.Tests.csproj", "{6F72FAA2-4E46-4382-940A-4F0290E070E2}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.ToolPack.Tests", "test\Microsoft.NET.ToolPack.Tests\Microsoft.NET.ToolPack.Tests.csproj", "{6F72FAA2-4E46-4382-940A-4F0290E070E2}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryStdOutLogger", "src\Tests\TelemetryStdOutLogger\TelemetryStdOutLogger.csproj", "{E740A596-2CAE-476C-8062-49705C3A9CF0}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelemetryStdOutLogger", "test\TelemetryStdOutLogger\TelemetryStdOutLogger.csproj", "{E740A596-2CAE-476C-8062-49705C3A9CF0}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Cli", "Cli", "{9CEF03F6-1A61-431A-8ABD-9095974629AE}" EndProject @@ -93,35 +93,35 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "redist", "src\Layout\redist EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "toolset-tasks", "src\Layout\toolset-tasks\toolset-tasks.csproj", "{C687CA8D-9843-4045-BC20-917953F6C864}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Msbuild.Tests.Utilities", "src\Tests\Msbuild.Tests.Utilities\Msbuild.Tests.Utilities.csproj", "{64294C35-9001-4FF9-975F-43D283EE5FA9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Msbuild.Tests.Utilities", "test\Msbuild.Tests.Utilities\Msbuild.Tests.Utilities.csproj", "{64294C35-9001-4FF9-975F-43D283EE5FA9}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet.Tests", "src\Tests\dotnet.Tests\dotnet.Tests.csproj", "{C5F191E5-BF2E-4A7A-AE1D-E2393AAA6F99}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet.Tests", "test\dotnet.Tests\dotnet.Tests.csproj", "{C5F191E5-BF2E-4A7A-AE1D-E2393AAA6F99}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Tools.Tests.ComponentMocks", "src\Tests\Microsoft.DotNet.Tools.Tests.ComponentMocks\Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj", "{99334000-EBF8-44D9-90D0-BE998ED3FE60}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Tools.Tests.ComponentMocks", "test\Microsoft.DotNet.Tools.Tests.ComponentMocks\Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj", "{99334000-EBF8-44D9-90D0-BE998ED3FE60}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-msbuild.Tests", "src\Tests\dotnet-msbuild.Tests\dotnet-msbuild.Tests.csproj", "{8FB015CE-1900-41EE-8E68-C222CE1B8561}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-msbuild.Tests", "test\dotnet-msbuild.Tests\dotnet-msbuild.Tests.csproj", "{8FB015CE-1900-41EE-8E68-C222CE1B8561}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-sln.Tests", "src\Tests\dotnet-sln.Tests\dotnet-sln.Tests.csproj", "{5D421BE2-66A9-43FC-877C-620ACED021EB}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-sln.Tests", "test\dotnet-sln.Tests\dotnet-sln.Tests.csproj", "{5D421BE2-66A9-43FC-877C-620ACED021EB}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ArgumentsReflector", "src\Tests\ArgumentsReflector\ArgumentsReflector.csproj", "{587A6639-FA2A-498C-8FA2-F77925DB732B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ArgumentsReflector", "test\ArgumentsReflector\ArgumentsReflector.csproj", "{587A6639-FA2A-498C-8FA2-F77925DB732B}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ArgumentForwarding.Tests", "src\Tests\ArgumentForwarding.Tests\ArgumentForwarding.Tests.csproj", "{2D8AA9EA-3013-47DE-B2DD-E074F67467ED}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ArgumentForwarding.Tests", "test\ArgumentForwarding.Tests\ArgumentForwarding.Tests.csproj", "{2D8AA9EA-3013-47DE-B2DD-E074F67467ED}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EndToEnd.Tests", "src\Tests\EndToEnd.Tests\EndToEnd.Tests.csproj", "{A0EFB2CB-517F-4746-902E-D0EBEFFBD89B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EndToEnd.Tests", "test\EndToEnd.Tests\EndToEnd.Tests.csproj", "{A0EFB2CB-517F-4746-902E-D0EBEFFBD89B}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Cli.Sln.Internal.Tests", "src\Tests\Microsoft.DotNet.Cli.Sln.Internal.Tests\Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj", "{82D910C3-A5E2-41F0-A142-F4F2D770CB59}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Cli.Sln.Internal.Tests", "test\Microsoft.DotNet.Cli.Sln.Internal.Tests\Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj", "{82D910C3-A5E2-41F0-A142-F4F2D770CB59}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Cli.Utils.Tests", "src\Tests\Microsoft.DotNet.Cli.Utils.Tests\Microsoft.DotNet.Cli.Utils.Tests.csproj", "{C34FB893-2320-41A3-9D38-0061C22A6464}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Cli.Utils.Tests", "test\Microsoft.DotNet.Cli.Utils.Tests\Microsoft.DotNet.Cli.Utils.Tests.csproj", "{C34FB893-2320-41A3-9D38-0061C22A6464}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.MSBuildSdkResolver.Tests", "src\Tests\Microsoft.DotNet.MSBuildSdkResolver.Tests\Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj", "{0AE2AB83-1F0D-4E04-9C8D-5C35CE97FDDC}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.MSBuildSdkResolver.Tests", "test\Microsoft.DotNet.MSBuildSdkResolver.Tests\Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj", "{0AE2AB83-1F0D-4E04-9C8D-5C35CE97FDDC}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.PackageInstall.Tests", "src\Tests\Microsoft.DotNet.PackageInstall.Tests\Microsoft.DotNet.PackageInstall.Tests.csproj", "{3D20D19D-74FB-4A43-B78C-B0AF90A696A0}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.PackageInstall.Tests", "test\Microsoft.DotNet.PackageInstall.Tests\Microsoft.DotNet.PackageInstall.Tests.csproj", "{3D20D19D-74FB-4A43-B78C-B0AF90A696A0}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Tools.Tests.Utilities.Tests", "src\Tests\Microsoft.DotNet.Tools.Tests.Utilities.Tests\Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj", "{BE6B9618-2262-4FF7-B762-FB97A7A1A0B8}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Tools.Tests.Utilities.Tests", "test\Microsoft.DotNet.Tools.Tests.Utilities.Tests\Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj", "{BE6B9618-2262-4FF7-B762-FB97A7A1A0B8}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "msbuild.Integration.Tests", "src\Tests\msbuild.Integration.Tests\msbuild.Integration.Tests.csproj", "{45281FB4-EAFA-4D62-84BA-47546C04D653}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "msbuild.Integration.Tests", "test\msbuild.Integration.Tests\msbuild.Integration.Tests.csproj", "{45281FB4-EAFA-4D62-84BA-47546C04D653}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelixTasks", "src\Tests\HelixTasks\HelixTasks.csproj", "{818165C4-6D22-4FA6-AAAF-DC66DA72450A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelixTasks", "test\HelixTasks\HelixTasks.csproj", "{818165C4-6D22-4FA6-AAAF-DC66DA72450A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WebSdk", "WebSdk", "{974F9450-8895-41D9-8328-D55AFF81A814}" ProjectSection(SolutionItems) = preProject @@ -159,7 +159,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Web.Tasks EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Worker.Tasks", "src\WebSdk\Worker\Tasks\Microsoft.NET.Sdk.Worker.Tasks.csproj", "{ACB5302C-8641-4E12-B7F7-0122D2A97C31}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Publish.Tasks.Tests", "src\Tests\Microsoft.NET.Sdk.Publish.Tasks.Tests\Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj", "{1F26FAE6-2654-4E83-8936-146134638C59}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Publish.Tasks.Tests", "test\Microsoft.NET.Sdk.Publish.Tasks.Tests\Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj", "{1F26FAE6-2654-4E83-8936-146134638C59}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Sdk (2)", "Sdk (2)", "{F717D467-EF88-49B9-AD67-55FC6350A9DE}" ProjectSection(SolutionItems) = preProject @@ -254,7 +254,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tasks (2)", "Tasks (2)", "{ EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.TemplateLocator", "src\Microsoft.DotNet.TemplateLocator\Microsoft.DotNet.TemplateLocator.csproj", "{89F798D9-A8BA-4556-B2A2-39CEF3587093}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.TemplateLocator.Tests", "src\Tests\Microsoft.DotNet.TemplateLocator.Tests\Microsoft.DotNet.TemplateLocator.Tests.csproj", "{360F049F-D501-478A-98BD-A2BA4DB000B9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.TemplateLocator.Tests", "test\Microsoft.DotNet.TemplateLocator.Tests\Microsoft.DotNet.TemplateLocator.Tests.csproj", "{360F049F-D501-478A-98BD-A2BA4DB000B9}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Resolvers", "Resolvers", "{8F22FBD6-BDC8-431E-8402-B7460D3A9724}" EndProject @@ -266,7 +266,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.WorkloadM EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkloadManifestValidator", "src\Resolvers\WorkloadManifestValidator\WorkloadManifestValidator.csproj", "{565411E4-E89D-4DF3-ADD5-55D3295F30EE}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.WorkloadManifestReader.Tests", "src\Tests\Microsoft.NET.Sdk.WorkloadManifestReader.Tests\Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj", "{988D4839-B97F-42BB-A045-C79157CA7780}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.WorkloadManifestReader.Tests", "test\Microsoft.NET.Sdk.WorkloadManifestReader.Tests\Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj", "{988D4839-B97F-42BB-A045-C79157CA7780}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver", "src\Resolvers\Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver\Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.csproj", "{56F189B0-6A8E-4A9D-B7AE-24241204E98D}" EndProject @@ -276,15 +276,15 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-watch", "src\BuiltIn EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Watch.BrowserRefresh", "src\BuiltInTools\BrowserRefresh\Microsoft.AspNetCore.Watch.BrowserRefresh.csproj", "{A82EF2B9-24BC-4569-8FE5-9EF51017F4CB}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-watch.Tests", "src\Tests\dotnet-watch.Tests\dotnet-watch.Tests.csproj", "{CCE1A328-9CFE-44D3-B68F-FE84A039ACEA}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-watch.Tests", "test\dotnet-watch.Tests\dotnet-watch.Tests.csproj", "{CCE1A328-9CFE-44D3-B68F-FE84A039ACEA}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Watch.BrowserRefresh.Tests", "src\Tests\Microsoft.AspNetCore.Watch.BrowserRefresh.Tests\Microsoft.AspNetCore.Watch.BrowserRefresh.Tests.csproj", "{81ADA3FA-AC26-4149-8CFC-EC7808ECB820}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Watch.BrowserRefresh.Tests", "test\Microsoft.AspNetCore.Watch.BrowserRefresh.Tests\Microsoft.AspNetCore.Watch.BrowserRefresh.Tests.csproj", "{81ADA3FA-AC26-4149-8CFC-EC7808ECB820}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNetWatchTasks", "src\BuiltInTools\DotNetWatchTasks\DotNetWatchTasks.csproj", "{A41DF752-6F21-4036-AD02-DD37B11A2723}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.BlazorWebAssembly.Tasks", "src\BlazorWasmSdk\Tasks\Microsoft.NET.Sdk.BlazorWebAssembly.Tasks.csproj", "{4AE60971-C960-4DDF-B671-8B3E32C1AFD2}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.BlazorWebAssembly.Tests", "src\Tests\Microsoft.NET.Sdk.BlazorWebAssembly.Tests\Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj", "{CB7F74C6-BF0A-4CD6-94B4-BBF47AF9BB56}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.BlazorWebAssembly.Tests", "test\Microsoft.NET.Sdk.BlazorWebAssembly.Tests\Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj", "{CB7F74C6-BF0A-4CD6-94B4-BBF47AF9BB56}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.BlazorWebAssembly.Tool", "src\BlazorWasmSdk\Tool\Microsoft.NET.Sdk.BlazorWebAssembly.Tool.csproj", "{6CFB4CBF-1618-4D13-8880-518939E1809A}" EndProject @@ -304,9 +304,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RazorSdk", "RazorSdk", "{E9 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Razor.Tasks", "src\RazorSdk\Tasks\Microsoft.NET.Sdk.Razor.Tasks.csproj", "{8A0288C8-3F81-4CE1-B81A-C9BCDE506E57}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Razor.Tests", "src\Tests\Microsoft.NET.Sdk.Razor.Tests\Microsoft.NET.Sdk.Razor.Tests.csproj", "{8076A8AF-01FA-4B3C-B2BB-BC612B1BD7D5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Razor.Tests", "test\Microsoft.NET.Sdk.Razor.Tests\Microsoft.NET.Sdk.Razor.Tests.csproj", "{8076A8AF-01FA-4B3C-B2BB-BC612B1BD7D5}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Razor.Tool.Tests", "src\Tests\Microsoft.NET.Sdk.Razor.Tool.Tests\Microsoft.NET.Sdk.Razor.Tool.Tests.csproj", "{08C9E634-39F3-4B24-BCEA-D0B21971EBBE}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Razor.Tool.Tests", "test\Microsoft.NET.Sdk.Razor.Tool.Tests\Microsoft.NET.Sdk.Razor.Tool.Tests.csproj", "{08C9E634-39F3-4B24-BCEA-D0B21971EBBE}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tool", "Tool", "{5BE2A52C-E48E-4AFC-A530-47B61A040694}" EndProject @@ -349,21 +349,21 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ApiCompat", "ApiCompat", "{ EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiCompatibility", "src\Compatibility\ApiCompat\Microsoft.DotNet.ApiCompatibility\Microsoft.DotNet.ApiCompatibility.csproj", "{3F5A028C-C51B-434A-8C10-37680CD2635C}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiCompatibility.Tests", "src\Tests\Microsoft.DotNet.ApiCompatibility.Tests\Microsoft.DotNet.ApiCompatibility.Tests.csproj", "{24F084ED-35BB-401E-89F5-63E5E22C3B3B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiCompatibility.Tests", "test\Microsoft.DotNet.ApiCompatibility.Tests\Microsoft.DotNet.ApiCompatibility.Tests.csproj", "{24F084ED-35BB-401E-89F5-63E5E22C3B3B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Win32.Msi", "src\Microsoft.Win32.Msi\Microsoft.Win32.Msi.csproj", "{3D002392-6308-41DF-8BD5-224CCC5B049F}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Win32.Msi.Tests", "src\Tests\Microsoft.Win32.Msi.Tests\Microsoft.Win32.Msi.Tests.csproj", "{80932949-B8B2-4163-B325-76F8FDBE3897}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Win32.Msi.Tests", "test\Microsoft.Win32.Msi.Tests\Microsoft.Win32.Msi.Tests.csproj", "{80932949-B8B2-4163-B325-76F8FDBE3897}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Win32.Msi.Manual.Tests", "src\Tests\Microsoft.Win32.Msi.Manual.Tests\Microsoft.Win32.Msi.Manual.Tests.csproj", "{EEF4C7DD-CDC9-44B6-8B4F-725647D54ED8}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Win32.Msi.Manual.Tests", "test\Microsoft.Win32.Msi.Manual.Tests\Microsoft.Win32.Msi.Manual.Tests.csproj", "{EEF4C7DD-CDC9-44B6-8B4F-725647D54ED8}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.PackageValidation", "src\Compatibility\ApiCompat\Microsoft.DotNet.PackageValidation\Microsoft.DotNet.PackageValidation.csproj", "{E56BEA9A-B52A-4781-9FF4-217439923319}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.PackageValidation.Tests", "src\Tests\Microsoft.DotNet.PackageValidation.Tests\Microsoft.DotNet.PackageValidation.Tests.csproj", "{69C03400-12AC-4E4D-B970-6A880616BF68}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.PackageValidation.Tests", "test\Microsoft.DotNet.PackageValidation.Tests\Microsoft.DotNet.PackageValidation.Tests.csproj", "{69C03400-12AC-4E4D-B970-6A880616BF68}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.DotNetDeltaApplier.Tests", "src\Tests\Microsoft.Extensions.DotNetDeltaApplier.Tests\Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj", "{FAAC2E23-A460-40FE-9207-C10EEE5A6A07}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.DotNetDeltaApplier.Tests", "test\Microsoft.Extensions.DotNetDeltaApplier.Tests\Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj", "{FAAC2E23-A460-40FE-9207-C10EEE5A6A07}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests", "src\Tests\Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests\Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj", "{920F6448-C2D0-4B01-AC25-16214C5A6006}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests", "test\Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests\Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj", "{920F6448-C2D0-4B01-AC25-16214C5A6006}" EndProject Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Microsoft.DotNet.ApiCompat.Shared", "src\Compatibility\ApiCompat\Microsoft.DotNet.ApiCompat.Shared\Microsoft.DotNet.ApiCompat.Shared.shproj", "{9D36039F-D0A1-462F-85B4-81763C6B02CB}" EndProject @@ -371,11 +371,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiCompat. EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiCompat.Tool", "src\Compatibility\ApiCompat\Microsoft.DotNet.ApiCompat.Tool\Microsoft.DotNet.ApiCompat.Tool.csproj", "{0A3C9AFD-F6E6-4A5D-83FB-93BF66732696}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "trustedroots.Tests", "src\Tests\trustedroots.Tests\trustedroots.Tests.csproj", "{08A18C0B-8985-49EE-AC80-EFEEDF18BCC5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "trustedroots.Tests", "test\trustedroots.Tests\trustedroots.Tests.csproj", "{08A18C0B-8985-49EE-AC80-EFEEDF18BCC5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.TemplateEngine.Cli", "src\Cli\Microsoft.TemplateEngine.Cli\Microsoft.TemplateEngine.Cli.csproj", "{9C16B0D8-8B4D-479B-9861-2645BFB0A169}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.TemplateEngine.Cli.UnitTests", "src\Tests\Microsoft.TemplateEngine.Cli.UnitTests\Microsoft.TemplateEngine.Cli.UnitTests.csproj", "{F08F3E99-5294-4CE7-B492-38FE588D8428}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.TemplateEngine.Cli.UnitTests", "test\Microsoft.TemplateEngine.Cli.UnitTests\Microsoft.TemplateEngine.Cli.UnitTests.csproj", "{F08F3E99-5294-4CE7-B492-38FE588D8428}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-new3", "src\Cli\dotnet-new3\dotnet-new3.csproj", "{628C09B7-BE6B-4AD4-AF41-C8863C809B31}" EndProject @@ -385,11 +385,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Common.Ite EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Common.ProjectTemplates.9.0", "template_feed\Microsoft.DotNet.Common.ProjectTemplates.9.0\Microsoft.DotNet.Common.ProjectTemplates.9.0.csproj", "{AB7ADCF8-48AC-4885-9C70-16D752B97168}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-new.IntegrationTests", "src\Tests\dotnet-new.Tests\dotnet-new.IntegrationTests.csproj", "{8868D816-C072-4B66-84D6-7E014EA16D48}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-new.IntegrationTests", "test\dotnet-new.Tests\dotnet-new.IntegrationTests.csproj", "{8868D816-C072-4B66-84D6-7E014EA16D48}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiCompat.IntegrationTests", "src\Tests\Microsoft.DotNet.ApiCompat.IntegrationTests\Microsoft.DotNet.ApiCompat.IntegrationTests.csproj", "{AE43BEC0-4BB7-42E1-B2B7-60A36092C61A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiCompat.IntegrationTests", "test\Microsoft.DotNet.ApiCompat.IntegrationTests\Microsoft.DotNet.ApiCompat.IntegrationTests.csproj", "{AE43BEC0-4BB7-42E1-B2B7-60A36092C61A}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiCompat.Tests", "src\Tests\Microsoft.DotNet.ApiCompat.Tests\Microsoft.DotNet.ApiCompat.Tests.csproj", "{A9103B98-D888-4260-8A05-FA36F640698A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiCompat.Tests", "test\Microsoft.DotNet.ApiCompat.Tests\Microsoft.DotNet.ApiCompat.Tests.csproj", "{A9103B98-D888-4260-8A05-FA36F640698A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.TemplateEngine.TestTemplates", "src\Assets\TestPackages\dotnet-new\Microsoft.TemplateEngine.TestTemplates.csproj", "{C37EC61D-6A88-4C15-B371-A61F23EF9072}" EndProject @@ -403,15 +403,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GenAPI", "GenAPI", "{95D8B0 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.GenAPI.Tool", "src\Compatibility\GenAPI\Microsoft.DotNet.GenAPI.Tool\Microsoft.DotNet.GenAPI.Tool.csproj", "{9C08C7BD-EC01-42FA-AF1B-4177686DFC64}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.GenAPI.Tests", "src\Tests\Microsoft.DotNet.GenAPI.Tests\Microsoft.DotNet.GenAPI.Tests.csproj", "{5D81D6AA-E198-4537-AE1C-549367DAF187}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.GenAPI.Tests", "test\Microsoft.DotNet.GenAPI.Tests\Microsoft.DotNet.GenAPI.Tests.csproj", "{5D81D6AA-E198-4537-AE1C-549367DAF187}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiSymbolExtensions.Tests", "src\Tests\Microsoft.DotNet.ApiSymbolExtensions.Tests\Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj", "{E2BC296E-2660-4692-B471-F6FCD4C19F6E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.ApiSymbolExtensions.Tests", "test\Microsoft.DotNet.ApiSymbolExtensions.Tests\Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj", "{E2BC296E-2660-4692-B471-F6FCD4C19F6E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.GenAPI", "src\Compatibility\GenAPI\Microsoft.DotNet.GenAPI\Microsoft.DotNet.GenAPI.csproj", "{5F74AD67-A4AD-4660-A63C-844DAAF354C4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.GenAPI.Task", "src\Compatibility\GenAPI\Microsoft.DotNet.GenAPI.Task\Microsoft.DotNet.GenAPI.Task.csproj", "{C419AE2D-D318-49EB-8ECA-6A5DC13FE4EA}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Web.Tests", "src\Tests\Microsoft.NET.Sdk.Web.Tests\Microsoft.NET.Sdk.Web.Tests.csproj", "{B8A61A5C-A9A4-45C5-97E3-CB368358682F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Sdk.Web.Tests", "test\Microsoft.NET.Sdk.Web.Tests\Microsoft.NET.Sdk.Web.Tests.csproj", "{B8A61A5C-A9A4-45C5-97E3-CB368358682F}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "StaticWebAssetsSdk", "StaticWebAssetsSdk", "{9E9F3BB2-6FED-47BC-869C-BFAF6E7C85FC}" EndProject @@ -467,13 +467,13 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Build.Contain EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "package", "src\Containers\packaging\package.csproj", "{DEA8FE40-0AE9-4CE6-9430-089C985217CA}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "containerize.UnitTests", "src\Tests\containerize.UnitTests\containerize.UnitTests.csproj", "{F04DB812-7278-47F2-913E-225CE2EF150C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "containerize.UnitTests", "test\containerize.UnitTests\containerize.UnitTests.csproj", "{F04DB812-7278-47F2-913E-225CE2EF150C}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Build.Containers.IntegrationTests", "src\Tests\Microsoft.NET.Build.Containers.IntegrationTests\Microsoft.NET.Build.Containers.IntegrationTests.csproj", "{7DCA2BEC-B1E1-4F2B-952A-A26B5110FDA5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Build.Containers.IntegrationTests", "test\Microsoft.NET.Build.Containers.IntegrationTests\Microsoft.NET.Build.Containers.IntegrationTests.csproj", "{7DCA2BEC-B1E1-4F2B-952A-A26B5110FDA5}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Build.Containers.UnitTests", "src\Tests\Microsoft.NET.Build.Containers.UnitTests\Microsoft.NET.Build.Containers.UnitTests.csproj", "{E54506B8-0B81-4FC4-99B5-5C67E19D4B09}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.NET.Build.Containers.UnitTests", "test\Microsoft.NET.Build.Containers.UnitTests\Microsoft.NET.Build.Containers.UnitTests.csproj", "{E54506B8-0B81-4FC4-99B5-5C67E19D4B09}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SDDLTests", "src\Tests\SDDLTests\SDDLTests.csproj", "{FEA8B7B5-901B-4A3A-948F-7E5F54F09FF5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SDDLTests", "test\SDDLTests\SDDLTests.csproj", "{FEA8B7B5-901B-4A3A-948F-7E5F54F09FF5}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Compatibility", "Compatibility", "{44E564E1-AE0D-4313-A4E9-CBF2109397E3}" EndProject diff --git a/src/Assets/TestProjects/VSTestEnvironmentVariables/Tests.cs b/src/Assets/TestProjects/VSTestEnvironmentVariables/Tests.cs index 3d8505ce077c..966b7ab23992 100644 --- a/src/Assets/TestProjects/VSTestEnvironmentVariables/Tests.cs +++ b/src/Assets/TestProjects/VSTestEnvironmentVariables/Tests.cs @@ -23,7 +23,7 @@ public void TestEnvironmentVariables() Console.WriteLine($"{key}={value}"); } - // This project is compiled, and executed by the tests in "src/Tests/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs" + // This project is compiled, and executed by the tests in "test/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs" // The values are set there. AssertEnvironmentVariable("__DOTNET_TEST_ENVIRONMENT_VARIABLE_EMPTY", string.Empty); AssertEnvironmentVariable("__DOTNET_TEST_ENVIRONMENT_VARIABLE_1", "VALUE1"); diff --git a/src/Assets/TestProjects/VSTestForwardDotnetRootEnvironmentVariables/Tests.cs b/src/Assets/TestProjects/VSTestForwardDotnetRootEnvironmentVariables/Tests.cs index fd021bd8f4ba..3de940ec7980 100644 --- a/src/Assets/TestProjects/VSTestForwardDotnetRootEnvironmentVariables/Tests.cs +++ b/src/Assets/TestProjects/VSTestForwardDotnetRootEnvironmentVariables/Tests.cs @@ -13,7 +13,7 @@ public class Tests [TestMethod] public void TestForwardDotnetRootEnvironmentVariables() { - // This project is compiled, and executed by the tests in "src/Tests/dotnet-test.Tests/GivenDotnetTestForwardDotnetRootEnvironmentVariables.cs" + // This project is compiled, and executed by the tests in "test/dotnet-test.Tests/GivenDotnetTestForwardDotnetRootEnvironmentVariables.cs" foreach (DictionaryEntry env in Environment.GetEnvironmentVariables()) { if (env.Key.ToString().Contains("VSTEST_WINAPPHOST_")) diff --git a/src/BlazorWasmSdk/BlazorWasmSdk.slnf b/src/BlazorWasmSdk/BlazorWasmSdk.slnf index 5547e380d569..b019aad1ef9b 100644 --- a/src/BlazorWasmSdk/BlazorWasmSdk.slnf +++ b/src/BlazorWasmSdk/BlazorWasmSdk.slnf @@ -4,8 +4,8 @@ "projects": [ "src\\BlazorWasmSdk\\Tasks\\Microsoft.NET.Sdk.BlazorWebAssembly.Tasks.csproj", "src\\BlazorWasmSdk\\Tool\\Microsoft.NET.Sdk.BlazorWebAssembly.Tool.csproj", - "src\\Tests\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj", - "src\\Tests\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests\\Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj" + "test\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj", + "test\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests\\Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj" ] } } diff --git a/src/BuiltInTools/dotnet-watch.slnf b/src/BuiltInTools/dotnet-watch.slnf index 76764371d81b..06b19e7ec8b8 100644 --- a/src/BuiltInTools/dotnet-watch.slnf +++ b/src/BuiltInTools/dotnet-watch.slnf @@ -6,10 +6,10 @@ "src\\BuiltInTools\\DotNetDeltaApplier\\Microsoft.Extensions.DotNetDeltaApplier.csproj", "src\\BuiltInTools\\DotNetWatchTasks\\DotNetWatchTasks.csproj", "src\\BuiltInTools\\dotnet-watch\\dotnet-watch.csproj", - "src\\Tests\\Microsoft.AspNetCore.Watch.BrowserRefresh.Tests\\Microsoft.AspNetCore.Watch.BrowserRefresh.Tests.csproj", - "src\\Tests\\Microsoft.Extensions.DotNetDeltaApplier.Tests\\Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj", - "src\\Tests\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", - "src\\Tests\\dotnet-watch.Tests\\dotnet-watch.Tests.csproj" + "test\\Microsoft.AspNetCore.Watch.BrowserRefresh.Tests\\Microsoft.AspNetCore.Watch.BrowserRefresh.Tests.csproj", + "test\\Microsoft.Extensions.DotNetDeltaApplier.Tests\\Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj", + "test\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", + "test\\dotnet-watch.Tests\\dotnet-watch.Tests.csproj" ] } } \ No newline at end of file diff --git a/src/Cli/dotnet/commands/dotnet-new/README.md b/src/Cli/dotnet/commands/dotnet-new/README.md index b7251eaabda2..ec88a11f5f78 100644 --- a/src/Cli/dotnet/commands/dotnet-new/README.md +++ b/src/Cli/dotnet/commands/dotnet-new/README.md @@ -14,10 +14,10 @@ Main `muscles` of `dotnet new` are implemented in [`Microsoft.TemplateEngine.Cli Consider adding unit tests and/or integration tests when contributing. The unit tests are located in: -- [`dotnet` unit tests](https://github.com/dotnet/sdk/tree/main/src/Tests/dotnet.Tests/dotnet-new) -- [`Microsoft.TemplateEngine.Cli`](https://github.com/dotnet/sdk/tree/main/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests) +- [`dotnet` unit tests](https://github.com/dotnet/sdk/tree/main/test/dotnet.Tests/dotnet-new) +- [`Microsoft.TemplateEngine.Cli`](https://github.com/dotnet/sdk/tree/main/test/Microsoft.TemplateEngine.Cli.UnitTests) -The integration tests are located [here](https://github.com/dotnet/sdk/tree/main/src/Tests/dotnet-new.Tests). +The integration tests are located [here](https://github.com/dotnet/sdk/tree/main/test/dotnet-new.Tests). Please follow existing tests to see how to run `dotnet new` under different conditions. Assets for unit and integration tests are defined [here](https://github.com/dotnet/sdk/tree/main/src/Assets/TestPackages/dotnet-new). diff --git a/src/Compatibility/ApiCompat/apicompat.slnf b/src/Compatibility/ApiCompat/apicompat.slnf index 5d7c737d22f6..620623b90d3e 100644 --- a/src/Compatibility/ApiCompat/apicompat.slnf +++ b/src/Compatibility/ApiCompat/apicompat.slnf @@ -11,12 +11,12 @@ "src\\Compatibility\\ApiCompat\\Microsoft.DotNet.PackageValidation\\Microsoft.DotNet.PackageValidation.csproj", "src\\Compatibility\\Microsoft.DotNet.ApiSymbolExtensions\\Microsoft.DotNet.ApiSymbolExtensions.csproj", "src\\Layout\\toolset-tasks\\toolset-tasks.csproj", - "src\\Tests\\Microsoft.DotNet.ApiCompat.IntegrationTests\\Microsoft.DotNet.ApiCompat.IntegrationTests.csproj", - "src\\Tests\\Microsoft.DotNet.ApiCompat.Tests\\Microsoft.DotNet.ApiCompat.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.ApiCompatibility.Tests\\Microsoft.DotNet.ApiCompatibility.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.ApiSymbolExtensions.Tests\\Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.PackageValidation.Tests\\Microsoft.DotNet.PackageValidation.Tests.csproj", - "src\\Tests\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj" + "test\\Microsoft.DotNet.ApiCompat.IntegrationTests\\Microsoft.DotNet.ApiCompat.IntegrationTests.csproj", + "test\\Microsoft.DotNet.ApiCompat.Tests\\Microsoft.DotNet.ApiCompat.Tests.csproj", + "test\\Microsoft.DotNet.ApiCompatibility.Tests\\Microsoft.DotNet.ApiCompatibility.Tests.csproj", + "test\\Microsoft.DotNet.ApiSymbolExtensions.Tests\\Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj", + "test\\Microsoft.DotNet.PackageValidation.Tests\\Microsoft.DotNet.PackageValidation.Tests.csproj", + "test\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj" ] } } \ No newline at end of file diff --git a/src/Compatibility/GenAPI/genapi.slnf b/src/Compatibility/GenAPI/genapi.slnf index 430676a5e1ff..aa944adf090d 100644 --- a/src/Compatibility/GenAPI/genapi.slnf +++ b/src/Compatibility/GenAPI/genapi.slnf @@ -9,9 +9,9 @@ "src\\Compatibility\\GenAPI\\Microsoft.DotNet.GenAPI\\Microsoft.DotNet.GenAPI.csproj", "src\\Compatibility\\Microsoft.DotNet.ApiSymbolExtensions\\Microsoft.DotNet.ApiSymbolExtensions.csproj", "src\\Layout\\toolset-tasks\\toolset-tasks.csproj", - "src\\Tests\\Microsoft.DotNet.ApiSymbolExtensions.Tests\\Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.GenAPI.Tests\\Microsoft.DotNet.GenAPI.Tests.csproj", - "src\\Tests\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj" + "test\\Microsoft.DotNet.ApiSymbolExtensions.Tests\\Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj", + "test\\Microsoft.DotNet.GenAPI.Tests\\Microsoft.DotNet.GenAPI.Tests.csproj", + "test\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj" ] } } \ No newline at end of file diff --git a/src/Compatibility/compatibility.slnf b/src/Compatibility/compatibility.slnf index 8f227c881b9e..ab10435bc0e9 100644 --- a/src/Compatibility/compatibility.slnf +++ b/src/Compatibility/compatibility.slnf @@ -13,13 +13,13 @@ "src\\Compatibility\\GenAPI\\Microsoft.DotNet.GenAPI.Tool\\Microsoft.DotNet.GenAPI.Tool.csproj", "src\\Compatibility\\GenAPI\\Microsoft.DotNet.GenAPI\\Microsoft.DotNet.GenAPI.csproj", "src\\Compatibility\\Microsoft.DotNet.ApiSymbolExtensions\\Microsoft.DotNet.ApiSymbolExtensions.csproj", - "src\\Tests\\Microsoft.DotNet.ApiCompat.IntegrationTests\\Microsoft.DotNet.ApiCompat.IntegrationTests.csproj", - "src\\Tests\\Microsoft.DotNet.ApiCompat.Tests\\Microsoft.DotNet.ApiCompat.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.ApiCompatibility.Tests\\Microsoft.DotNet.ApiCompatibility.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.ApiSymbolExtensions.Tests\\Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.GenAPI.Tests\\Microsoft.DotNet.GenAPI.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.PackageValidation.Tests\\Microsoft.DotNet.PackageValidation.Tests.csproj", - "src\\Tests\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj" + "test\\Microsoft.DotNet.ApiCompat.IntegrationTests\\Microsoft.DotNet.ApiCompat.IntegrationTests.csproj", + "test\\Microsoft.DotNet.ApiCompat.Tests\\Microsoft.DotNet.ApiCompat.Tests.csproj", + "test\\Microsoft.DotNet.ApiCompatibility.Tests\\Microsoft.DotNet.ApiCompatibility.Tests.csproj", + "test\\Microsoft.DotNet.ApiSymbolExtensions.Tests\\Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj", + "test\\Microsoft.DotNet.GenAPI.Tests\\Microsoft.DotNet.GenAPI.Tests.csproj", + "test\\Microsoft.DotNet.PackageValidation.Tests\\Microsoft.DotNet.PackageValidation.Tests.csproj", + "test\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj" ] } } \ No newline at end of file diff --git a/src/RazorSdk/Razor.slnf b/src/RazorSdk/Razor.slnf index d7b24d0d520d..c29dba3946f8 100644 --- a/src/RazorSdk/Razor.slnf +++ b/src/RazorSdk/Razor.slnf @@ -10,10 +10,10 @@ "src\\RazorSdk\\Tool\\Microsoft.NET.Sdk.Razor.Tool.csproj", "src\\Resolvers\\Microsoft.DotNet.NativeWrapper\\Microsoft.DotNet.NativeWrapper.csproj", "src\\StaticWebAssetsSdk\\Tasks\\Microsoft.NET.Sdk.StaticWebAssets.Tasks.csproj", - "src\\Tests\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj", - "src\\Tests\\Microsoft.NET.Sdk.Razor.Tests\\Microsoft.NET.Sdk.Razor.Tests.csproj", - "src\\Tests\\Microsoft.NET.Sdk.Razor.Tool.Tests\\Microsoft.NET.Sdk.Razor.Tool.Tests.csproj", - "src\\Tests\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", + "test\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests\\Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj", + "test\\Microsoft.NET.Sdk.Razor.Tests\\Microsoft.NET.Sdk.Razor.Tests.csproj", + "test\\Microsoft.NET.Sdk.Razor.Tool.Tests\\Microsoft.NET.Sdk.Razor.Tool.Tests.csproj", + "test\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", "src\\WasmSdk\\Tasks\\Microsoft.NET.Sdk.WebAssembly.Tasks.csproj" ] } diff --git a/src/RazorSdk/update-test-baselines.ps1 b/src/RazorSdk/update-test-baselines.ps1 index 800bed8e8f4c..148963c95fc8 100644 --- a/src/RazorSdk/update-test-baselines.ps1 +++ b/src/RazorSdk/update-test-baselines.ps1 @@ -2,7 +2,7 @@ param([switch] $Validate) $RepoRoot= Resolve-Path "$PSScriptRoot/../.." $TestProjects = "Microsoft.NET.Sdk.Razor.Tests", "Microsoft.NET.Sdk.BlazorWebAssembly.Tests" | - ForEach-Object { Join-Path -Path "$RepoRoot/src/Tests/" -ChildPath $_ }; + ForEach-Object { Join-Path -Path "$RepoRoot/test/" -ChildPath $_ }; if($Validate){ $TestProjects | ForEach-Object { dotnet test --no-build -l "console;verbosity=normal" $_ --filter AspNetCore=BaselineTest } diff --git a/src/Tasks/Microsoft.NET.Build.Extensions.Tasks.UnitTests/Microsoft.NET.Build.Extensions.Tasks.UnitTests.csproj b/src/Tasks/Microsoft.NET.Build.Extensions.Tasks.UnitTests/Microsoft.NET.Build.Extensions.Tasks.UnitTests.csproj index 9fbe6990e2ff..109d01102759 100644 --- a/src/Tasks/Microsoft.NET.Build.Extensions.Tasks.UnitTests/Microsoft.NET.Build.Extensions.Tasks.UnitTests.csproj +++ b/src/Tasks/Microsoft.NET.Build.Extensions.Tasks.UnitTests/Microsoft.NET.Build.Extensions.Tasks.UnitTests.csproj @@ -2,8 +2,6 @@ - - Tests\$(MSBuildProjectName) @@ -30,7 +28,7 @@ - + diff --git a/src/Tasks/Microsoft.NET.Build.Tasks.UnitTests/Microsoft.NET.Build.Tasks.UnitTests.csproj b/src/Tasks/Microsoft.NET.Build.Tasks.UnitTests/Microsoft.NET.Build.Tasks.UnitTests.csproj index c6e5b535ebba..f12b4090a865 100644 --- a/src/Tasks/Microsoft.NET.Build.Tasks.UnitTests/Microsoft.NET.Build.Tasks.UnitTests.csproj +++ b/src/Tasks/Microsoft.NET.Build.Tasks.UnitTests/Microsoft.NET.Build.Tasks.UnitTests.csproj @@ -30,12 +30,12 @@ - + - + diff --git a/src/Tasks/Microsoft.NET.slnf b/src/Tasks/Microsoft.NET.slnf index b93469e51743..8f76631ac1c2 100644 --- a/src/Tasks/Microsoft.NET.slnf +++ b/src/Tasks/Microsoft.NET.slnf @@ -25,40 +25,40 @@ "src\\Tasks\\Microsoft.NET.Build.Extensions.Tasks\\Microsoft.NET.Build.Extensions.Tasks.csproj", "src\\Tasks\\Microsoft.NET.Build.Tasks.UnitTests\\Microsoft.NET.Build.Tasks.UnitTests.csproj", "src\\Tasks\\Microsoft.NET.Build.Tasks\\Microsoft.NET.Build.Tasks.csproj", - "src\\Tests\\ArgumentForwarding.Tests\\ArgumentForwarding.Tests.csproj", - "src\\Tests\\ArgumentsReflector\\ArgumentsReflector.csproj", - "src\\Tests\\EndToEnd.Tests\\EndToEnd.Tests.csproj", - "src\\Tests\\HelixTasks\\HelixTasks.csproj", - "src\\Tests\\Microsoft.DotNet.ApiCompat.IntegrationTests\\Microsoft.DotNet.ApiCompat.IntegrationTests.csproj", - "src\\Tests\\Microsoft.DotNet.ApiCompat.Tests\\Microsoft.DotNet.ApiCompat.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.ApiCompatibility.Tests\\Microsoft.DotNet.ApiCompatibility.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.Cli.Sln.Internal.Tests\\Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.Cli.Utils.Tests\\Microsoft.DotNet.Cli.Utils.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.MSBuildSdkResolver.Tests\\Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.PackageInstall.Tests\\Microsoft.DotNet.PackageInstall.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.PackageValidation.Tests\\Microsoft.DotNet.PackageValidation.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.TemplateLocator.Tests\\Microsoft.DotNet.TemplateLocator.Tests.csproj", - "src\\Tests\\Microsoft.DotNet.Tools.Tests.ComponentMocks\\Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj", - "src\\Tests\\Microsoft.DotNet.Tools.Tests.Utilities.Tests\\Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj", - "src\\Tests\\Microsoft.Extensions.DotNetDeltaApplier.Tests\\Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj", - "src\\Tests\\Microsoft.NET.Build.Tests\\Microsoft.NET.Build.Tests.csproj", - "src\\Tests\\Microsoft.NET.Clean.Tests\\Microsoft.NET.Clean.Tests.csproj", - "src\\Tests\\Microsoft.NET.Pack.Tests\\Microsoft.NET.Pack.Tests.csproj", - "src\\Tests\\Microsoft.NET.Publish.Tests\\Microsoft.NET.Publish.Tests.csproj", - "src\\Tests\\Microsoft.NET.Rebuild.Tests\\Microsoft.NET.Rebuild.Tests.csproj", - "src\\Tests\\Microsoft.NET.Restore.Tests\\Microsoft.NET.Restore.Tests.csproj", - "src\\Tests\\Microsoft.NET.Sdk.Publish.Tasks.Tests\\Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj", - "src\\Tests\\Microsoft.NET.Sdk.WorkloadManifestReader.Tests\\Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj", - "src\\Tests\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", - "src\\Tests\\Microsoft.NET.ToolPack.Tests\\Microsoft.NET.ToolPack.Tests.csproj", - "src\\Tests\\Microsoft.Win32.Msi.Manual.Tests\\Microsoft.Win32.Msi.Manual.Tests.csproj", - "src\\Tests\\Microsoft.Win32.Msi.Tests\\Microsoft.Win32.Msi.Tests.csproj", - "src\\Tests\\Msbuild.Tests.Utilities\\Msbuild.Tests.Utilities.csproj", - "src\\Tests\\TelemetryStdOutLogger\\TelemetryStdOutLogger.csproj", - "src\\Tests\\dotnet-msbuild.Tests\\dotnet-msbuild.Tests.csproj", - "src\\Tests\\dotnet-sln.Tests\\dotnet-sln.Tests.csproj", - "src\\Tests\\dotnet.Tests\\dotnet.Tests.csproj", - "src\\Tests\\msbuild.Integration.Tests\\msbuild.Integration.Tests.csproj" + "test\\ArgumentForwarding.Tests\\ArgumentForwarding.Tests.csproj", + "test\\ArgumentsReflector\\ArgumentsReflector.csproj", + "test\\EndToEnd.Tests\\EndToEnd.Tests.csproj", + "test\\HelixTasks\\HelixTasks.csproj", + "test\\Microsoft.DotNet.ApiCompat.IntegrationTests\\Microsoft.DotNet.ApiCompat.IntegrationTests.csproj", + "test\\Microsoft.DotNet.ApiCompat.Tests\\Microsoft.DotNet.ApiCompat.Tests.csproj", + "test\\Microsoft.DotNet.ApiCompatibility.Tests\\Microsoft.DotNet.ApiCompatibility.Tests.csproj", + "test\\Microsoft.DotNet.Cli.Sln.Internal.Tests\\Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj", + "test\\Microsoft.DotNet.Cli.Utils.Tests\\Microsoft.DotNet.Cli.Utils.Tests.csproj", + "test\\Microsoft.DotNet.MSBuildSdkResolver.Tests\\Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj", + "test\\Microsoft.DotNet.PackageInstall.Tests\\Microsoft.DotNet.PackageInstall.Tests.csproj", + "test\\Microsoft.DotNet.PackageValidation.Tests\\Microsoft.DotNet.PackageValidation.Tests.csproj", + "test\\Microsoft.DotNet.TemplateLocator.Tests\\Microsoft.DotNet.TemplateLocator.Tests.csproj", + "test\\Microsoft.DotNet.Tools.Tests.ComponentMocks\\Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj", + "test\\Microsoft.DotNet.Tools.Tests.Utilities.Tests\\Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj", + "test\\Microsoft.Extensions.DotNetDeltaApplier.Tests\\Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj", + "test\\Microsoft.NET.Build.Tests\\Microsoft.NET.Build.Tests.csproj", + "test\\Microsoft.NET.Clean.Tests\\Microsoft.NET.Clean.Tests.csproj", + "test\\Microsoft.NET.Pack.Tests\\Microsoft.NET.Pack.Tests.csproj", + "test\\Microsoft.NET.Publish.Tests\\Microsoft.NET.Publish.Tests.csproj", + "test\\Microsoft.NET.Rebuild.Tests\\Microsoft.NET.Rebuild.Tests.csproj", + "test\\Microsoft.NET.Restore.Tests\\Microsoft.NET.Restore.Tests.csproj", + "test\\Microsoft.NET.Sdk.Publish.Tasks.Tests\\Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj", + "test\\Microsoft.NET.Sdk.WorkloadManifestReader.Tests\\Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj", + "test\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", + "test\\Microsoft.NET.ToolPack.Tests\\Microsoft.NET.ToolPack.Tests.csproj", + "test\\Microsoft.Win32.Msi.Manual.Tests\\Microsoft.Win32.Msi.Manual.Tests.csproj", + "test\\Microsoft.Win32.Msi.Tests\\Microsoft.Win32.Msi.Tests.csproj", + "test\\Msbuild.Tests.Utilities\\Msbuild.Tests.Utilities.csproj", + "test\\TelemetryStdOutLogger\\TelemetryStdOutLogger.csproj", + "test\\dotnet-msbuild.Tests\\dotnet-msbuild.Tests.csproj", + "test\\dotnet-sln.Tests\\dotnet-sln.Tests.csproj", + "test\\dotnet.Tests\\dotnet.Tests.csproj", + "test\\msbuild.Integration.Tests\\msbuild.Integration.Tests.csproj" ] } } \ No newline at end of file diff --git a/src/Tests/dotnet-sln.Tests/dotnet-sln.Tests.csproj b/src/Tests/dotnet-sln.Tests/dotnet-sln.Tests.csproj deleted file mode 100644 index 54762e73d3c9..000000000000 --- a/src/Tests/dotnet-sln.Tests/dotnet-sln.Tests.csproj +++ /dev/null @@ -1,28 +0,0 @@ - - - Tests\$(MSBuildProjectName) - - - - - - $(ToolsetTargetFramework) - Exe - MicrosoftAspNetCore - - - - - - - - - - - - - - - - - diff --git a/src/WebSdk/WebSdk.slnf b/src/WebSdk/WebSdk.slnf index dcaebea6ae57..6d6f9f4cd069 100644 --- a/src/WebSdk/WebSdk.slnf +++ b/src/WebSdk/WebSdk.slnf @@ -6,7 +6,7 @@ "src\\WebSdk\\Publish\\Tasks\\Microsoft.NET.Sdk.Publish.Tasks.csproj", "src\\WebSdk\\Web\\Tasks\\Microsoft.NET.Sdk.Web.Tasks.csproj", "src\\WebSdk\\Worker\\Tasks\\Microsoft.NET.Sdk.Worker.Tasks.csproj", - "src\\Tests\\Microsoft.NET.Sdk.Publish.Tasks.Tests\\Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj" + "test\\Microsoft.NET.Sdk.Publish.Tasks.Tests\\Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj" ] } } \ No newline at end of file diff --git a/src/Tests/ArgumentForwarding.Tests/ArgumentForwarding.Tests.csproj b/test/ArgumentForwarding.Tests/ArgumentForwarding.Tests.csproj similarity index 94% rename from src/Tests/ArgumentForwarding.Tests/ArgumentForwarding.Tests.csproj rename to test/ArgumentForwarding.Tests/ArgumentForwarding.Tests.csproj index ff90346f3d59..0a8b0483b7be 100644 --- a/src/Tests/ArgumentForwarding.Tests/ArgumentForwarding.Tests.csproj +++ b/test/ArgumentForwarding.Tests/ArgumentForwarding.Tests.csproj @@ -8,7 +8,7 @@ - + diff --git a/src/Tests/ArgumentForwarding.Tests/ArgumentForwardingTests.cs b/test/ArgumentForwarding.Tests/ArgumentForwardingTests.cs similarity index 100% rename from src/Tests/ArgumentForwarding.Tests/ArgumentForwardingTests.cs rename to test/ArgumentForwarding.Tests/ArgumentForwardingTests.cs diff --git a/src/Tests/ArgumentsReflector/ArgumentsReflector.csproj b/test/ArgumentsReflector/ArgumentsReflector.csproj similarity index 100% rename from src/Tests/ArgumentsReflector/ArgumentsReflector.csproj rename to test/ArgumentsReflector/ArgumentsReflector.csproj diff --git a/src/Tests/ArgumentsReflector/Reflector.cs b/test/ArgumentsReflector/Reflector.cs similarity index 100% rename from src/Tests/ArgumentsReflector/Reflector.cs rename to test/ArgumentsReflector/Reflector.cs diff --git a/src/Tests/ArgumentsReflector/reflector_cmd.cmd b/test/ArgumentsReflector/reflector_cmd.cmd similarity index 100% rename from src/Tests/ArgumentsReflector/reflector_cmd.cmd rename to test/ArgumentsReflector/reflector_cmd.cmd diff --git a/src/Tests/Common/Empty.props b/test/Common/Empty.props similarity index 100% rename from src/Tests/Common/Empty.props rename to test/Common/Empty.props diff --git a/src/Tests/Common/Empty.targets b/test/Common/Empty.targets similarity index 100% rename from src/Tests/Common/Empty.targets rename to test/Common/Empty.targets diff --git a/src/Tests/Common/Program.UnitTests.cs b/test/Common/Program.UnitTests.cs similarity index 100% rename from src/Tests/Common/Program.UnitTests.cs rename to test/Common/Program.UnitTests.cs diff --git a/src/Tests/Common/Program.cs b/test/Common/Program.cs similarity index 100% rename from src/Tests/Common/Program.cs rename to test/Common/Program.cs diff --git a/src/Tests/Directory.Build.props b/test/Directory.Build.props similarity index 96% rename from src/Tests/Directory.Build.props rename to test/Directory.Build.props index 75289dab8b59..82e7362363f8 100644 --- a/src/Tests/Directory.Build.props +++ b/test/Directory.Build.props @@ -7,7 +7,7 @@ $(DefaultItemExcludes);**/*.tmp - + true diff --git a/src/Tests/Directory.Build.targets b/test/Directory.Build.targets similarity index 94% rename from src/Tests/Directory.Build.targets rename to test/Directory.Build.targets index 48565a5e5c1d..0aa80c6f4e1e 100644 --- a/src/Tests/Directory.Build.targets +++ b/test/Directory.Build.targets @@ -22,7 +22,7 @@ - @@ -81,6 +81,6 @@ IgnoreStandardErrorWarningFormat="true" /> - + diff --git a/src/Tests/EndToEnd.Tests/EndToEnd.Tests.csproj b/test/EndToEnd.Tests/EndToEnd.Tests.csproj similarity index 100% rename from src/Tests/EndToEnd.Tests/EndToEnd.Tests.csproj rename to test/EndToEnd.Tests/EndToEnd.Tests.csproj diff --git a/src/Tests/EndToEnd.Tests/GivenDotNetLinuxInstallers.cs b/test/EndToEnd.Tests/GivenDotNetLinuxInstallers.cs similarity index 100% rename from src/Tests/EndToEnd.Tests/GivenDotNetLinuxInstallers.cs rename to test/EndToEnd.Tests/GivenDotNetLinuxInstallers.cs diff --git a/src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs b/test/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs similarity index 100% rename from src/Tests/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs rename to test/EndToEnd.Tests/GivenDotNetUsesMSBuild.cs diff --git a/src/Tests/EndToEnd.Tests/GivenDotnetUsesDotnetTools.cs b/test/EndToEnd.Tests/GivenDotnetUsesDotnetTools.cs similarity index 100% rename from src/Tests/EndToEnd.Tests/GivenDotnetUsesDotnetTools.cs rename to test/EndToEnd.Tests/GivenDotnetUsesDotnetTools.cs diff --git a/src/Tests/EndToEnd.Tests/GivenNetFrameworkSupportsNetStandard2.cs b/test/EndToEnd.Tests/GivenNetFrameworkSupportsNetStandard2.cs similarity index 100% rename from src/Tests/EndToEnd.Tests/GivenNetFrameworkSupportsNetStandard2.cs rename to test/EndToEnd.Tests/GivenNetFrameworkSupportsNetStandard2.cs diff --git a/src/Tests/HelixTasks/AssemblyScheduler.cs b/test/HelixTasks/AssemblyScheduler.cs similarity index 100% rename from src/Tests/HelixTasks/AssemblyScheduler.cs rename to test/HelixTasks/AssemblyScheduler.cs diff --git a/src/Tests/HelixTasks/CreateLocalHelixTestLayout.cs b/test/HelixTasks/CreateLocalHelixTestLayout.cs similarity index 100% rename from src/Tests/HelixTasks/CreateLocalHelixTestLayout.cs rename to test/HelixTasks/CreateLocalHelixTestLayout.cs diff --git a/src/Tests/HelixTasks/HelixTasks.csproj b/test/HelixTasks/HelixTasks.csproj similarity index 100% rename from src/Tests/HelixTasks/HelixTasks.csproj rename to test/HelixTasks/HelixTasks.csproj diff --git a/src/Tests/HelixTasks/SDKCustomCreateXUnitWorkItemsWithTestExclusion.cs b/test/HelixTasks/SDKCustomCreateXUnitWorkItemsWithTestExclusion.cs similarity index 100% rename from src/Tests/HelixTasks/SDKCustomCreateXUnitWorkItemsWithTestExclusion.cs rename to test/HelixTasks/SDKCustomCreateXUnitWorkItemsWithTestExclusion.cs diff --git a/src/Tests/HelixTasks/TarGzFileCreateFromDirectory.cs b/test/HelixTasks/TarGzFileCreateFromDirectory.cs similarity index 100% rename from src/Tests/HelixTasks/TarGzFileCreateFromDirectory.cs rename to test/HelixTasks/TarGzFileCreateFromDirectory.cs diff --git a/src/Tests/HelixTasks/TaskItemExtensions.cs b/test/HelixTasks/TaskItemExtensions.cs similarity index 100% rename from src/Tests/HelixTasks/TaskItemExtensions.cs rename to test/HelixTasks/TaskItemExtensions.cs diff --git a/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BlazorWasmHotReloadMiddlewareTest.cs b/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BlazorWasmHotReloadMiddlewareTest.cs similarity index 100% rename from src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BlazorWasmHotReloadMiddlewareTest.cs rename to test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BlazorWasmHotReloadMiddlewareTest.cs diff --git a/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BrowserRefreshMiddlewareTest.cs b/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BrowserRefreshMiddlewareTest.cs similarity index 100% rename from src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BrowserRefreshMiddlewareTest.cs rename to test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BrowserRefreshMiddlewareTest.cs diff --git a/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BrowserScriptMiddlewareTest.cs b/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BrowserScriptMiddlewareTest.cs similarity index 100% rename from src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BrowserScriptMiddlewareTest.cs rename to test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/BrowserScriptMiddlewareTest.cs diff --git a/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/HostingStartupTest.cs b/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/HostingStartupTest.cs similarity index 100% rename from src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/HostingStartupTest.cs rename to test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/HostingStartupTest.cs diff --git a/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests.csproj b/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests.csproj similarity index 100% rename from src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests.csproj rename to test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests.csproj diff --git a/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/WebSocketScriptInjectionTest.cs b/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/WebSocketScriptInjectionTest.cs similarity index 100% rename from src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/WebSocketScriptInjectionTest.cs rename to test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/WebSocketScriptInjectionTest.cs diff --git a/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/favicon.ico b/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/favicon.ico similarity index 100% rename from src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/favicon.ico rename to test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/favicon.ico diff --git a/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/index.html b/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/index.html similarity index 100% rename from src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/index.html rename to test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/index.html diff --git a/src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/largefile.html b/test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/largefile.html similarity index 100% rename from src/Tests/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/largefile.html rename to test/Microsoft.AspNetCore.Watch.BrowserRefresh.Tests/wwwroot/largefile.html diff --git a/src/Tests/Microsoft.DotNet.ApiCompat.IntegrationTests/CompatibleFrameworkInPackageValidatorIntegrationTests.cs b/test/Microsoft.DotNet.ApiCompat.IntegrationTests/CompatibleFrameworkInPackageValidatorIntegrationTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompat.IntegrationTests/CompatibleFrameworkInPackageValidatorIntegrationTests.cs rename to test/Microsoft.DotNet.ApiCompat.IntegrationTests/CompatibleFrameworkInPackageValidatorIntegrationTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompat.IntegrationTests/Microsoft.DotNet.ApiCompat.IntegrationTests.csproj b/test/Microsoft.DotNet.ApiCompat.IntegrationTests/Microsoft.DotNet.ApiCompat.IntegrationTests.csproj similarity index 93% rename from src/Tests/Microsoft.DotNet.ApiCompat.IntegrationTests/Microsoft.DotNet.ApiCompat.IntegrationTests.csproj rename to test/Microsoft.DotNet.ApiCompat.IntegrationTests/Microsoft.DotNet.ApiCompat.IntegrationTests.csproj index e1ba568a4bc7..48ca6c84d0de 100644 --- a/src/Tests/Microsoft.DotNet.ApiCompat.IntegrationTests/Microsoft.DotNet.ApiCompat.IntegrationTests.csproj +++ b/test/Microsoft.DotNet.ApiCompat.IntegrationTests/Microsoft.DotNet.ApiCompat.IntegrationTests.csproj @@ -24,7 +24,7 @@ - + diff --git a/src/Tests/Microsoft.DotNet.ApiCompat.IntegrationTests/Task/ValidateAssembliesTargetIntegrationTests.cs b/test/Microsoft.DotNet.ApiCompat.IntegrationTests/Task/ValidateAssembliesTargetIntegrationTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompat.IntegrationTests/Task/ValidateAssembliesTargetIntegrationTests.cs rename to test/Microsoft.DotNet.ApiCompat.IntegrationTests/Task/ValidateAssembliesTargetIntegrationTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompat.IntegrationTests/Task/ValidatePackageTargetIntegrationTests.cs b/test/Microsoft.DotNet.ApiCompat.IntegrationTests/Task/ValidatePackageTargetIntegrationTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompat.IntegrationTests/Task/ValidatePackageTargetIntegrationTests.cs rename to test/Microsoft.DotNet.ApiCompat.IntegrationTests/Task/ValidatePackageTargetIntegrationTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompat.Tests/Microsoft.DotNet.ApiCompat.Tests.csproj b/test/Microsoft.DotNet.ApiCompat.Tests/Microsoft.DotNet.ApiCompat.Tests.csproj similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompat.Tests/Microsoft.DotNet.ApiCompat.Tests.csproj rename to test/Microsoft.DotNet.ApiCompat.Tests/Microsoft.DotNet.ApiCompat.Tests.csproj diff --git a/src/Tests/Microsoft.DotNet.ApiCompat.Tests/RegexStringTransformerTests.cs b/test/Microsoft.DotNet.ApiCompat.Tests/RegexStringTransformerTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompat.Tests/RegexStringTransformerTests.cs rename to test/Microsoft.DotNet.ApiCompat.Tests/RegexStringTransformerTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/CompatDifferenceTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/CompatDifferenceTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/CompatDifferenceTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/CompatDifferenceTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/CustomSideNameTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/CustomSideNameTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/CustomSideNameTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/CustomSideNameTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Logging/EmptyTestSuppressionEngine.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Logging/EmptyTestSuppressionEngine.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Logging/EmptyTestSuppressionEngine.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Logging/EmptyTestSuppressionEngine.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Logging/SuppressionEngineTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Logging/SuppressionEngineTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Logging/SuppressionEngineTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Logging/SuppressionEngineTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Logging/SuppressionTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Logging/SuppressionTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Logging/SuppressionTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Logging/SuppressionTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Logging/TestSuppressionEngine.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Logging/TestSuppressionEngine.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Logging/TestSuppressionEngine.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Logging/TestSuppressionEngine.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/AssemblyMapperTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/AssemblyMapperTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/AssemblyMapperTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/AssemblyMapperTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/AssemblySetMapperTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/AssemblySetMapperTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/AssemblySetMapperTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/AssemblySetMapperTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/MemberMapperTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/MemberMapperTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/MemberMapperTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/MemberMapperTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/NamespaceMapperTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/NamespaceMapperTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/NamespaceMapperTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/NamespaceMapperTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/TypeMapperTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/TypeMapperTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/TypeMapperTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Mapping/TypeMapperTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Microsoft.DotNet.ApiCompatibility.Tests.csproj b/test/Microsoft.DotNet.ApiCompatibility.Tests/Microsoft.DotNet.ApiCompatibility.Tests.csproj similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Microsoft.DotNet.ApiCompatibility.Tests.csproj rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Microsoft.DotNet.ApiCompatibility.Tests.csproj diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/AssemblyIdentityMustMatchTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/AssemblyIdentityMustMatchTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/AssemblyIdentityMustMatchTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/AssemblyIdentityMustMatchTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/AttributesMustMatchTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/AttributesMustMatchTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/AttributesMustMatchTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/AttributesMustMatchTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddAbstractMemberTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddAbstractMemberTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddAbstractMemberTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddAbstractMemberTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddMemberToInterfaceTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddMemberToInterfaceTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddMemberToInterfaceTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddMemberToInterfaceTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddOrRemoveVirtualKeywordTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddOrRemoveVirtualKeywordTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddOrRemoveVirtualKeywordTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotAddOrRemoveVirtualKeywordTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotChangeVisibilityTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotChangeVisibilityTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotChangeVisibilityTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotChangeVisibilityTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotRemoveBaseTypeOrInterfaceTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotRemoveBaseTypeOrInterfaceTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotRemoveBaseTypeOrInterfaceTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotRemoveBaseTypeOrInterfaceTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotSealTypeTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotSealTypeTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotSealTypeTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/CannotSealTypeTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/EnumsMustMatchTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/EnumsMustMatchTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/EnumsMustMatchTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/EnumsMustMatchTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/MembersMustExistTests.Strict.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/MembersMustExistTests.Strict.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/MembersMustExistTests.Strict.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/MembersMustExistTests.Strict.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/MembersMustExistTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/MembersMustExistTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/MembersMustExistTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/MembersMustExistTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/ParameterNamesCannotChangeTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/ParameterNamesCannotChangeTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/ParameterNamesCannotChangeTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/ParameterNamesCannotChangeTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/TypeMustExistTests.Strict.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/TypeMustExistTests.Strict.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/TypeMustExistTests.Strict.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/TypeMustExistTests.Strict.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/TypeMustExistTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/TypeMustExistTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Rules/TypeMustExistTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Rules/TypeMustExistTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatOptionsTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatOptionsTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatOptionsTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatOptionsTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatRunnerTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatRunnerTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatRunnerTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatRunnerTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatWorkItemTests.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatWorkItemTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatWorkItemTests.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/Runner/ApiCompatWorkItemTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/SuppressibleTestLog.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/SuppressibleTestLog.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/SuppressibleTestLog.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/SuppressibleTestLog.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/SymbolFactoryExtensions.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/SymbolFactoryExtensions.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/SymbolFactoryExtensions.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/SymbolFactoryExtensions.cs diff --git a/src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/TestRuleFactory.cs b/test/Microsoft.DotNet.ApiCompatibility.Tests/TestRuleFactory.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiCompatibility.Tests/TestRuleFactory.cs rename to test/Microsoft.DotNet.ApiCompatibility.Tests/TestRuleFactory.cs diff --git a/src/Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests/AssemblySymbolLoaderTests.cs b/test/Microsoft.DotNet.ApiSymbolExtensions.Tests/AssemblySymbolLoaderTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests/AssemblySymbolLoaderTests.cs rename to test/Microsoft.DotNet.ApiSymbolExtensions.Tests/AssemblySymbolLoaderTests.cs diff --git a/src/Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj b/test/Microsoft.DotNet.ApiSymbolExtensions.Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj rename to test/Microsoft.DotNet.ApiSymbolExtensions.Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests.csproj diff --git a/src/Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests/SymbolFactory.cs b/test/Microsoft.DotNet.ApiSymbolExtensions.Tests/SymbolFactory.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests/SymbolFactory.cs rename to test/Microsoft.DotNet.ApiSymbolExtensions.Tests/SymbolFactory.cs diff --git a/src/Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests/TempDirectory.cs b/test/Microsoft.DotNet.ApiSymbolExtensions.Tests/TempDirectory.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ApiSymbolExtensions.Tests/TempDirectory.cs rename to test/Microsoft.DotNet.ApiSymbolExtensions.Tests/TempDirectory.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.cs b/test/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.cs rename to test/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj b/test/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj similarity index 83% rename from src/Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj rename to test/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj index 6747431e044d..1c9566e18687 100644 --- a/src/Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj +++ b/test/Microsoft.DotNet.Cli.Sln.Internal.Tests/Microsoft.DotNet.Cli.Sln.Internal.Tests.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/Tests/Microsoft.DotNet.Cli.Telemetry.PersistenceChannel.Tests/SenderTests.cs b/test/Microsoft.DotNet.Cli.Telemetry.PersistenceChannel.Tests/SenderTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Telemetry.PersistenceChannel.Tests/SenderTests.cs rename to test/Microsoft.DotNet.Cli.Telemetry.PersistenceChannel.Tests/SenderTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Telemetry.PersistenceChannel.Tests/StorageTests.cs b/test/Microsoft.DotNet.Cli.Telemetry.PersistenceChannel.Tests/StorageTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Telemetry.PersistenceChannel.Tests/StorageTests.cs rename to test/Microsoft.DotNet.Cli.Telemetry.PersistenceChannel.Tests/StorageTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/ArgumentEscaperTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/ArgumentEscaperTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/ArgumentEscaperTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/ArgumentEscaperTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/BlockingMemoryStreamTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/BlockingMemoryStreamTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/BlockingMemoryStreamTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/BlockingMemoryStreamTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/BuiltInCommandTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/BuiltInCommandTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/BuiltInCommandTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/BuiltInCommandTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/DangerousFileDetectorTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/DangerousFileDetectorTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/DangerousFileDetectorTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/DangerousFileDetectorTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/DependencyProviderTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/DependencyProviderTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/DependencyProviderTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/DependencyProviderTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/DotDefaultPathCorrectorTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/DotDefaultPathCorrectorTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/DotDefaultPathCorrectorTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/DotDefaultPathCorrectorTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/GivenAFrameworkDependencyFile.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/GivenAFrameworkDependencyFile.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/GivenAFrameworkDependencyFile.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/GivenAFrameworkDependencyFile.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/GivenAppThrowingException.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/GivenAppThrowingException.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/GivenAppThrowingException.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/GivenAppThrowingException.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/Microsoft.DotNet.Cli.Utils.Tests.csproj b/test/Microsoft.DotNet.Cli.Utils.Tests/Microsoft.DotNet.Cli.Utils.Tests.csproj similarity index 80% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/Microsoft.DotNet.Cli.Utils.Tests.csproj rename to test/Microsoft.DotNet.Cli.Utils.Tests/Microsoft.DotNet.Cli.Utils.Tests.csproj index 3f90f1d16199..26b3ab5addb4 100644 --- a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/Microsoft.DotNet.Cli.Utils.Tests.csproj +++ b/test/Microsoft.DotNet.Cli.Utils.Tests/Microsoft.DotNet.Cli.Utils.Tests.csproj @@ -6,7 +6,7 @@ - + diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/PathUtilityTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/PathUtilityTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/PathUtilityTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/PathUtilityTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/ProcessExtensionsTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/ProcessExtensionsTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/ProcessExtensionsTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/ProcessExtensionsTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/RuntimeEnvironmentTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/RuntimeEnvironmentTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/RuntimeEnvironmentTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/RuntimeEnvironmentTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/StreamForwarderTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/StreamForwarderTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/StreamForwarderTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/StreamForwarderTests.cs diff --git a/src/Tests/Microsoft.DotNet.Cli.Utils.Tests/TypoCorrectionTests.cs b/test/Microsoft.DotNet.Cli.Utils.Tests/TypoCorrectionTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Cli.Utils.Tests/TypoCorrectionTests.cs rename to test/Microsoft.DotNet.Cli.Utils.Tests/TypoCorrectionTests.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/CommandResolverTestUtils.cs b/test/Microsoft.DotNet.CommandFactory.Tests/CommandResolverTestUtils.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/CommandResolverTestUtils.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/CommandResolverTestUtils.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenACompositeCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenACompositeCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenACompositeCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenACompositeCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenADefaultCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenADefaultCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenADefaultCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenADefaultCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenADotnetToolsCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenADotnetToolsCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenADotnetToolsCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenADotnetToolsCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenALocalToolsCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenALocalToolsCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenALocalToolsCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenALocalToolsCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectDependencyCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectDependencyCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectDependencyCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectDependencyCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectPathCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectPathCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectPathCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectPathCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectToolsCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectToolsCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectToolsCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenAProjectToolsCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenARootedCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenARootedCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenARootedCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenARootedCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAScriptCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenAScriptCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAScriptCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenAScriptCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAnAppBaseCommandResolver.cs b/test/Microsoft.DotNet.CommandFactory.Tests/GivenAnAppBaseCommandResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.CommandFactory.Tests/GivenAnAppBaseCommandResolver.cs rename to test/Microsoft.DotNet.CommandFactory.Tests/GivenAnAppBaseCommandResolver.cs diff --git a/src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenADotnetFirstTimeUseConfigurer.cs b/test/Microsoft.DotNet.Configurer.UnitTests/GivenADotnetFirstTimeUseConfigurer.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenADotnetFirstTimeUseConfigurer.cs rename to test/Microsoft.DotNet.Configurer.UnitTests/GivenADotnetFirstTimeUseConfigurer.cs diff --git a/src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenADotnetFirstTimeUseConfigurerWIthStateSetup.cs b/test/Microsoft.DotNet.Configurer.UnitTests/GivenADotnetFirstTimeUseConfigurerWIthStateSetup.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenADotnetFirstTimeUseConfigurerWIthStateSetup.cs rename to test/Microsoft.DotNet.Configurer.UnitTests/GivenADotnetFirstTimeUseConfigurerWIthStateSetup.cs diff --git a/src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenAFirstTimeUseNoticeSentinel.cs b/test/Microsoft.DotNet.Configurer.UnitTests/GivenAFirstTimeUseNoticeSentinel.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenAFirstTimeUseNoticeSentinel.cs rename to test/Microsoft.DotNet.Configurer.UnitTests/GivenAFirstTimeUseNoticeSentinel.cs diff --git a/src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenAFunctionReturnStringAndFakeFileSystem.cs b/test/Microsoft.DotNet.Configurer.UnitTests/GivenAFunctionReturnStringAndFakeFileSystem.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenAFunctionReturnStringAndFakeFileSystem.cs rename to test/Microsoft.DotNet.Configurer.UnitTests/GivenAFunctionReturnStringAndFakeFileSystem.cs diff --git a/src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenAPathCalculator.cs b/test/Microsoft.DotNet.Configurer.UnitTests/GivenAPathCalculator.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Configurer.UnitTests/GivenAPathCalculator.cs rename to test/Microsoft.DotNet.Configurer.UnitTests/GivenAPathCalculator.cs diff --git a/src/Tests/Microsoft.DotNet.GenAPI.Tests/CSharpFileBuilderTests.cs b/test/Microsoft.DotNet.GenAPI.Tests/CSharpFileBuilderTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.GenAPI.Tests/CSharpFileBuilderTests.cs rename to test/Microsoft.DotNet.GenAPI.Tests/CSharpFileBuilderTests.cs diff --git a/src/Tests/Microsoft.DotNet.GenAPI.Tests/Microsoft.DotNet.GenAPI.Tests.csproj b/test/Microsoft.DotNet.GenAPI.Tests/Microsoft.DotNet.GenAPI.Tests.csproj similarity index 100% rename from src/Tests/Microsoft.DotNet.GenAPI.Tests/Microsoft.DotNet.GenAPI.Tests.csproj rename to test/Microsoft.DotNet.GenAPI.Tests/Microsoft.DotNet.GenAPI.Tests.csproj diff --git a/src/Tests/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/BodyBlockCSharpSyntaxRewriterTests.cs b/test/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/BodyBlockCSharpSyntaxRewriterTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/BodyBlockCSharpSyntaxRewriterTests.cs rename to test/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/BodyBlockCSharpSyntaxRewriterTests.cs diff --git a/src/Tests/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/CSharpSyntaxRewriterTestBase.cs b/test/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/CSharpSyntaxRewriterTestBase.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/CSharpSyntaxRewriterTestBase.cs rename to test/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/CSharpSyntaxRewriterTestBase.cs diff --git a/src/Tests/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/SingleLineStatementCSharpSyntaxRewriterTests.cs b/test/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/SingleLineStatementCSharpSyntaxRewriterTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/SingleLineStatementCSharpSyntaxRewriterTests.cs rename to test/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/SingleLineStatementCSharpSyntaxRewriterTests.cs diff --git a/src/Tests/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/TypeDeclarationCSharpSyntaxRewriterTests.cs b/test/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/TypeDeclarationCSharpSyntaxRewriterTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/TypeDeclarationCSharpSyntaxRewriterTests.cs rename to test/Microsoft.DotNet.GenAPI.Tests/SyntaxRewriter/TypeDeclarationCSharpSyntaxRewriterTests.cs diff --git a/src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenAnEnvironmentForResolution.cs b/test/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenAnEnvironmentForResolution.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenAnEnvironmentForResolution.cs rename to test/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenAnEnvironmentForResolution.cs diff --git a/src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenAnMSBuildSdkResolver.cs b/test/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenAnMSBuildSdkResolver.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenAnMSBuildSdkResolver.cs rename to test/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenAnMSBuildSdkResolver.cs diff --git a/src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenThatIWantToCompareSemanticVersions.cs b/test/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenThatIWantToCompareSemanticVersions.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenThatIWantToCompareSemanticVersions.cs rename to test/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenThatIWantToCompareSemanticVersions.cs diff --git a/src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenThatWeWantToParseSemanticVersions.cs b/test/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenThatWeWantToParseSemanticVersions.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenThatWeWantToParseSemanticVersions.cs rename to test/Microsoft.DotNet.MSBuildSdkResolver.Tests/GivenThatWeWantToParseSemanticVersions.cs diff --git a/src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj b/test/Microsoft.DotNet.MSBuildSdkResolver.Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj similarity index 75% rename from src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj rename to test/Microsoft.DotNet.MSBuildSdkResolver.Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj index e10f99519e9c..cc6810c54cbd 100644 --- a/src/Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj +++ b/test/Microsoft.DotNet.MSBuildSdkResolver.Tests/Microsoft.DotNet.MSBuildSdkResolver.Tests.csproj @@ -18,20 +18,20 @@ - - + + - + sdkResolver - + nativeWrapper - + diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsGolden.xml b/test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsGolden.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsGolden.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsGolden.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMajorHigherVersion.xml b/test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMajorHigherVersion.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMajorHigherVersion.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMajorHigherVersion.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMalformed.xml b/test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMalformed.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMalformed.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMalformed.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMissing.xml b/test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMissing.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMissing.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMissing.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMissingVersion.xml b/test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMissingVersion.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMissingVersion.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/DotnetToolSettingsMissingVersion.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/LocalToolsResolverCacheTests.cs b/test/Microsoft.DotNet.PackageInstall.Tests/LocalToolsResolverCacheTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/LocalToolsResolverCacheTests.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/LocalToolsResolverCacheTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/LockFileMatcherTests.cs b/test/Microsoft.DotNet.PackageInstall.Tests/LockFileMatcherTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/LockFileMatcherTests.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/LockFileMatcherTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/Microsoft.DotNet.PackageInstall.Tests.csproj b/test/Microsoft.DotNet.PackageInstall.Tests/Microsoft.DotNet.PackageInstall.Tests.csproj similarity index 96% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/Microsoft.DotNet.PackageInstall.Tests.csproj rename to test/Microsoft.DotNet.PackageInstall.Tests/Microsoft.DotNet.PackageInstall.Tests.csproj index c75bf86d3368..4131767bbcc1 100644 --- a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/Microsoft.DotNet.PackageInstall.Tests.csproj +++ b/test/Microsoft.DotNet.PackageInstall.Tests/Microsoft.DotNet.PackageInstall.Tests.csproj @@ -12,9 +12,9 @@ false - - - + + + diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/MockFirstPartyNuGetPackageSigningVerifier.cs b/test/Microsoft.DotNet.PackageInstall.Tests/MockFirstPartyNuGetPackageSigningVerifier.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/MockFirstPartyNuGetPackageSigningVerifier.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/MockFirstPartyNuGetPackageSigningVerifier.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/NuGetPackageInstallerExtractTests.cs b/test/Microsoft.DotNet.PackageInstall.Tests/NuGetPackageInstallerExtractTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/NuGetPackageInstallerExtractTests.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/NuGetPackageInstallerExtractTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/NuGetPackageInstallerTests.cs b/test/Microsoft.DotNet.PackageInstall.Tests/NuGetPackageInstallerTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/NuGetPackageInstallerTests.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/NuGetPackageInstallerTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/DotnetToolSettings.xml b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/DotnetToolSettings.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/DotnetToolSettings.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/DotnetToolSettings.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/Program.cs b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/Program.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/Program.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/Program.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/consoledemo.csproj b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/consoledemo.csproj similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/consoledemo.csproj rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/consoledemo.csproj diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/includepublish.nuspec b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/includepublish.nuspec similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/includepublish.nuspec rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalTool/includepublish.nuspec diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/ConsoleDemoWithCasing.csproj b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/ConsoleDemoWithCasing.csproj similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/ConsoleDemoWithCasing.csproj rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/ConsoleDemoWithCasing.csproj diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/DotnetToolSettings.xml b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/DotnetToolSettings.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/DotnetToolSettings.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/DotnetToolSettings.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/Program.cs b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/Program.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/Program.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/Program.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/includepublish.nuspec b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/includepublish.nuspec similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/includepublish.nuspec rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithDifferentCasing/includepublish.nuspec diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/DotnetToolSettings.xml b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/DotnetToolSettings.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/DotnetToolSettings.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/DotnetToolSettings.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/Program.cs b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/Program.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/Program.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/Program.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/consoledemo.csproj b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/consoledemo.csproj similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/consoledemo.csproj rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/consoledemo.csproj diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/includepublish.nuspec b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/includepublish.nuspec similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/includepublish.nuspec rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithPreview/includepublish.nuspec diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/DotnetToolSettings.xml b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/DotnetToolSettings.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/DotnetToolSettings.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/DotnetToolSettings.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/Program.cs b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/Program.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/Program.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/Program.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/consoledemo.csproj b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/consoledemo.csproj similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/consoledemo.csproj rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/consoledemo.csproj diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/dummyshim b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/dummyshim similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/dummyshim rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/dummyshim diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/dummyshim.exe b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/dummyshim.exe similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/dummyshim.exe rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/dummyshim.exe diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/includepublish.nuspec b/test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/includepublish.nuspec similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/includepublish.nuspec rename to test/Microsoft.DotNet.PackageInstall.Tests/SampleGlobalToolWithShim/includepublish.nuspec diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/Stage2ProjectRestorer.cs b/test/Microsoft.DotNet.PackageInstall.Tests/Stage2ProjectRestorer.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/Stage2ProjectRestorer.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/Stage2ProjectRestorer.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/ToolConfigurationDeserializerTests.cs b/test/Microsoft.DotNet.PackageInstall.Tests/ToolConfigurationDeserializerTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/ToolConfigurationDeserializerTests.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/ToolConfigurationDeserializerTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/ToolPackageDownloaderTests.cs b/test/Microsoft.DotNet.PackageInstall.Tests/ToolPackageDownloaderTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/ToolPackageDownloaderTests.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/ToolPackageDownloaderTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/ToolPackageInstallerNugetCacheTests.cs b/test/Microsoft.DotNet.PackageInstall.Tests/ToolPackageInstallerNugetCacheTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/ToolPackageInstallerNugetCacheTests.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/ToolPackageInstallerNugetCacheTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/ToolPackageUninstallerTests.cs b/test/Microsoft.DotNet.PackageInstall.Tests/ToolPackageUninstallerTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/ToolPackageUninstallerTests.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/ToolPackageUninstallerTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/UnixFilePermissionsSample.xml b/test/Microsoft.DotNet.PackageInstall.Tests/UnixFilePermissionsSample.xml similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/UnixFilePermissionsSample.xml rename to test/Microsoft.DotNet.PackageInstall.Tests/UnixFilePermissionsSample.xml diff --git a/src/Tests/Microsoft.DotNet.PackageInstall.Tests/UnixFilePermissionsTests.cs b/test/Microsoft.DotNet.PackageInstall.Tests/UnixFilePermissionsTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageInstall.Tests/UnixFilePermissionsTests.cs rename to test/Microsoft.DotNet.PackageInstall.Tests/UnixFilePermissionsTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageValidation.Tests/Microsoft.DotNet.PackageValidation.Tests.csproj b/test/Microsoft.DotNet.PackageValidation.Tests/Microsoft.DotNet.PackageValidation.Tests.csproj similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageValidation.Tests/Microsoft.DotNet.PackageValidation.Tests.csproj rename to test/Microsoft.DotNet.PackageValidation.Tests/Microsoft.DotNet.PackageValidation.Tests.csproj diff --git a/src/Tests/Microsoft.DotNet.PackageValidation.Tests/Validators/BaselinePackageValidatorTests.cs b/test/Microsoft.DotNet.PackageValidation.Tests/Validators/BaselinePackageValidatorTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageValidation.Tests/Validators/BaselinePackageValidatorTests.cs rename to test/Microsoft.DotNet.PackageValidation.Tests/Validators/BaselinePackageValidatorTests.cs diff --git a/src/Tests/Microsoft.DotNet.PackageValidation.Tests/Validators/CompatibleTFMValidatorTests.cs b/test/Microsoft.DotNet.PackageValidation.Tests/Validators/CompatibleTFMValidatorTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.PackageValidation.Tests/Validators/CompatibleTFMValidatorTests.cs rename to test/Microsoft.DotNet.PackageValidation.Tests/Validators/CompatibleTFMValidatorTests.cs diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/AppHostShellShimMakerTests.cs b/test/Microsoft.DotNet.ShellShim.Tests/AppHostShellShimMakerTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ShellShim.Tests/AppHostShellShimMakerTests.cs rename to test/Microsoft.DotNet.ShellShim.Tests/AppHostShellShimMakerTests.cs diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/EnvironmentPathFactoryTests.cs b/test/Microsoft.DotNet.ShellShim.Tests/EnvironmentPathFactoryTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ShellShim.Tests/EnvironmentPathFactoryTests.cs rename to test/Microsoft.DotNet.ShellShim.Tests/EnvironmentPathFactoryTests.cs diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/LinuxEnvironmentPathTests.cs b/test/Microsoft.DotNet.ShellShim.Tests/LinuxEnvironmentPathTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ShellShim.Tests/LinuxEnvironmentPathTests.cs rename to test/Microsoft.DotNet.ShellShim.Tests/LinuxEnvironmentPathTests.cs diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/OsxEnvironmentPathTests.cs b/test/Microsoft.DotNet.ShellShim.Tests/OsxEnvironmentPathTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ShellShim.Tests/OsxEnvironmentPathTests.cs rename to test/Microsoft.DotNet.ShellShim.Tests/OsxEnvironmentPathTests.cs diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/OsxZshEnvironmentPathInstructionTests.cs b/test/Microsoft.DotNet.ShellShim.Tests/OsxZshEnvironmentPathInstructionTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ShellShim.Tests/OsxZshEnvironmentPathInstructionTests.cs rename to test/Microsoft.DotNet.ShellShim.Tests/OsxZshEnvironmentPathInstructionTests.cs diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs b/test/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs rename to test/Microsoft.DotNet.ShellShim.Tests/ShellShimRepositoryTests.cs diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/WindowsEnvironmentPathTests.cs b/test/Microsoft.DotNet.ShellShim.Tests/WindowsEnvironmentPathTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ShellShim.Tests/WindowsEnvironmentPathTests.cs rename to test/Microsoft.DotNet.ShellShim.Tests/WindowsEnvironmentPathTests.cs diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/WpfBinaryTestAsssets/testwpf.dll b/test/Microsoft.DotNet.ShellShim.Tests/WpfBinaryTestAsssets/testwpf.dll similarity index 100% rename from src/Tests/Microsoft.DotNet.ShellShim.Tests/WpfBinaryTestAsssets/testwpf.dll rename to test/Microsoft.DotNet.ShellShim.Tests/WpfBinaryTestAsssets/testwpf.dll diff --git a/src/Tests/Microsoft.DotNet.ShellShim.Tests/ZshDetectorTests.cs b/test/Microsoft.DotNet.ShellShim.Tests/ZshDetectorTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.ShellShim.Tests/ZshDetectorTests.cs rename to test/Microsoft.DotNet.ShellShim.Tests/ZshDetectorTests.cs diff --git a/src/Tests/Microsoft.DotNet.TemplateLocator.Tests/GivenAnTemplateLocator.cs b/test/Microsoft.DotNet.TemplateLocator.Tests/GivenAnTemplateLocator.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.TemplateLocator.Tests/GivenAnTemplateLocator.cs rename to test/Microsoft.DotNet.TemplateLocator.Tests/GivenAnTemplateLocator.cs diff --git a/src/Tests/Microsoft.DotNet.TemplateLocator.Tests/Manifests/AndroidWorkloadManifest.json b/test/Microsoft.DotNet.TemplateLocator.Tests/Manifests/AndroidWorkloadManifest.json similarity index 100% rename from src/Tests/Microsoft.DotNet.TemplateLocator.Tests/Manifests/AndroidWorkloadManifest.json rename to test/Microsoft.DotNet.TemplateLocator.Tests/Manifests/AndroidWorkloadManifest.json diff --git a/src/Tests/Microsoft.DotNet.TemplateLocator.Tests/Microsoft.DotNet.TemplateLocator.Tests.csproj b/test/Microsoft.DotNet.TemplateLocator.Tests/Microsoft.DotNet.TemplateLocator.Tests.csproj similarity index 75% rename from src/Tests/Microsoft.DotNet.TemplateLocator.Tests/Microsoft.DotNet.TemplateLocator.Tests.csproj rename to test/Microsoft.DotNet.TemplateLocator.Tests/Microsoft.DotNet.TemplateLocator.Tests.csproj index d04d2d35c156..25fac3c40d70 100644 --- a/src/Tests/Microsoft.DotNet.TemplateLocator.Tests/Microsoft.DotNet.TemplateLocator.Tests.csproj +++ b/test/Microsoft.DotNet.TemplateLocator.Tests/Microsoft.DotNet.TemplateLocator.Tests.csproj @@ -11,9 +11,9 @@ - - - + + + diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/AppHostShellShimMakerMock.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/AppHostShellShimMakerMock.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/AppHostShellShimMakerMock.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/AppHostShellShimMakerMock.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/EnvironmentPathInstructionMock.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/EnvironmentPathInstructionMock.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/EnvironmentPathInstructionMock.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/EnvironmentPathInstructionMock.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj similarity index 80% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj index 6f48287c133b..301a217d9a3f 100644 --- a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj +++ b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/Microsoft.DotNet.Tools.Tests.ComponentMocks.csproj @@ -8,8 +8,8 @@ true - - + + diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeed.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeed.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeed.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeed.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeedPackage.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeedPackage.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeedPackage.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeedPackage.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeedType.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeedType.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeedType.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/MockFeedType.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ProjectRestorerMock.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ProjectRestorerMock.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ProjectRestorerMock.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ProjectRestorerMock.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/Properties/Properties.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/Properties/Properties.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/Properties/Properties.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/Properties/Properties.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageDownloaderMock.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageDownloaderMock.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageDownloaderMock.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageDownloaderMock.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageMock.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageMock.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageMock.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageMock.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageStoreMock.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageStoreMock.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageStoreMock.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageStoreMock.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageUninstallerMock.cs b/test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageUninstallerMock.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageUninstallerMock.cs rename to test/Microsoft.DotNet.Tools.Tests.ComponentMocks/ToolPackageUninstallerMock.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj b/test/Microsoft.DotNet.Tools.Tests.Utilities.Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj similarity index 84% rename from src/Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj rename to test/Microsoft.DotNet.Tools.Tests.Utilities.Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj index ee9bc5c5e9f1..466d74f4bee9 100644 --- a/src/Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj +++ b/test/Microsoft.DotNet.Tools.Tests.Utilities.Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests.csproj @@ -11,7 +11,7 @@ Exe - + diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests/MockFileSystemTests.cs b/test/Microsoft.DotNet.Tools.Tests.Utilities.Tests/MockFileSystemTests.cs similarity index 100% rename from src/Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests/MockFileSystemTests.cs rename to test/Microsoft.DotNet.Tools.Tests.Utilities.Tests/MockFileSystemTests.cs diff --git a/src/Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests/NuGetTransientErrorDetectorTests.cs b/test/Microsoft.DotNet.Tools.Tests.Utilities.Tests/NuGetTransientErrorDetectorTests.cs similarity index 96% rename from src/Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests/NuGetTransientErrorDetectorTests.cs rename to test/Microsoft.DotNet.Tools.Tests.Utilities.Tests/NuGetTransientErrorDetectorTests.cs index bd514d3b07ea..1abf566c92c2 100644 --- a/src/Tests/Microsoft.DotNet.Tools.Tests.Utilities.Tests/NuGetTransientErrorDetectorTests.cs +++ b/test/Microsoft.DotNet.Tools.Tests.Utilities.Tests/NuGetTransientErrorDetectorTests.cs @@ -34,14 +34,14 @@ public void Error1() "FluentAssertions.Execution.TestFrameworkProvider.Throw(String message)\r\n\u001B[m\u001B[37m at " + "FluentAssertions.Execution.DefaultAssertionStrategy.HandleFailure(String message)\r\n\u001B[m\u001B[37m at " + "FluentAssertions.Execution.AssertionScope.FailWith(String message, Object[] args)\r\n\u001B[m\u001B[37m " + - "/_/src/Tests/Microsoft.NET.TestFramework/Assertions/CommandResultAssertions.cs(32,0): at Microsoft.NET.TestFramework.Assertions." + - "CommandResultAssertions.Pass()\r\n\u001B[m\u001B[37m /_/src/Tests/Microsoft.NET.ToolPack.Tests/" + + "/_/test/Microsoft.NET.TestFramework/Assertions/CommandResultAssertions.cs(32,0): at Microsoft.NET.TestFramework.Assertions." + + "CommandResultAssertions.Pass()\r\n\u001B[m\u001B[37m /_/test/Microsoft.NET.ToolPack.Tests/" + "PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs(64,0): at Microsoft.NET.ToolPack.Tests.NupkgOfPackWithShimsFixture." + "SetupNuGetPackage(Boolean multiTarget, String targetFramework)\r\n\u001B[mRunning /datadisks/disk1/work/AD2E0974/p/d/" + "dotnet msbuild /t:Pack /datadisks/disk1/work/AD2E0974/w/A09F08FB/e/testExecutionDirectory/NupkgOfPackWi---BDB2B0FB/consoledemo.csproj " + - "/restore\r\n\u001B[37m /_/src/Tests/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs(47,0): " + + "/restore\r\n\u001B[37m /_/test/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs(47,0): " + "at Microsoft.NET.ToolPack.Tests.NupkgOfPackWithShimsFixture.GetTestToolPackagePath(Boolean multiTarget, String targetFramework)" + - "\r\n\u001B[m\u001B[37m /_/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs(128,0): " + + "\r\n\u001B[m\u001B[37m /_/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs(128,0): " + "at Microsoft.NET.ToolPack.Tests.GivenThatWeWantToPackAToolProjectWithPackagedShim.It_contains_shim(Boolean multiTarget, String " + "targetFramework)\r\n\u001B[m\u001B[30;1m Output:\r\n\u001B[m\u001B[37m > /datadisks/disk1/work/AD2E0974/p/d/dotnet msbuild " + "/t:Pack /datadisks/disk1/work/AD2E0974/w/A09F08FB/e/testExecutionDirectory/NupkgOfPackWi---4E69F8CE/consoledemo.csproj /restore" + diff --git a/src/Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests/HotReloadAgentTest.cs b/test/Microsoft.Extensions.DotNetDeltaApplier.Tests/HotReloadAgentTest.cs similarity index 100% rename from src/Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests/HotReloadAgentTest.cs rename to test/Microsoft.Extensions.DotNetDeltaApplier.Tests/HotReloadAgentTest.cs diff --git a/src/Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj b/test/Microsoft.Extensions.DotNetDeltaApplier.Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj similarity index 80% rename from src/Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj rename to test/Microsoft.Extensions.DotNetDeltaApplier.Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj index 217728563ae0..449b50401c27 100644 --- a/src/Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj +++ b/test/Microsoft.Extensions.DotNetDeltaApplier.Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests.csproj @@ -9,7 +9,7 @@ - + diff --git a/src/Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests/StartupHookTests.cs b/test/Microsoft.Extensions.DotNetDeltaApplier.Tests/StartupHookTests.cs similarity index 100% rename from src/Tests/Microsoft.Extensions.DotNetDeltaApplier.Tests/StartupHookTests.cs rename to test/Microsoft.Extensions.DotNetDeltaApplier.Tests/StartupHookTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/AuthenticatedRegistry/auth/htpasswd b/test/Microsoft.NET.Build.Containers.IntegrationTests/AuthenticatedRegistry/auth/htpasswd similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/AuthenticatedRegistry/auth/htpasswd rename to test/Microsoft.NET.Build.Containers.IntegrationTests/AuthenticatedRegistry/auth/htpasswd diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/ContainerCli.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/ContainerCli.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/ContainerCli.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/ContainerCli.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CreateNewImageTests.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/CreateNewImageTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CreateNewImageTests.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/CreateNewImageTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CurrentFile.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/CurrentFile.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/CurrentFile.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/CurrentFile.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryManager.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryTests.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryTests.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/DockerRegistryTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerSupportsArchInlineData.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/DockerSupportsArchInlineData.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerSupportsArchInlineData.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/DockerSupportsArchInlineData.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsCollection.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsCollection.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsCollection.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsCollection.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsFixture.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsFixture.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsFixture.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/DockerTestsFixture.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/EndToEndTests.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/EndToEndTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/EndToEndTests.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/EndToEndTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/FullFramework/CreateNewImageToolTaskTests.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/FullFramework/CreateNewImageToolTaskTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/FullFramework/CreateNewImageToolTaskTests.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/FullFramework/CreateNewImageToolTaskTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/LayerEndToEndTests.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/LayerEndToEndTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/LayerEndToEndTests.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/LayerEndToEndTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/Microsoft.NET.Build.Containers.IntegrationTests.csproj b/test/Microsoft.NET.Build.Containers.IntegrationTests/Microsoft.NET.Build.Containers.IntegrationTests.csproj similarity index 91% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/Microsoft.NET.Build.Containers.IntegrationTests.csproj rename to test/Microsoft.NET.Build.Containers.IntegrationTests/Microsoft.NET.Build.Containers.IntegrationTests.csproj index 9b00cf2ad6db..ac82d15a992e 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/Microsoft.NET.Build.Containers.IntegrationTests.csproj +++ b/test/Microsoft.NET.Build.Containers.IntegrationTests/Microsoft.NET.Build.Containers.IntegrationTests.csproj @@ -25,7 +25,7 @@ - + @@ -42,7 +42,7 @@ - + diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/PackageTests.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/PackageTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/PackageTests.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/PackageTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/ParseContainerPropertiesTests.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/ParseContainerPropertiesTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/ParseContainerPropertiesTests.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/ParseContainerPropertiesTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/ProjectInitializer.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/ProjectInitializer.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/ProjectInitializer.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/ProjectInitializer.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/RegistryTests.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/RegistryTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/RegistryTests.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/RegistryTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/TargetsTests.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/TargetsTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/TargetsTests.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/TargetsTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/TestSettings.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/TestSettings.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/TestSettings.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/TestSettings.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/ToolsetUtils.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/ToolsetUtils.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/ToolsetUtils.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/ToolsetUtils.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/TransientTestFolder.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/TransientTestFolder.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.IntegrationTests/TransientTestFolder.cs rename to test/Microsoft.NET.Build.Containers.IntegrationTests/TransientTestFolder.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/ContainerHelpersTests.cs b/test/Microsoft.NET.Build.Containers.UnitTests/ContainerHelpersTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/ContainerHelpersTests.cs rename to test/Microsoft.NET.Build.Containers.UnitTests/ContainerHelpersTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/CreateNewImageTests.cs b/test/Microsoft.NET.Build.Containers.UnitTests/CreateNewImageTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/CreateNewImageTests.cs rename to test/Microsoft.NET.Build.Containers.UnitTests/CreateNewImageTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/DescriptorTests.cs b/test/Microsoft.NET.Build.Containers.UnitTests/DescriptorTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/DescriptorTests.cs rename to test/Microsoft.NET.Build.Containers.UnitTests/DescriptorTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/DockerAvailableUtils.cs b/test/Microsoft.NET.Build.Containers.UnitTests/DockerAvailableUtils.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/DockerAvailableUtils.cs rename to test/Microsoft.NET.Build.Containers.UnitTests/DockerAvailableUtils.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/DockerDaemonTests.cs b/test/Microsoft.NET.Build.Containers.UnitTests/DockerDaemonTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/DockerDaemonTests.cs rename to test/Microsoft.NET.Build.Containers.UnitTests/DockerDaemonTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/ImageBuilderTests.cs b/test/Microsoft.NET.Build.Containers.UnitTests/ImageBuilderTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/ImageBuilderTests.cs rename to test/Microsoft.NET.Build.Containers.UnitTests/ImageBuilderTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/ImageConfigTests.cs b/test/Microsoft.NET.Build.Containers.UnitTests/ImageConfigTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/ImageConfigTests.cs rename to test/Microsoft.NET.Build.Containers.UnitTests/ImageConfigTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/Microsoft.NET.Build.Containers.UnitTests.csproj b/test/Microsoft.NET.Build.Containers.UnitTests/Microsoft.NET.Build.Containers.UnitTests.csproj similarity index 81% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/Microsoft.NET.Build.Containers.UnitTests.csproj rename to test/Microsoft.NET.Build.Containers.UnitTests/Microsoft.NET.Build.Containers.UnitTests.csproj index ebfc49020a2a..7873104567f5 100644 --- a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/Microsoft.NET.Build.Containers.UnitTests.csproj +++ b/test/Microsoft.NET.Build.Containers.UnitTests/Microsoft.NET.Build.Containers.UnitTests.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/RegistryTests.cs b/test/Microsoft.NET.Build.Containers.UnitTests/RegistryTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/RegistryTests.cs rename to test/Microsoft.NET.Build.Containers.UnitTests/RegistryTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Containers.UnitTests/Resources/ResourceTests.cs b/test/Microsoft.NET.Build.Containers.UnitTests/Resources/ResourceTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Containers.UnitTests/Resources/ResourceTests.cs rename to test/Microsoft.NET.Build.Containers.UnitTests/Resources/ResourceTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/AppHostTests.cs b/test/Microsoft.NET.Build.Tests/AppHostTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/AppHostTests.cs rename to test/Microsoft.NET.Build.Tests/AppHostTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs b/test/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs rename to test/Microsoft.NET.Build.Tests/ArtifactsOutputPathTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/AspNetCoreOnFullFramework.cs b/test/Microsoft.NET.Build.Tests/AspNetCoreOnFullFramework.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/AspNetCoreOnFullFramework.cs rename to test/Microsoft.NET.Build.Tests/AspNetCoreOnFullFramework.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/COMReferenceTests.cs b/test/Microsoft.NET.Build.Tests/COMReferenceTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/COMReferenceTests.cs rename to test/Microsoft.NET.Build.Tests/COMReferenceTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/DeleteNuGetArtifactsFixture.cs b/test/Microsoft.NET.Build.Tests/DeleteNuGetArtifactsFixture.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/DeleteNuGetArtifactsFixture.cs rename to test/Microsoft.NET.Build.Tests/DeleteNuGetArtifactsFixture.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs b/test/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs rename to test/Microsoft.NET.Build.Tests/DepsFileSkipTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/DesignTimeBuildTests.cs b/test/Microsoft.NET.Build.Tests/DesignTimeBuildTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/DesignTimeBuildTests.cs rename to test/Microsoft.NET.Build.Tests/DesignTimeBuildTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GenerateResourceTests.cs b/test/Microsoft.NET.Build.Tests/GenerateResourceTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GenerateResourceTests.cs rename to test/Microsoft.NET.Build.Tests/GenerateResourceTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs b/test/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs rename to test/Microsoft.NET.Build.Tests/GivenFrameworkReferences.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatAProjectHasntBeenRestored.cs b/test/Microsoft.NET.Build.Tests/GivenThatAProjectHasntBeenRestored.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatAProjectHasntBeenRestored.cs rename to test/Microsoft.NET.Build.Tests/GivenThatAProjectHasntBeenRestored.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeHaveAPackageReferenceWithAliases.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeHaveAPackageReferenceWithAliases.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeHaveAPackageReferenceWithAliases.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeHaveAPackageReferenceWithAliases.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeManifestSupportedFrameworks.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeManifestSupportedFrameworks.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeManifestSupportedFrameworks.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeManifestSupportedFrameworks.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantACustomTFM.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantACustomTFM.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantACustomTFM.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantACustomTFM.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantAMessageWhenBuildingWithAPreviewSdk.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantAMessageWhenBuildingWithAPreviewSdk.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantAMessageWhenBuildingWithAPreviewSdk.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantAMessageWhenBuildingWithAPreviewSdk.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantAllResourcesInSatellite.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantAllResourcesInSatellite.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantAllResourcesInSatellite.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantAllResourcesInSatellite.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantBuildsToBeIncremental.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantBuildsToBeIncremental.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantBuildsToBeIncremental.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantBuildsToBeIncremental.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantDiagnosticsWhenAssetsFileCannotBeRead.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantDiagnosticsWhenAssetsFileCannotBeRead.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantDiagnosticsWhenAssetsFileCannotBeRead.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantDiagnosticsWhenAssetsFileCannotBeRead.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantDiagnosticsWhenPackageCannotBeFound.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantDiagnosticsWhenPackageCannotBeFound.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantDiagnosticsWhenPackageCannotBeFound.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantDiagnosticsWhenPackageCannotBeFound.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantImplicitNamespaceImportsDisabled.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantImplicitNamespaceImportsDisabled.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantImplicitNamespaceImportsDisabled.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantImplicitNamespaceImportsDisabled.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantRuntimeConfigInBuiltProjectOutputGroup.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantSatelliteAssembliesHaveassemblyVersion.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantSatelliteAssembliesHaveassemblyVersion.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantSatelliteAssembliesHaveassemblyVersion.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantSatelliteAssembliesHaveassemblyVersion.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAComServerLibrary.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliNonLibraryProject.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliNonLibraryProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliNonLibraryProject.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliNonLibraryProject.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProject.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProjectWithTransitiveDeps.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProjectWithTransitiveDeps.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProjectWithTransitiveDeps.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACppCliProjectWithTransitiveDeps.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACrossTargetedLibrary.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACrossTargetedLibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACrossTargetedLibrary.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildACrossTargetedLibrary.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExe.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExeWithFSharp.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExeWithFSharp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExeWithFSharp.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExeWithFSharp.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExeWtihNetStandardLib.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExeWtihNetStandardLib.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExeWtihNetStandardLib.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopExeWtihNetStandardLib.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopLibrary.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopLibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopLibrary.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildADesktopLibrary.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibrary.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithFSharp.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithFSharp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithFSharp.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithFSharp.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithOSSupportedVersion.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithOSSupportedVersion.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithOSSupportedVersion.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithOSSupportedVersion.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithVB.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithVB.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithVB.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildALibraryWithVB.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreApp.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreAppForTelemetry.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreAppForTelemetry.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreAppForTelemetry.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreAppForTelemetry.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreAppWithWap.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreAppWithWap.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreAppWithWap.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetCoreAppWithWap.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetStandard2Library.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetStandard2Library.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetStandard2Library.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildANetStandard2Library.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAP2PrefernceWithTargetPlatform.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAP2PrefernceWithTargetPlatform.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAP2PrefernceWithTargetPlatform.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAP2PrefernceWithTargetPlatform.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASelfContainedApp.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonAnyCPUPlatform.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonAnyCPUPlatform.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonAnyCPUPlatform.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonAnyCPUPlatform.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonDefaultConfiguration.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonDefaultConfiguration.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonDefaultConfiguration.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonDefaultConfiguration.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonDefaultConfigurationVB.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonDefaultConfigurationVB.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonDefaultConfigurationVB.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithNonDefaultConfigurationVB.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithProjRefDiffCase.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithProjRefDiffCase.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithProjRefDiffCase.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildASolutionWithProjRefDiffCase.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAUnitTestProject.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsDesktopProject.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsDesktopProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsDesktopProject.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsDesktopProject.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrariesAndRid.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithLibrary.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithSharedProject.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveNonSdkProjectRefs.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithTransitiveProjectRefs.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithoutTransitiveProjectRefs.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithoutTransitiveProjectRefs.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithoutTransitiveProjectRefs.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAnAppWithoutTransitiveProjectRefs.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAppsWithFrameworkRefs.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAppsWithFrameworkRefs.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAppsWithFrameworkRefs.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAppsWithFrameworkRefs.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithARuntimeIdentifier.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithARuntimeIdentifier.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithARuntimeIdentifier.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithARuntimeIdentifier.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithATargetPlatform.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithATargetPlatform.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithATargetPlatform.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithATargetPlatform.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithGlobalJson.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithGlobalJson.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithGlobalJson.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildWithGlobalJson.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCollectExceptionTelemetry.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToCollectExceptionTelemetry.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCollectExceptionTelemetry.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToCollectExceptionTelemetry.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToControlGeneratedAssemblyInfo.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyLocalDependencies.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyPPFileToOutput.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyPPFileToOutput.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyPPFileToOutput.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToCopyPPFileToOutput.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToExcludeTheMainProjectFromTheDepsFile.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToExcludeTheMainProjectFromTheDepsFile.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToExcludeTheMainProjectFromTheDepsFile.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToExcludeTheMainProjectFromTheDepsFile.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToFilterSatelliteAssemblies.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToFilterSatelliteAssemblies.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToFilterSatelliteAssemblies.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToFilterSatelliteAssemblies.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToFloatWarningLevels.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToFloatWarningLevels.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToFloatWarningLevels.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToFloatWarningLevels.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateADepsFileForATool.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateADepsFileForATool.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateADepsFileForATool.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateADepsFileForATool.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_BlazorWasm.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_BlazorWasm.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_BlazorWasm.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_BlazorWasm.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_DotNet.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_DotNet.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_DotNet.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_DotNet.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_WebApp.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_WebApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_WebApp.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_WebApp.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_Worker.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_Worker.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_Worker.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToGenerateGlobalUsings_Worker.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToIncludeItemsOutsideTheProjectFolder.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToIncludeItemsOutsideTheProjectFolder.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToIncludeItemsOutsideTheProjectFolder.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToIncludeItemsOutsideTheProjectFolder.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToPreserveCompilationContextForBuild.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToPreserveCompilationContextForBuild.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToPreserveCompilationContextForBuild.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToPreserveCompilationContextForBuild.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToProduceReferenceAssembly.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToProduceReferenceAssembly.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToProduceReferenceAssembly.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToProduceReferenceAssembly.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAProject.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAProject.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAProject.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToReferenceAnAssembly.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveConflicts.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveRuntimePackAssets.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveRuntimePackAssets.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveRuntimePackAssets.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToResolveRuntimePackAssets.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToRunFromMSBuildTarget.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToRunFromMSBuildTarget.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToRunFromMSBuildTarget.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToRunFromMSBuildTarget.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToSetPropertiesInDirectoryBuildProps.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToSetPropertiesInDirectoryBuildProps.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToSetPropertiesInDirectoryBuildProps.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToSetPropertiesInDirectoryBuildProps.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToTargetEolFrameworks.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToTargetEolFrameworks.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToTargetEolFrameworks.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToTargetEolFrameworks.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToTargetNet471.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToTargetNet471.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToTargetNet471.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToTargetNet471.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUseAnalyzers.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToUseAnalyzers.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUseAnalyzers.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToUseAnalyzers.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUseBinaryFormatter.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToUseBinaryFormatter.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUseBinaryFormatter.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToUseBinaryFormatter.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUseContentFiles.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToUseContentFiles.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUseContentFiles.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToUseContentFiles.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUsePlatformAnalyzers.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToUsePlatformAnalyzers.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUsePlatformAnalyzers.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToUsePlatformAnalyzers.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUseVB.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToUseVB.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToUseVB.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToUseVB.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyNuGetReferenceCompat.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyNuGetReferenceCompat.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyNuGetReferenceCompat.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyNuGetReferenceCompat.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyProjectReferenceCompat.cs b/test/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyProjectReferenceCompat.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyProjectReferenceCompat.cs rename to test/Microsoft.NET.Build.Tests/GivenThatWeWantToVerifyProjectReferenceCompat.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenThereAreDefaultItems.cs b/test/Microsoft.NET.Build.Tests/GivenThereAreDefaultItems.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenThereAreDefaultItems.cs rename to test/Microsoft.NET.Build.Tests/GivenThereAreDefaultItems.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenTransitiveFrameworkReferencesAreDisabled.cs b/test/Microsoft.NET.Build.Tests/GivenTransitiveFrameworkReferencesAreDisabled.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenTransitiveFrameworkReferencesAreDisabled.cs rename to test/Microsoft.NET.Build.Tests/GivenTransitiveFrameworkReferencesAreDisabled.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GivenWeWantToRequireWindowsForDesktopApps.cs b/test/Microsoft.NET.Build.Tests/GivenWeWantToRequireWindowsForDesktopApps.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GivenWeWantToRequireWindowsForDesktopApps.cs rename to test/Microsoft.NET.Build.Tests/GivenWeWantToRequireWindowsForDesktopApps.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GiventThatWeWantDesignerSupport.cs b/test/Microsoft.NET.Build.Tests/GiventThatWeWantDesignerSupport.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GiventThatWeWantDesignerSupport.cs rename to test/Microsoft.NET.Build.Tests/GiventThatWeWantDesignerSupport.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/GlobalPropertyFlowTests.cs b/test/Microsoft.NET.Build.Tests/GlobalPropertyFlowTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/GlobalPropertyFlowTests.cs rename to test/Microsoft.NET.Build.Tests/GlobalPropertyFlowTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/ImplicitAspNetVersions.cs b/test/Microsoft.NET.Build.Tests/ImplicitAspNetVersions.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/ImplicitAspNetVersions.cs rename to test/Microsoft.NET.Build.Tests/ImplicitAspNetVersions.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/KnownRuntimePackTests.cs b/test/Microsoft.NET.Build.Tests/KnownRuntimePackTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/KnownRuntimePackTests.cs rename to test/Microsoft.NET.Build.Tests/KnownRuntimePackTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/MetadataUpdaterSupportTest.cs b/test/Microsoft.NET.Build.Tests/MetadataUpdaterSupportTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/MetadataUpdaterSupportTest.cs rename to test/Microsoft.NET.Build.Tests/MetadataUpdaterSupportTest.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/Microsoft.NET.Build.Tests.csproj b/test/Microsoft.NET.Build.Tests/Microsoft.NET.Build.Tests.csproj similarity index 84% rename from src/Tests/Microsoft.NET.Build.Tests/Microsoft.NET.Build.Tests.csproj rename to test/Microsoft.NET.Build.Tests/Microsoft.NET.Build.Tests.csproj index 2ca46170114c..fdcbdc2dd707 100644 --- a/src/Tests/Microsoft.NET.Build.Tests/Microsoft.NET.Build.Tests.csproj +++ b/test/Microsoft.NET.Build.Tests/Microsoft.NET.Build.Tests.csproj @@ -32,7 +32,7 @@ - + @@ -41,14 +41,14 @@ - + - + diff --git a/src/Tests/Microsoft.NET.Build.Tests/Net50Targeting.cs b/test/Microsoft.NET.Build.Tests/Net50Targeting.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/Net50Targeting.cs rename to test/Microsoft.NET.Build.Tests/Net50Targeting.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs b/test/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs rename to test/Microsoft.NET.Build.Tests/NonCopyLocalProjectReferenceTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/ProjectConfigurationDescriptionTest.cs b/test/Microsoft.NET.Build.Tests/ProjectConfigurationDescriptionTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/ProjectConfigurationDescriptionTest.cs rename to test/Microsoft.NET.Build.Tests/ProjectConfigurationDescriptionTest.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/Properties/launchSettings.json b/test/Microsoft.NET.Build.Tests/Properties/launchSettings.json similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/Properties/launchSettings.json rename to test/Microsoft.NET.Build.Tests/Properties/launchSettings.json diff --git a/src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs b/test/Microsoft.NET.Build.Tests/ReferenceExeTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/ReferenceExeTests.cs rename to test/Microsoft.NET.Build.Tests/ReferenceExeTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/RuntimeIdentifierGraphTests.cs b/test/Microsoft.NET.Build.Tests/RuntimeIdentifierGraphTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/RuntimeIdentifierGraphTests.cs rename to test/Microsoft.NET.Build.Tests/RuntimeIdentifierGraphTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/SourceLinkTests.cs b/test/Microsoft.NET.Build.Tests/SourceLinkTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/SourceLinkTests.cs rename to test/Microsoft.NET.Build.Tests/SourceLinkTests.cs diff --git a/src/Tests/Microsoft.NET.Build.Tests/WorkloadTests.cs b/test/Microsoft.NET.Build.Tests/WorkloadTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Build.Tests/WorkloadTests.cs rename to test/Microsoft.NET.Build.Tests/WorkloadTests.cs diff --git a/src/Tests/Microsoft.NET.Clean.Tests/GivenThatWeWantToCleanAProject.cs b/test/Microsoft.NET.Clean.Tests/GivenThatWeWantToCleanAProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Clean.Tests/GivenThatWeWantToCleanAProject.cs rename to test/Microsoft.NET.Clean.Tests/GivenThatWeWantToCleanAProject.cs diff --git a/src/Tests/Microsoft.NET.Clean.Tests/Microsoft.NET.Clean.Tests.csproj b/test/Microsoft.NET.Clean.Tests/Microsoft.NET.Clean.Tests.csproj similarity index 100% rename from src/Tests/Microsoft.NET.Clean.Tests/Microsoft.NET.Clean.Tests.csproj rename to test/Microsoft.NET.Clean.Tests/Microsoft.NET.Clean.Tests.csproj diff --git a/src/Tests/Microsoft.NET.Pack.Tests/GivenThatThereAreImplicitPackageReferences.cs b/test/Microsoft.NET.Pack.Tests/GivenThatThereAreImplicitPackageReferences.cs similarity index 100% rename from src/Tests/Microsoft.NET.Pack.Tests/GivenThatThereAreImplicitPackageReferences.cs rename to test/Microsoft.NET.Pack.Tests/GivenThatThereAreImplicitPackageReferences.cs diff --git a/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackACppCliProject.cs b/test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackACppCliProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackACppCliProject.cs rename to test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackACppCliProject.cs diff --git a/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackACrossTargetedLibrary.cs b/test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackACrossTargetedLibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackACrossTargetedLibrary.cs rename to test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackACrossTargetedLibrary.cs diff --git a/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackAHelloWorldProject.cs b/test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackAHelloWorldProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackAHelloWorldProject.cs rename to test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackAHelloWorldProject.cs diff --git a/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackANetFrameworkLibrary.cs b/test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackANetFrameworkLibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackANetFrameworkLibrary.cs rename to test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackANetFrameworkLibrary.cs diff --git a/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackAProjectTool.cs b/test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackAProjectTool.cs similarity index 100% rename from src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackAProjectTool.cs rename to test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackAProjectTool.cs diff --git a/src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackASimpleLibrary.cs b/test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackASimpleLibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackASimpleLibrary.cs rename to test/Microsoft.NET.Pack.Tests/GivenThatWeWantToPackASimpleLibrary.cs diff --git a/src/Tests/Microsoft.NET.Pack.Tests/Microsoft.NET.Pack.Tests.csproj b/test/Microsoft.NET.Pack.Tests/Microsoft.NET.Pack.Tests.csproj similarity index 79% rename from src/Tests/Microsoft.NET.Pack.Tests/Microsoft.NET.Pack.Tests.csproj rename to test/Microsoft.NET.Pack.Tests/Microsoft.NET.Pack.Tests.csproj index f8db88b88fc5..34e71c0807ad 100644 --- a/src/Tests/Microsoft.NET.Pack.Tests/Microsoft.NET.Pack.Tests.csproj +++ b/test/Microsoft.NET.Pack.Tests/Microsoft.NET.Pack.Tests.csproj @@ -35,8 +35,8 @@ - - + + diff --git a/src/Tests/Microsoft.NET.Pack.Tests/Properties/launchSettings.json b/test/Microsoft.NET.Pack.Tests/Properties/launchSettings.json similarity index 100% rename from src/Tests/Microsoft.NET.Pack.Tests/Properties/launchSettings.json rename to test/Microsoft.NET.Pack.Tests/Properties/launchSettings.json diff --git a/src/Tests/Microsoft.NET.Pack.Tests/SolutionPackTests.cs b/test/Microsoft.NET.Pack.Tests/SolutionPackTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Pack.Tests/SolutionPackTests.cs rename to test/Microsoft.NET.Pack.Tests/SolutionPackTests.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/FilesCopiedToPublishDirTests.cs b/test/Microsoft.NET.Publish.Tests/FilesCopiedToPublishDirTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/FilesCopiedToPublishDirTests.cs rename to test/Microsoft.NET.Publish.Tests/FilesCopiedToPublishDirTests.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatAPublishedDepsJsonShouldContainVersionInformation.cs b/test/Microsoft.NET.Publish.Tests/GivenThatAPublishedDepsJsonShouldContainVersionInformation.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatAPublishedDepsJsonShouldContainVersionInformation.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatAPublishedDepsJsonShouldContainVersionInformation.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToCrossPublish.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToCrossPublish.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToCrossPublish.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToCrossPublish.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToExcludeAPackageFromPublish.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToExcludeAPackageFromPublish.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToExcludeAPackageFromPublish.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToExcludeAPackageFromPublish.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToFilterSatelliteAssemblies.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToFilterSatelliteAssemblies.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToFilterSatelliteAssemblies.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToFilterSatelliteAssemblies.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPreserveCompilationContext.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPreserveCompilationContext.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPreserveCompilationContext.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPreserveCompilationContext.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAComServerLibrary.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAComServerLibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAComServerLibrary.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAComServerLibrary.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishACppCliAppProject.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishACppCliAppProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishACppCliAppProject.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishACppCliAppProject.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishACppCliProject.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishACppCliProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishACppCliProject.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishACppCliProject.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAFrameworkDependentApp.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAHelloWorldProject.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishANetCoreAppForTelemetry.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishANetCoreAppForTelemetry.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishANetCoreAppForTelemetry.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishANetCoreAppForTelemetry.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithAllFeatures.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithAllFeatures.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithAllFeatures.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithAllFeatures.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithDependencies.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithDependencies.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithDependencies.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAProjectWithDependencies.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASelfContainedApp.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASelfContainedApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASelfContainedApp.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASelfContainedApp.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASingleFileApp.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASingleFileApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASingleFileApp.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASingleFileApp.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASingleFileLibrary.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASingleFileLibrary.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASingleFileLibrary.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishASingleFileLibrary.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAToolProjectWithPackagedShim.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAToolProjectWithPackagedShim.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAToolProjectWithPackagedShim.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAToolProjectWithPackagedShim.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAWebApp.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAWebApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAWebApp.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAWebApp.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAotApp.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAppWithLibrariesAndRid.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAppWithLibrariesAndRid.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAppWithLibrariesAndRid.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnAppWithLibrariesAndRid.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnUnpublishableProject.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnUnpublishableProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnUnpublishableProject.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishAnUnpublishableProject.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishIncrementally.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishReadyToRun.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishReadyToRun.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishReadyToRun.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishReadyToRun.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishToClickOnce.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishToClickOnce.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishToClickOnce.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishToClickOnce.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishTrimmedWindowsFormsAndWPFApps.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishTrimmedWindowsFormsAndWPFApps.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishTrimmedWindowsFormsAndWPFApps.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishTrimmedWindowsFormsAndWPFApps.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithGeneratePackageOnBuildAndPackAsTool.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithoutConflicts.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithoutConflicts.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithoutConflicts.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToPublishWithoutConflicts.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToRunILLink.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToStoreAProjectWithDependencies.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToStoreAProjectWithDependencies.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToStoreAProjectWithDependencies.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToStoreAProjectWithDependencies.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToTestAMultitargetedSolutionWithPublishReleaseOrPackRelease.cs b/test/Microsoft.NET.Publish.Tests/GivenThatWeWantToTestAMultitargetedSolutionWithPublishReleaseOrPackRelease.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/GivenThatWeWantToTestAMultitargetedSolutionWithPublishReleaseOrPackRelease.cs rename to test/Microsoft.NET.Publish.Tests/GivenThatWeWantToTestAMultitargetedSolutionWithPublishReleaseOrPackRelease.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/Microsoft.NET.Publish.Tests.csproj b/test/Microsoft.NET.Publish.Tests/Microsoft.NET.Publish.Tests.csproj similarity index 77% rename from src/Tests/Microsoft.NET.Publish.Tests/Microsoft.NET.Publish.Tests.csproj rename to test/Microsoft.NET.Publish.Tests/Microsoft.NET.Publish.Tests.csproj index aa5b02b5f8c2..e772d6881ef4 100644 --- a/src/Tests/Microsoft.NET.Publish.Tests/Microsoft.NET.Publish.Tests.csproj +++ b/test/Microsoft.NET.Publish.Tests/Microsoft.NET.Publish.Tests.csproj @@ -30,13 +30,13 @@ - + - - - + + + diff --git a/src/Tests/Microsoft.NET.Publish.Tests/Properties/launchSettings.json b/test/Microsoft.NET.Publish.Tests/Properties/launchSettings.json similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/Properties/launchSettings.json rename to test/Microsoft.NET.Publish.Tests/Properties/launchSettings.json diff --git a/src/Tests/Microsoft.NET.Publish.Tests/PublishDepsFilePathTests.cs b/test/Microsoft.NET.Publish.Tests/PublishDepsFilePathTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/PublishDepsFilePathTests.cs rename to test/Microsoft.NET.Publish.Tests/PublishDepsFilePathTests.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/PublishItemsOutputGroupOutputsTests.cs b/test/Microsoft.NET.Publish.Tests/PublishItemsOutputGroupOutputsTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/PublishItemsOutputGroupOutputsTests.cs rename to test/Microsoft.NET.Publish.Tests/PublishItemsOutputGroupOutputsTests.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/PublishItemsOutputGroupTests.cs b/test/Microsoft.NET.Publish.Tests/PublishItemsOutputGroupTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/PublishItemsOutputGroupTests.cs rename to test/Microsoft.NET.Publish.Tests/PublishItemsOutputGroupTests.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/PublishNetFrameworkApp.cs b/test/Microsoft.NET.Publish.Tests/PublishNetFrameworkApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/PublishNetFrameworkApp.cs rename to test/Microsoft.NET.Publish.Tests/PublishNetFrameworkApp.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/PublishTestUtils.cs b/test/Microsoft.NET.Publish.Tests/PublishTestUtils.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/PublishTestUtils.cs rename to test/Microsoft.NET.Publish.Tests/PublishTestUtils.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/PublishWebApp.cs b/test/Microsoft.NET.Publish.Tests/PublishWebApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/PublishWebApp.cs rename to test/Microsoft.NET.Publish.Tests/PublishWebApp.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs b/test/Microsoft.NET.Publish.Tests/PublishWpfApp.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/PublishWpfApp.cs rename to test/Microsoft.NET.Publish.Tests/PublishWpfApp.cs diff --git a/src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs b/test/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs rename to test/Microsoft.NET.Publish.Tests/RuntimeIdentifiersTests.cs diff --git a/src/Tests/Microsoft.NET.Rebuild.Tests/GivenThatWeWantToRebuildAProject.cs b/test/Microsoft.NET.Rebuild.Tests/GivenThatWeWantToRebuildAProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.Rebuild.Tests/GivenThatWeWantToRebuildAProject.cs rename to test/Microsoft.NET.Rebuild.Tests/GivenThatWeWantToRebuildAProject.cs diff --git a/src/Tests/Microsoft.NET.Rebuild.Tests/Microsoft.NET.Rebuild.Tests.csproj b/test/Microsoft.NET.Rebuild.Tests/Microsoft.NET.Rebuild.Tests.csproj similarity index 100% rename from src/Tests/Microsoft.NET.Rebuild.Tests/Microsoft.NET.Rebuild.Tests.csproj rename to test/Microsoft.NET.Rebuild.Tests/Microsoft.NET.Rebuild.Tests.csproj diff --git a/src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantAutomaticTargetingPackReferences.cs b/test/Microsoft.NET.Restore.Tests/GivenThatWeWantAutomaticTargetingPackReferences.cs similarity index 100% rename from src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantAutomaticTargetingPackReferences.cs rename to test/Microsoft.NET.Restore.Tests/GivenThatWeWantAutomaticTargetingPackReferences.cs diff --git a/src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantRestoreToUseImplicitPackages.cs b/test/Microsoft.NET.Restore.Tests/GivenThatWeWantRestoreToUseImplicitPackages.cs similarity index 100% rename from src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantRestoreToUseImplicitPackages.cs rename to test/Microsoft.NET.Restore.Tests/GivenThatWeWantRestoreToUseImplicitPackages.cs diff --git a/src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToIgnoreObsoleteDotNetCliToolPackages.cs b/test/Microsoft.NET.Restore.Tests/GivenThatWeWantToIgnoreObsoleteDotNetCliToolPackages.cs similarity index 100% rename from src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToIgnoreObsoleteDotNetCliToolPackages.cs rename to test/Microsoft.NET.Restore.Tests/GivenThatWeWantToIgnoreObsoleteDotNetCliToolPackages.cs diff --git a/src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreDotNetCliToolReference.cs b/test/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreDotNetCliToolReference.cs similarity index 100% rename from src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreDotNetCliToolReference.cs rename to test/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreDotNetCliToolReference.cs diff --git a/src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreProjectsUsingNuGetConfigProperties.cs b/test/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreProjectsUsingNuGetConfigProperties.cs similarity index 100% rename from src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreProjectsUsingNuGetConfigProperties.cs rename to test/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreProjectsUsingNuGetConfigProperties.cs diff --git a/src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreProjectsWithPackageDowngrades.cs b/test/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreProjectsWithPackageDowngrades.cs similarity index 100% rename from src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreProjectsWithPackageDowngrades.cs rename to test/Microsoft.NET.Restore.Tests/GivenThatWeWantToRestoreProjectsWithPackageDowngrades.cs diff --git a/src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToUseFrameworkRoslyn.cs b/test/Microsoft.NET.Restore.Tests/GivenThatWeWantToUseFrameworkRoslyn.cs similarity index 100% rename from src/Tests/Microsoft.NET.Restore.Tests/GivenThatWeWantToUseFrameworkRoslyn.cs rename to test/Microsoft.NET.Restore.Tests/GivenThatWeWantToUseFrameworkRoslyn.cs diff --git a/src/Tests/Microsoft.NET.Restore.Tests/Microsoft.NET.Restore.Tests.csproj b/test/Microsoft.NET.Restore.Tests/Microsoft.NET.Restore.Tests.csproj similarity index 100% rename from src/Tests/Microsoft.NET.Restore.Tests/Microsoft.NET.Restore.Tests.csproj rename to test/Microsoft.NET.Restore.Tests/Microsoft.NET.Restore.Tests.csproj diff --git a/src/Tests/Microsoft.NET.Restore.Tests/RestoreWithOlderNuGet.cs b/test/Microsoft.NET.Restore.Tests/RestoreWithOlderNuGet.cs similarity index 100% rename from src/Tests/Microsoft.NET.Restore.Tests/RestoreWithOlderNuGet.cs rename to test/Microsoft.NET.Restore.Tests/RestoreWithOlderNuGet.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj b/test/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj similarity index 90% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj index 8a5601691b74..5fd78d717a58 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests.csproj @@ -56,8 +56,8 @@ - - + + diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.AoT.Tests/WasmAoTPublishIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/.editorconfig b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/.editorconfig similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/.editorconfig rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/.editorconfig diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest50.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest50.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest50.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest50.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest60.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest60.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest60.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorLegacyIntegrationTest60.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorMultitargetIntegrationTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorMultitargetIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorMultitargetIntegrationTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorMultitargetIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorReadSatelliteAssemblyFileTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorReadSatelliteAssemblyFileTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorReadSatelliteAssemblyFileTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorReadSatelliteAssemblyFileTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BootJsonData.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BootJsonData.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BootJsonData.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BootJsonData.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/LegacyBuildIntegrationTestBase.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/LegacyBuildIntegrationTestBase.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/LegacyBuildIntegrationTestBase.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/LegacyBuildIntegrationTestBase.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj similarity index 86% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj index 65430c5f2e61..46f524b23b7e 100644 --- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj +++ b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj @@ -49,9 +49,9 @@ - - - + + + diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ResolveCompressedAssetsTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/RewriteCssTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/RewriteCssTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/RewriteCssTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/RewriteCssTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ServiceWorkerAssert.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ServiceWorkerAssert.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ServiceWorkerAssert.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/ServiceWorkerAssert.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish60Hosted_Works.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/VanillaWasmTests.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/VanillaWasmTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/VanillaWasmTests.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/VanillaWasmTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIncrementalismTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIncrementalismTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIncrementalismTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIncrementalismTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildLazyLoadTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildLazyLoadTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildLazyLoadTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildLazyLoadTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmCompressionTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTestBase.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTestBase.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTestBase.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTestBase.cs diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs b/test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs rename to test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPwaManifestTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/AppSettingsTransformTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/AppSettingsTransformTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/AppSettingsTransformTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/AppSettingsTransformTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/EndToEnd/FolderPublish50.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/EndToEnd/FolderPublish50.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/EndToEnd/FolderPublish50.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/EndToEnd/FolderPublish50.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/EndToEnd/ProcessWrapper.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/EndToEnd/ProcessWrapper.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/EndToEnd/ProcessWrapper.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/EndToEnd/ProcessWrapper.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/EnvironmentHelperTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/EnvironmentHelperTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/EnvironmentHelperTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/EnvironmentHelperTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj similarity index 94% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj index ecc90aae81fd..742f8b3d80c5 100644 --- a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj +++ b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests.csproj @@ -33,7 +33,7 @@ - + diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Resources/TestPublishContents.zip b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Resources/TestPublishContents.zip similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Resources/TestPublishContents.zip rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Resources/TestPublishContents.zip diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/GenerateEFSQLScriptsTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/GenerateEFSQLScriptsTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/GenerateEFSQLScriptsTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/GenerateEFSQLScriptsTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/GenerateEnvTransformTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/GenerateEnvTransformTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/GenerateEnvTransformTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/GenerateEnvTransformTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformAppSettingsTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformAppSettingsTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformAppSettingsTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformAppSettingsTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformWebConfigTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformWebConfigTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformWebConfigTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformWebConfigTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformXmlTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformXmlTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformXmlTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/TransformXmlTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/ZipDeploy/ZipDeployerTaskTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/ZipDeploy/ZipDeployerTaskTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/ZipDeploy/ZipDeployerTaskTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/ZipDeploy/ZipDeployerTaskTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/ZipDeploy/ZipDeploymentStatusTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/ZipDeploy/ZipDeploymentStatusTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/ZipDeploy/ZipDeploymentStatusTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/Tasks/ZipDeploy/ZipDeploymentStatusTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTelemetryTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTelemetryTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTelemetryTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTelemetryTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTransformTemplates.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTransformTemplates.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTransformTemplates.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTransformTemplates.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTransformTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTransformTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTransformTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebConfigTransformTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebJobsCommandGeneratorTests.cs b/test/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebJobsCommandGeneratorTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebJobsCommandGeneratorTests.cs rename to test/Microsoft.NET.Sdk.Publish.Tasks.Tests/WebJobsCommandGeneratorTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.SourceGenerators.Tests/.editorconfig b/test/Microsoft.NET.Sdk.Razor.SourceGenerators.Tests/.editorconfig similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.SourceGenerators.Tests/.editorconfig rename to test/Microsoft.NET.Sdk.Razor.SourceGenerators.Tests/.editorconfig diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/.editorconfig b/test/Microsoft.NET.Sdk.Razor.Tests/.editorconfig similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/.editorconfig rename to test/Microsoft.NET.Sdk.Razor.Tests/.editorconfig diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ApplicationPartDiscoveryIntegrationTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/ApplicationPartDiscoveryIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/ApplicationPartDiscoveryIntegrationTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/ApplicationPartDiscoveryIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ApplyCssScopesTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/ApplyCssScopesTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/ApplyCssScopesTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/ApplyCssScopesTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildIncrementalismTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/BuildIncrementalismTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildIncrementalismTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/BuildIncrementalismTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildIntegrationTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/BuildIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildIntegrationTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/BuildIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildIntrospectionTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/BuildIntrospectionTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildIntrospectionTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/BuildIntrospectionTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildWithComponents31IntegrationTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/BuildWithComponents31IntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildWithComponents31IntegrationTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/BuildWithComponents31IntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildWithComponentsIntegrationTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/BuildWithComponentsIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/BuildWithComponentsIntegrationTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/BuildWithComponentsIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ComputeCssScopesTests.cs b/test/Microsoft.NET.Sdk.Razor.Tests/ComputeCssScopesTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/ComputeCssScopesTests.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/ComputeCssScopesTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ConcatenateFilesTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/ConcatenateFilesTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/ConcatenateFilesTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/ConcatenateFilesTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/DesignTimeBuildIntegrationTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/DesignTimeBuildIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/DesignTimeBuildIntegrationTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/DesignTimeBuildIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/DiscoverDefaultScopedCssItemsTests.cs b/test/Microsoft.NET.Sdk.Razor.Tests/DiscoverDefaultScopedCssItemsTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/DiscoverDefaultScopedCssItemsTests.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/DiscoverDefaultScopedCssItemsTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/GenerateStaticWebAssetsDevelopmentManifestTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/GenerateStaticWebAssetsDevelopmentManifestTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/GenerateStaticWebAssetsDevelopmentManifestTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/GenerateStaticWebAssetsDevelopmentManifestTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/GenerateStaticWebAssetsPropsFileTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/GenerateStaticWebAssetsPropsFileTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/GenerateStaticWebAssetsPropsFileTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/GenerateStaticWebAssetsPropsFileTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/GenerateV1StaticWebAssetsManifestTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/GenerateV1StaticWebAssetsManifestTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/GenerateV1StaticWebAssetsManifestTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/GenerateV1StaticWebAssetsManifestTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/Microsoft.NET.Sdk.Razor.Tests.csproj b/test/Microsoft.NET.Sdk.Razor.Tests/Microsoft.NET.Sdk.Razor.Tests.csproj similarity index 90% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/Microsoft.NET.Sdk.Razor.Tests.csproj rename to test/Microsoft.NET.Sdk.Razor.Tests/Microsoft.NET.Sdk.Razor.Tests.csproj index b683f7b940b8..5b0b1ecd6730 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/Microsoft.NET.Sdk.Razor.Tests.csproj +++ b/test/Microsoft.NET.Sdk.Razor.Tests/Microsoft.NET.Sdk.Razor.Tests.csproj @@ -44,8 +44,8 @@ - - + + diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest21.cs b/test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest21.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest21.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest21.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest21NetFx.cs b/test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest21NetFx.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest21NetFx.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest21NetFx.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest22.cs b/test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest22.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest22.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest22.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest31.cs b/test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest31.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest31.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest31.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest50.cs b/test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest50.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest50.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTest50.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTestLegacy.cs b/test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTestLegacy.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTestLegacy.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/MvcBuildIntegrationTestLegacy.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PackIntegrationTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/PackIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/PackIntegrationTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/PackIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/PublishIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ReferenceResolverTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/ReferenceResolverTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/ReferenceResolverTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/ReferenceResolverTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ResolveAllScopedCssAssetsTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/ResolveAllScopedCssAssetsTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/ResolveAllScopedCssAssetsTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/ResolveAllScopedCssAssetsTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs b/test/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ComputeReferenceStaticWebAssetItemsTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ComputeReferenceStaticWebAssetItemsTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ComputeReferenceStaticWebAssetItemsTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ComputeReferenceStaticWebAssetItemsTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ComputeStaticWebAssetsForCurrentProjectTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ComputeStaticWebAssetsForCurrentProjectTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ComputeStaticWebAssetsForCurrentProjectTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ComputeStaticWebAssetsForCurrentProjectTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/DiscoverStaticWebAssetsTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/DiscoverStaticWebAssetsTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/DiscoverStaticWebAssetsTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/DiscoverStaticWebAssetsTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/GenerateStaticWebAssetsManifestTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/GenerateStaticWebAssetsManifestTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/GenerateStaticWebAssetsManifestTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/GenerateStaticWebAssetsManifestTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/MergeConfigurationPropertiesTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/MergeConfigurationPropertiesTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/MergeConfigurationPropertiesTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/MergeConfigurationPropertiesTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ReadStaticWebAssetsManifestFileTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ReadStaticWebAssetsManifestFileTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ReadStaticWebAssetsManifestFileTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssets/ReadStaticWebAssetsManifestFileTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_CrosstargetingTests_CanIncludeBrowserAssets.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_CrosstargetingTests_CanIncludeBrowserAssets.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_CrosstargetingTests_CanIncludeBrowserAssets.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_CrosstargetingTests_CanIncludeBrowserAssets.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_CrosstargetingTests_CanIncludeBrowserAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_CrosstargetingTests_CanIncludeBrowserAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_CrosstargetingTests_CanIncludeBrowserAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_CrosstargetingTests_CanIncludeBrowserAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DeployOnBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_CrosstargetingTests_CanIncludeBrowserAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_CrosstargetingTests_CanIncludeBrowserAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_CrosstargetingTests_CanIncludeBrowserAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_CrosstargetingTests_CanIncludeBrowserAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_CrosstargetingTests_CanIncludeBrowserAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_CrosstargetingTests_CanIncludeBrowserAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_CrosstargetingTests_CanIncludeBrowserAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_CrosstargetingTests_CanIncludeBrowserAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsCrossTargetingTests.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsCrossTargetingTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsCrossTargetingTests.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsCrossTargetingTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsGeneratePackagePropsFileTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsGeneratePackagePropsFileTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsGeneratePackagePropsFileTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsGeneratePackagePropsFileTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/Counter.razor.rz.scp.css b/test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/Counter.razor.rz.scp.css similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/Counter.razor.rz.scp.css rename to test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/Counter.razor.rz.scp.css diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/FetchData.razor.rz.scp.css b/test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/FetchData.razor.rz.scp.css similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/FetchData.razor.rz.scp.css rename to test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/FetchData.razor.rz.scp.css diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/Index.razor.rz.scp.css b/test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/Index.razor.rz.scp.css similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/Index.razor.rz.scp.css rename to test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/Index.razor.rz.scp.css diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/lib.bundle.scp.css b/test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/lib.bundle.scp.css similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/lib.bundle.scp.css rename to test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/lib.bundle.scp.css diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/package.bundle.scp.css b/test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/package.bundle.scp.css similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/package.bundle.scp.css rename to test/Microsoft.NET.Sdk.Razor.Tests/TestFiles/Generated/package.bundle.scp.css diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ValidateStaticWebAssetsUniquePathsTest.cs b/test/Microsoft.NET.Sdk.Razor.Tests/ValidateStaticWebAssetsUniquePathsTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tests/ValidateStaticWebAssetsUniquePathsTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tests/ValidateStaticWebAssetsUniquePathsTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/.editorconfig b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/.editorconfig similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/.editorconfig rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/.editorconfig diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/CompositeRazorProjectFileSystemTest.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/CompositeRazorProjectFileSystemTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/CompositeRazorProjectFileSystemTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/CompositeRazorProjectFileSystemTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/ConcurrentLruCacheTest.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/ConcurrentLruCacheTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/ConcurrentLruCacheTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/ConcurrentLruCacheTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultExtensionAssemblyLoaderTest.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultExtensionAssemblyLoaderTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultExtensionAssemblyLoaderTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultExtensionAssemblyLoaderTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultExtensionDependencyCheckerTest.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultExtensionDependencyCheckerTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultExtensionDependencyCheckerTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultExtensionDependencyCheckerTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultRequestDispatcherTest.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultRequestDispatcherTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultRequestDispatcherTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/DefaultRequestDispatcherTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerData.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerData.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerData.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerData.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerStats.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerStats.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerStats.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerStats.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerUtilities.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerUtilities.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerUtilities.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/ServerUtilities.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/TestableEventBus.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/TestableEventBus.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/TestableEventBus.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/Infrastructure/TestableEventBus.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/LoaderTestResources.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/LoaderTestResources.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/LoaderTestResources.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/LoaderTestResources.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/MetadataCacheTest.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/MetadataCacheTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/MetadataCacheTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/MetadataCacheTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Microsoft.NET.Sdk.Razor.Tool.Tests.csproj b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/Microsoft.NET.Sdk.Razor.Tool.Tests.csproj similarity index 94% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Microsoft.NET.Sdk.Razor.Tool.Tests.csproj rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/Microsoft.NET.Sdk.Razor.Tool.Tests.csproj index 7568bdeb4bc2..7d2e76bf9dd6 100644 --- a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Microsoft.NET.Sdk.Razor.Tool.Tests.csproj +++ b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/Microsoft.NET.Sdk.Razor.Tool.Tests.csproj @@ -26,7 +26,7 @@ - + diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/NotFoundProjectItem.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/NotFoundProjectItem.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/NotFoundProjectItem.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/NotFoundProjectItem.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Properties/AssemblyInfo.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/Properties/AssemblyInfo.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/Properties/AssemblyInfo.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/Properties/AssemblyInfo.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerCommandTest.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerCommandTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerCommandTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerCommandTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerLifecycleTest.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerLifecycleTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerLifecycleTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerLifecycleTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerProtocol/ServerProtocolTest.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerProtocol/ServerProtocolTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerProtocol/ServerProtocolTest.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/ServerProtocol/ServerProtocolTest.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/TestDefaultExtensionAssemblyLoader.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/TestDefaultExtensionAssemblyLoader.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/TestDefaultExtensionAssemblyLoader.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/TestDefaultExtensionAssemblyLoader.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/TestRazorProjectItem.cs b/test/Microsoft.NET.Sdk.Razor.Tool.Tests/TestRazorProjectItem.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Razor.Tool.Tests/TestRazorProjectItem.cs rename to test/Microsoft.NET.Sdk.Razor.Tool.Tests/TestRazorProjectItem.cs diff --git a/src/Tests/Microsoft.NET.Sdk.Web.Tests/Microsoft.NET.Sdk.Web.Tests.csproj b/test/Microsoft.NET.Sdk.Web.Tests/Microsoft.NET.Sdk.Web.Tests.csproj similarity index 88% rename from src/Tests/Microsoft.NET.Sdk.Web.Tests/Microsoft.NET.Sdk.Web.Tests.csproj rename to test/Microsoft.NET.Sdk.Web.Tests/Microsoft.NET.Sdk.Web.Tests.csproj index 30121b8a9dca..864ae4603659 100644 --- a/src/Tests/Microsoft.NET.Sdk.Web.Tests/Microsoft.NET.Sdk.Web.Tests.csproj +++ b/test/Microsoft.NET.Sdk.Web.Tests/Microsoft.NET.Sdk.Web.Tests.csproj @@ -25,7 +25,7 @@ - + diff --git a/src/Tests/Microsoft.NET.Sdk.Web.Tests/PublishTests.cs b/test/Microsoft.NET.Sdk.Web.Tests/PublishTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.Web.Tests/PublishTests.cs rename to test/Microsoft.NET.Sdk.Web.Tests/PublishTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/FakeManifestProvider.cs b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/FakeManifestProvider.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/FakeManifestProvider.cs rename to test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/FakeManifestProvider.cs diff --git a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/ManifestReaderFunctionalTests.cs b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/ManifestReaderFunctionalTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/ManifestReaderFunctionalTests.cs rename to test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/ManifestReaderFunctionalTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/ManifestTests.cs b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/ManifestTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/ManifestTests.cs rename to test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/ManifestTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj similarity index 87% rename from src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj rename to test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj index b21b7ac07e4c..8dfd58836043 100644 --- a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj +++ b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/SdkDirectoryWorkloadManifestProviderTests.cs b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/SdkDirectoryWorkloadManifestProviderTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/SdkDirectoryWorkloadManifestProviderTests.cs rename to test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/SdkDirectoryWorkloadManifestProviderTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/SdkFeatureBandTests.cs b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/SdkFeatureBandTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/SdkFeatureBandTests.cs rename to test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/SdkFeatureBandTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadPackGroupTests.cs b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadPackGroupTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadPackGroupTests.cs rename to test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadPackGroupTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadResolverTests.cs b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadResolverTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadResolverTests.cs rename to test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadResolverTests.cs diff --git a/src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadSuggestionFinderTests.cs b/test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadSuggestionFinderTests.cs similarity index 100% rename from src/Tests/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadSuggestionFinderTests.cs rename to test/Microsoft.NET.Sdk.WorkloadManifestReader.Tests/WorkloadSuggestionFinderTests.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/AspNetSdkTest.cs b/test/Microsoft.NET.TestFramework/AspNetSdkTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/AspNetSdkTest.cs rename to test/Microsoft.NET.TestFramework/AspNetSdkTest.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/AssemblyInfo.cs b/test/Microsoft.NET.TestFramework/AssemblyInfo.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/AssemblyInfo.cs rename to test/Microsoft.NET.TestFramework/AssemblyInfo.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/AssemblyAssertions.cs b/test/Microsoft.NET.TestFramework/Assertions/AssemblyAssertions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/AssemblyAssertions.cs rename to test/Microsoft.NET.TestFramework/Assertions/AssemblyAssertions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/CommandResultAssertions.cs b/test/Microsoft.NET.TestFramework/Assertions/CommandResultAssertions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/CommandResultAssertions.cs rename to test/Microsoft.NET.TestFramework/Assertions/CommandResultAssertions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/CommandResultExtensions.cs b/test/Microsoft.NET.TestFramework/Assertions/CommandResultExtensions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/CommandResultExtensions.cs rename to test/Microsoft.NET.TestFramework/Assertions/CommandResultExtensions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/DependencyContextAssertions.cs b/test/Microsoft.NET.TestFramework/Assertions/DependencyContextAssertions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/DependencyContextAssertions.cs rename to test/Microsoft.NET.TestFramework/Assertions/DependencyContextAssertions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/DependencyContextExtensions.cs b/test/Microsoft.NET.TestFramework/Assertions/DependencyContextExtensions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/DependencyContextExtensions.cs rename to test/Microsoft.NET.TestFramework/Assertions/DependencyContextExtensions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/DirectoryInfoAssertions.cs b/test/Microsoft.NET.TestFramework/Assertions/DirectoryInfoAssertions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/DirectoryInfoAssertions.cs rename to test/Microsoft.NET.TestFramework/Assertions/DirectoryInfoAssertions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/DirectoryInfoExtensions.cs b/test/Microsoft.NET.TestFramework/Assertions/DirectoryInfoExtensions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/DirectoryInfoExtensions.cs rename to test/Microsoft.NET.TestFramework/Assertions/DirectoryInfoExtensions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/FileInfoAssertions.cs b/test/Microsoft.NET.TestFramework/Assertions/FileInfoAssertions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/FileInfoAssertions.cs rename to test/Microsoft.NET.TestFramework/Assertions/FileInfoAssertions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.FileInfoLock.cs b/test/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.FileInfoLock.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.FileInfoLock.cs rename to test/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.FileInfoLock.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.FileInfoNuGetLock.cs b/test/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.FileInfoNuGetLock.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.FileInfoNuGetLock.cs rename to test/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.FileInfoNuGetLock.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.cs b/test/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.cs rename to test/Microsoft.NET.TestFramework/Assertions/FileInfoExtensions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Assertions/StringAssertionsExtensions.cs b/test/Microsoft.NET.TestFramework/Assertions/StringAssertionsExtensions.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Assertions/StringAssertionsExtensions.cs rename to test/Microsoft.NET.TestFramework/Assertions/StringAssertionsExtensions.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/CoreMSBuildAndWindowsOnlyFactAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/CoreMSBuildAndWindowsOnlyFactAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/CoreMSBuildAndWindowsOnlyFactAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/CoreMSBuildAndWindowsOnlyFactAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/CoreMSBuildAndWindowsOnlyTheoryAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/CoreMSBuildAndWindowsOnlyTheoryAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/CoreMSBuildAndWindowsOnlyTheoryAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/CoreMSBuildAndWindowsOnlyTheoryAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/CoreMSBuildOnlyFactAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/CoreMSBuildOnlyFactAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/CoreMSBuildOnlyFactAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/CoreMSBuildOnlyFactAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/CoreMSBuildOnlyTheoryAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/CoreMSBuildOnlyTheoryAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/CoreMSBuildOnlyTheoryAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/CoreMSBuildOnlyTheoryAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/FullMSBuildOnlyFactAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/FullMSBuildOnlyFactAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/FullMSBuildOnlyFactAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/FullMSBuildOnlyFactAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/FullMSBuildOnlyTheoryAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/FullMSBuildOnlyTheoryAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/FullMSBuildOnlyTheoryAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/FullMSBuildOnlyTheoryAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/PlatformSpecificFact.cs b/test/Microsoft.NET.TestFramework/Attributes/PlatformSpecificFact.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/PlatformSpecificFact.cs rename to test/Microsoft.NET.TestFramework/Attributes/PlatformSpecificFact.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/PlatformSpecificTheory.cs b/test/Microsoft.NET.TestFramework/Attributes/PlatformSpecificTheory.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/PlatformSpecificTheory.cs rename to test/Microsoft.NET.TestFramework/Attributes/PlatformSpecificTheory.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/RequiresMSBuildVersionFactAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/RequiresMSBuildVersionFactAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/RequiresMSBuildVersionFactAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/RequiresMSBuildVersionFactAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/RequiresMSBuildVersionTheoryAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/RequiresMSBuildVersionTheoryAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/RequiresMSBuildVersionTheoryAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/RequiresMSBuildVersionTheoryAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/RequiresSpecificFrameworkFactAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/RequiresSpecificFrameworkFactAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/RequiresSpecificFrameworkFactAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/RequiresSpecificFrameworkFactAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/RequiresSpecificFrameworkTheoryAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/RequiresSpecificFrameworkTheoryAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/RequiresSpecificFrameworkTheoryAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/RequiresSpecificFrameworkTheoryAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/WindowsOnlyRequiresMSBuildVersionFactAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/WindowsOnlyRequiresMSBuildVersionFactAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/WindowsOnlyRequiresMSBuildVersionFactAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/WindowsOnlyRequiresMSBuildVersionFactAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Attributes/WindowsOnlyRequiresMSBuildVersionTheoryAttribute.cs b/test/Microsoft.NET.TestFramework/Attributes/WindowsOnlyRequiresMSBuildVersionTheoryAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Attributes/WindowsOnlyRequiresMSBuildVersionTheoryAttribute.cs rename to test/Microsoft.NET.TestFramework/Attributes/WindowsOnlyRequiresMSBuildVersionTheoryAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/AddReferenceCommand.cs b/test/Microsoft.NET.TestFramework/Commands/AddReferenceCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/AddReferenceCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/AddReferenceCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/BuildCommand.cs b/test/Microsoft.NET.TestFramework/Commands/BuildCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/BuildCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/BuildCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/BuildServerCommand.cs b/test/Microsoft.NET.TestFramework/Commands/BuildServerCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/BuildServerCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/BuildServerCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/CleanCommand.cs b/test/Microsoft.NET.TestFramework/Commands/CleanCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/CleanCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/CleanCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/ComposeStoreCommand.cs b/test/Microsoft.NET.TestFramework/Commands/ComposeStoreCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/ComposeStoreCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/ComposeStoreCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetBuildCommand.cs b/test/Microsoft.NET.TestFramework/Commands/DotnetBuildCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/DotnetBuildCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/DotnetBuildCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetCommand.cs b/test/Microsoft.NET.TestFramework/Commands/DotnetCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/DotnetCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/DotnetCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetNewCommand.cs b/test/Microsoft.NET.TestFramework/Commands/DotnetNewCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/DotnetNewCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/DotnetNewCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetPackCommand.cs b/test/Microsoft.NET.TestFramework/Commands/DotnetPackCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/DotnetPackCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/DotnetPackCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetPublishCommand.cs b/test/Microsoft.NET.TestFramework/Commands/DotnetPublishCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/DotnetPublishCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/DotnetPublishCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetRestoreCommand.cs b/test/Microsoft.NET.TestFramework/Commands/DotnetRestoreCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/DotnetRestoreCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/DotnetRestoreCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetTestCommand.cs b/test/Microsoft.NET.TestFramework/Commands/DotnetTestCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/DotnetTestCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/DotnetTestCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetToolCommand.cs b/test/Microsoft.NET.TestFramework/Commands/DotnetToolCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/DotnetToolCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/DotnetToolCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/DotnetVSTestCommand.cs b/test/Microsoft.NET.TestFramework/Commands/DotnetVSTestCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/DotnetVSTestCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/DotnetVSTestCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs b/test/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/GetValuesCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/ListPackageCommand.cs b/test/Microsoft.NET.TestFramework/Commands/ListPackageCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/ListPackageCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/ListPackageCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/ListReferenceCommand.cs b/test/Microsoft.NET.TestFramework/Commands/ListReferenceCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/ListReferenceCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/ListReferenceCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs b/test/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildVersionCommand.cs b/test/Microsoft.NET.TestFramework/Commands/MSBuildVersionCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/MSBuildVersionCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/MSBuildVersionCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/NuGetExeRestoreCommand.cs b/test/Microsoft.NET.TestFramework/Commands/NuGetExeRestoreCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/NuGetExeRestoreCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/NuGetExeRestoreCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/PackCommand.cs b/test/Microsoft.NET.TestFramework/Commands/PackCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/PackCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/PackCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs b/test/Microsoft.NET.TestFramework/Commands/PublishCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/PublishCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/PublishCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/RebuildCommand.cs b/test/Microsoft.NET.TestFramework/Commands/RebuildCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/RebuildCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/RebuildCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/RemoveReferenceCommand.cs b/test/Microsoft.NET.TestFramework/Commands/RemoveReferenceCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/RemoveReferenceCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/RemoveReferenceCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/RestoreCommand.cs b/test/Microsoft.NET.TestFramework/Commands/RestoreCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/RestoreCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/RestoreCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/RunExeCommand.cs b/test/Microsoft.NET.TestFramework/Commands/RunExeCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/RunExeCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/RunExeCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/SdkCommandSpec.cs b/test/Microsoft.NET.TestFramework/Commands/SdkCommandSpec.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/SdkCommandSpec.cs rename to test/Microsoft.NET.TestFramework/Commands/SdkCommandSpec.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Commands/TestCommand.cs b/test/Microsoft.NET.TestFramework/Commands/TestCommand.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Commands/TestCommand.cs rename to test/Microsoft.NET.TestFramework/Commands/TestCommand.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/ConflictResolutionAssets.cs b/test/Microsoft.NET.TestFramework/ConflictResolutionAssets.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/ConflictResolutionAssets.cs rename to test/Microsoft.NET.TestFramework/ConflictResolutionAssets.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/CopyFilesTarget.cs b/test/Microsoft.NET.TestFramework/CopyFilesTarget.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/CopyFilesTarget.cs rename to test/Microsoft.NET.TestFramework/CopyFilesTarget.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/EnvironmentInfo.cs b/test/Microsoft.NET.TestFramework/EnvironmentInfo.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/EnvironmentInfo.cs rename to test/Microsoft.NET.TestFramework/EnvironmentInfo.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/FileConstants.cs b/test/Microsoft.NET.TestFramework/FileConstants.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/FileConstants.cs rename to test/Microsoft.NET.TestFramework/FileConstants.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/InMemoryLoggerProvider.cs b/test/Microsoft.NET.TestFramework/InMemoryLoggerProvider.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/InMemoryLoggerProvider.cs rename to test/Microsoft.NET.TestFramework/InMemoryLoggerProvider.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/InternalsVisibleToAttributes.cs b/test/Microsoft.NET.TestFramework/InternalsVisibleToAttributes.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/InternalsVisibleToAttributes.cs rename to test/Microsoft.NET.TestFramework/InternalsVisibleToAttributes.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/MacOsOnlyFactAttribute.cs b/test/Microsoft.NET.TestFramework/MacOsOnlyFactAttribute.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/MacOsOnlyFactAttribute.cs rename to test/Microsoft.NET.TestFramework/MacOsOnlyFactAttribute.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Microsoft.NET.TestFramework.csproj b/test/Microsoft.NET.TestFramework/Microsoft.NET.TestFramework.csproj similarity index 91% rename from src/Tests/Microsoft.NET.TestFramework/Microsoft.NET.TestFramework.csproj rename to test/Microsoft.NET.TestFramework/Microsoft.NET.TestFramework.csproj index 61a7215350c6..e735e4456cba 100644 --- a/src/Tests/Microsoft.NET.TestFramework/Microsoft.NET.TestFramework.csproj +++ b/test/Microsoft.NET.TestFramework/Microsoft.NET.TestFramework.csproj @@ -43,8 +43,8 @@ - - + + diff --git a/src/Tests/Microsoft.NET.TestFramework/Mock/FileSystemMockBuilder.cs b/test/Microsoft.NET.TestFramework/Mock/FileSystemMockBuilder.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Mock/FileSystemMockBuilder.cs rename to test/Microsoft.NET.TestFramework/Mock/FileSystemMockBuilder.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Mock/ITemporaryDirectoryMock.cs b/test/Microsoft.NET.TestFramework/Mock/ITemporaryDirectoryMock.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Mock/ITemporaryDirectoryMock.cs rename to test/Microsoft.NET.TestFramework/Mock/ITemporaryDirectoryMock.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/NuGetConfigWriter.cs b/test/Microsoft.NET.TestFramework/NuGetConfigWriter.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/NuGetConfigWriter.cs rename to test/Microsoft.NET.TestFramework/NuGetConfigWriter.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/NuGetTestLogger.cs b/test/Microsoft.NET.TestFramework/NuGetTestLogger.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/NuGetTestLogger.cs rename to test/Microsoft.NET.TestFramework/NuGetTestLogger.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/NuGetTransientErrorDetector.cs b/test/Microsoft.NET.TestFramework/NuGetTransientErrorDetector.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/NuGetTransientErrorDetector.cs rename to test/Microsoft.NET.TestFramework/NuGetTransientErrorDetector.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs b/test/Microsoft.NET.TestFramework/OutputPathCalculator.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/OutputPathCalculator.cs rename to test/Microsoft.NET.TestFramework/OutputPathCalculator.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs b/test/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs rename to test/Microsoft.NET.TestFramework/ProjectConstruction/TestProject.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/RetryFailedException.cs b/test/Microsoft.NET.TestFramework/RetryFailedException.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/RetryFailedException.cs rename to test/Microsoft.NET.TestFramework/RetryFailedException.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/SdkTest.cs b/test/Microsoft.NET.TestFramework/SdkTest.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/SdkTest.cs rename to test/Microsoft.NET.TestFramework/SdkTest.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/SetupTestRoot.targets b/test/Microsoft.NET.TestFramework/SetupTestRoot.targets similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/SetupTestRoot.targets rename to test/Microsoft.NET.TestFramework/SetupTestRoot.targets diff --git a/src/Tests/Microsoft.NET.TestFramework/SharedTestOutputHelper.cs b/test/Microsoft.NET.TestFramework/SharedTestOutputHelper.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/SharedTestOutputHelper.cs rename to test/Microsoft.NET.TestFramework/SharedTestOutputHelper.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/StringTestLogger.cs b/test/Microsoft.NET.TestFramework/StringTestLogger.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/StringTestLogger.cs rename to test/Microsoft.NET.TestFramework/StringTestLogger.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/TestAsset.cs b/test/Microsoft.NET.TestFramework/TestAsset.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/TestAsset.cs rename to test/Microsoft.NET.TestFramework/TestAsset.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/TestAssetSubdirectories.cs b/test/Microsoft.NET.TestFramework/TestAssetSubdirectories.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/TestAssetSubdirectories.cs rename to test/Microsoft.NET.TestFramework/TestAssetSubdirectories.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/TestAssetsManager.cs b/test/Microsoft.NET.TestFramework/TestAssetsManager.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/TestAssetsManager.cs rename to test/Microsoft.NET.TestFramework/TestAssetsManager.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/TestCommandLine.cs b/test/Microsoft.NET.TestFramework/TestCommandLine.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/TestCommandLine.cs rename to test/Microsoft.NET.TestFramework/TestCommandLine.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/TestConstants.cs b/test/Microsoft.NET.TestFramework/TestConstants.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/TestConstants.cs rename to test/Microsoft.NET.TestFramework/TestConstants.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/TestContext.cs b/test/Microsoft.NET.TestFramework/TestContext.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/TestContext.cs rename to test/Microsoft.NET.TestFramework/TestContext.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/TestDirectory.cs b/test/Microsoft.NET.TestFramework/TestDirectory.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/TestDirectory.cs rename to test/Microsoft.NET.TestFramework/TestDirectory.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/TestLoggerFactory.cs b/test/Microsoft.NET.TestFramework/TestLoggerFactory.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/TestLoggerFactory.cs rename to test/Microsoft.NET.TestFramework/TestLoggerFactory.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/TestPackageReference.cs b/test/Microsoft.NET.TestFramework/TestPackageReference.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/TestPackageReference.cs rename to test/Microsoft.NET.TestFramework/TestPackageReference.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/ToolsetInfo.cs b/test/Microsoft.NET.TestFramework/ToolsetInfo.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/ToolsetInfo.cs rename to test/Microsoft.NET.TestFramework/ToolsetInfo.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Utilities/BufferedReporter.cs b/test/Microsoft.NET.TestFramework/Utilities/BufferedReporter.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Utilities/BufferedReporter.cs rename to test/Microsoft.NET.TestFramework/Utilities/BufferedReporter.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Utilities/FileThumbPrint.cs b/test/Microsoft.NET.TestFramework/Utilities/FileThumbPrint.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Utilities/FileThumbPrint.cs rename to test/Microsoft.NET.TestFramework/Utilities/FileThumbPrint.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Utilities/NuGetGlobalPackagesFolder.cs b/test/Microsoft.NET.TestFramework/Utilities/NuGetGlobalPackagesFolder.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Utilities/NuGetGlobalPackagesFolder.cs rename to test/Microsoft.NET.TestFramework/Utilities/NuGetGlobalPackagesFolder.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Utilities/PeReaderUtils.cs b/test/Microsoft.NET.TestFramework/Utilities/PeReaderUtils.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Utilities/PeReaderUtils.cs rename to test/Microsoft.NET.TestFramework/Utilities/PeReaderUtils.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/Utilities/ProjectModification.cs b/test/Microsoft.NET.TestFramework/Utilities/ProjectModification.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/Utilities/ProjectModification.cs rename to test/Microsoft.NET.TestFramework/Utilities/ProjectModification.cs diff --git a/src/Tests/Microsoft.NET.TestFramework/XunitLoggerProvider.cs b/test/Microsoft.NET.TestFramework/XunitLoggerProvider.cs similarity index 100% rename from src/Tests/Microsoft.NET.TestFramework/XunitLoggerProvider.cs rename to test/Microsoft.NET.TestFramework/XunitLoggerProvider.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProject.cs b/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProject.cs rename to test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProject.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithComplexNugetDependency.cs b/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithComplexNugetDependency.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithComplexNugetDependency.cs rename to test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithComplexNugetDependency.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithExplicitConfig.cs b/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithExplicitConfig.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithExplicitConfig.cs rename to test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithExplicitConfig.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithGeneratePackageOnBuild.cs b/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithGeneratePackageOnBuild.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithGeneratePackageOnBuild.cs rename to test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithGeneratePackageOnBuild.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithP2PReference.cs b/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithP2PReference.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithP2PReference.cs rename to test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithP2PReference.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs b/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs rename to test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolSelfContainedProject.cs b/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolSelfContainedProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolSelfContainedProject.cs rename to test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolSelfContainedProject.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolTargetingNonSupportedTFM.cs b/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolTargetingNonSupportedTFM.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolTargetingNonSupportedTFM.cs rename to test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolTargetingNonSupportedTFM.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToTestPackAToolProject.cs b/test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToTestPackAToolProject.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToTestPackAToolProject.cs rename to test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToTestPackAToolProject.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/Microsoft.NET.ToolPack.Tests.csproj b/test/Microsoft.NET.ToolPack.Tests/Microsoft.NET.ToolPack.Tests.csproj similarity index 89% rename from src/Tests/Microsoft.NET.ToolPack.Tests/Microsoft.NET.ToolPack.Tests.csproj rename to test/Microsoft.NET.ToolPack.Tests/Microsoft.NET.ToolPack.Tests.csproj index 6f657e4b558c..59b84545f0e1 100644 --- a/src/Tests/Microsoft.NET.ToolPack.Tests/Microsoft.NET.ToolPack.Tests.csproj +++ b/test/Microsoft.NET.ToolPack.Tests/Microsoft.NET.ToolPack.Tests.csproj @@ -37,7 +37,7 @@ - + diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs b/test/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs rename to test/Microsoft.NET.ToolPack.Tests/PackWithShimsAndResultNugetPackageNuGetPackagexFixture.cs diff --git a/src/Tests/Microsoft.NET.ToolPack.Tests/Properties/launchSettings.json b/test/Microsoft.NET.ToolPack.Tests/Properties/launchSettings.json similarity index 100% rename from src/Tests/Microsoft.NET.ToolPack.Tests/Properties/launchSettings.json rename to test/Microsoft.NET.ToolPack.Tests/Properties/launchSettings.json diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/AliasAssignmentTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/AliasAssignmentTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/AliasAssignmentTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/AliasAssignmentTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/AllComponents.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/AllComponents.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/AllComponents.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/AllComponents.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/BaseTest.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/BaseTest.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/BaseTest.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/BaseTest.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/CliMocks/MockHostSpecificDataLoader.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/CliMocks/MockHostSpecificDataLoader.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/CliMocks/MockHostSpecificDataLoader.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/CliMocks/MockHostSpecificDataLoader.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/CliMocks/MockHostSpecificTemplateData.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/CliMocks/MockHostSpecificTemplateData.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/CliMocks/MockHostSpecificTemplateData.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/CliMocks/MockHostSpecificTemplateData.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/CliTestHostFactory.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/CliTestHostFactory.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/CliTestHostFactory.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/CliTestHostFactory.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/HostDataLoaderTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/HostDataLoaderTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/HostDataLoaderTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/HostDataLoaderTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj b/test/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj similarity index 85% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj rename to test/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj index 7555cec6b464..811e6a035298 100644 --- a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj +++ b/test/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj @@ -25,8 +25,8 @@ - - + + diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ModuleInitializer.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ModuleInitializer.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ModuleInitializer.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ModuleInitializer.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/.gitignore b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/.gitignore similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/.gitignore rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/.gitignore diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpResolutionTests.FailedToResolveTemplate_WhenMultipleLanguagesAreFound.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpResolutionTests.FailedToResolveTemplate_WhenMultipleLanguagesAreFound.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpResolutionTests.FailedToResolveTemplate_WhenMultipleLanguagesAreFound.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpResolutionTests.FailedToResolveTemplate_WhenMultipleLanguagesAreFound.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Basic.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Basic.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Basic.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Basic.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Language.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Language.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Language.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Language.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Type.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Type.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Type.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowCommandOptions_Type.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowHintsForOtherTemplates.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowHintsForOtherTemplates.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowHintsForOtherTemplates.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowHintsForOtherTemplates.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_MultipleTemplate_CombinedChoice.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_MultipleTemplate_CombinedChoice.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_MultipleTemplate_CombinedChoice.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_MultipleTemplate_CombinedChoice.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_MultipleTemplate_MultipleParams.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_MultipleTemplate_MultipleParams.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_MultipleTemplate_MultipleParams.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_MultipleTemplate_MultipleParams.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_RequiredParam.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_RequiredParam.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_RequiredParam.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_RequiredParam.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_Required.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_Required.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_Required.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_Required.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_ShortenedUsage.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_ShortenedUsage.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_ShortenedUsage.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_ShortenedUsage.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_ShortenedUsage_FirstTwoValuesFit.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_ShortenedUsage_FirstTwoValuesFit.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_ShortenedUsage_FirstTwoValuesFit.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_Choice_ShortenedUsage_FirstTwoValuesFit.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_NonChoice.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_NonChoice.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_NonChoice.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.CanShowTemplateOptions_SingleTemplate_NonChoice.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.DoesNotCombineParametersWhenAliasesAreDifferent.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.DoesNotCombineParametersWhenAliasesAreDifferent.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.DoesNotCombineParametersWhenAliasesAreDifferent.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.DoesNotCombineParametersWhenAliasesAreDifferent.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.FailedToResolveTemplate_WhenMultipleLanguagesAreFound.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.FailedToResolveTemplate_WhenMultipleLanguagesAreFound.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.FailedToResolveTemplate_WhenMultipleLanguagesAreFound.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/HelpTests.FailedToResolveTemplate_WhenMultipleLanguagesAreFound.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Create_GetAllSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Create_GetAllSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Create_GetAllSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Create_GetAllSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.DetailsCommand_GetAllSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.DetailsCommand_GetAllSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.DetailsCommand_GetAllSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.DetailsCommand_GetAllSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Install_GetAllSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Install_GetAllSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Install_GetAllSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Install_GetAllSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.List_GetAllSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.List_GetAllSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.List_GetAllSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.List_GetAllSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.RootCommand_GetAllSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.RootCommand_GetAllSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.RootCommand_GetAllSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.RootCommand_GetAllSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.RootCommand_GetStartsWtihSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.RootCommand_GetStartsWtihSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.RootCommand_GetStartsWtihSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.RootCommand_GetStartsWtihSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Search_GetAllSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Search_GetAllSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Search_GetAllSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Search_GetAllSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.TemplateCommand_GetAllSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.TemplateCommand_GetAllSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.TemplateCommand_GetAllSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.TemplateCommand_GetAllSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Uninstall_GetAllSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Uninstall_GetAllSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Uninstall_GetAllSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Uninstall_GetAllSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Update_GetAllSuggestions.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Update_GetAllSuggestions.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Update_GetAllSuggestions.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TabCompletionTests.Update_GetAllSuggestions.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TemplateCommandTests.CannotCreateCommandForInvalidParameter.verified.txt b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TemplateCommandTests.CannotCreateCommandForInvalidParameter.verified.txt similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TemplateCommandTests.CannotCreateCommandForInvalidParameter.verified.txt rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/Approvals/TemplateCommandTests.CannotCreateCommandForInvalidParameter.verified.txt diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/HelpTests.Resolution.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/HelpTests.Resolution.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/HelpTests.Resolution.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/HelpTests.Resolution.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/HelpTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/HelpTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/HelpTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/HelpTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstallTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstallTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstallTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstallTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.NoMatchHandling.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.NoMatchHandling.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.NoMatchHandling.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.NoMatchHandling.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.Subcommand.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.Subcommand.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.Subcommand.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.Subcommand.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/InstantiateTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/ListTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/ListTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/ListTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/ListTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/MiscTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/MiscTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/MiscTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/MiscTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/SearchTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/SearchTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/SearchTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/SearchTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TabCompletionTests.Approval.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TabCompletionTests.Approval.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TabCompletionTests.Approval.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TabCompletionTests.Approval.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TabCompletionTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TabCompletionTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TabCompletionTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TabCompletionTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TemplateCommandTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TemplateCommandTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TemplateCommandTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/TemplateCommandTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/UninstallTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/UninstallTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/UninstallTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/UninstallTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/UpdateTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/UpdateTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/UpdateTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/ParserTests/UpdateTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/PostActionDispatcherTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/PostActionDispatcherTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/PostActionDispatcherTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/PostActionDispatcherTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/PostActionTests/AddJsonPropertyPostActionTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/PostActionTests/AddJsonPropertyPostActionTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/PostActionTests/AddJsonPropertyPostActionTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/PostActionTests/AddJsonPropertyPostActionTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/Resources/dotnetcli.host.json b/test/Microsoft.TemplateEngine.Cli.UnitTests/Resources/dotnetcli.host.json similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/Resources/dotnetcli.host.json rename to test/Microsoft.TemplateEngine.Cli.UnitTests/Resources/dotnetcli.host.json diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TabularOutputTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TabularOutputTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TabularOutputTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/TabularOutputTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TelemetryHelperTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TelemetryHelperTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TelemetryHelperTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/TelemetryHelperTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageCoordinatorTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageDisplayTest.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageDisplayTest.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageDisplayTest.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/TemplatePackageDisplayTest.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/ListTemplateResolverTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/ListTemplateResolverTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/ListTemplateResolverTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/ListTemplateResolverTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/TemplateMatchInfoTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/TemplateMatchInfoTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/TemplateMatchInfoTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/TemplateMatchInfoTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/TemplateResolutionResultTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/TemplateResolutionResultTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/TemplateResolutionResultTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/TemplateResolutionTests/TemplateResolutionResultTests.cs diff --git a/src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplateSearchCoordinatorTests.cs b/test/Microsoft.TemplateEngine.Cli.UnitTests/TemplateSearchCoordinatorTests.cs similarity index 100% rename from src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/TemplateSearchCoordinatorTests.cs rename to test/Microsoft.TemplateEngine.Cli.UnitTests/TemplateSearchCoordinatorTests.cs diff --git a/src/Tests/Microsoft.Win32.Msi.Manual.Tests/Microsoft.Win32.Msi.Manual.Tests.csproj b/test/Microsoft.Win32.Msi.Manual.Tests/Microsoft.Win32.Msi.Manual.Tests.csproj similarity index 93% rename from src/Tests/Microsoft.Win32.Msi.Manual.Tests/Microsoft.Win32.Msi.Manual.Tests.csproj rename to test/Microsoft.Win32.Msi.Manual.Tests/Microsoft.Win32.Msi.Manual.Tests.csproj index e86ee3cc1e17..3fcce4907598 100644 --- a/src/Tests/Microsoft.Win32.Msi.Manual.Tests/Microsoft.Win32.Msi.Manual.Tests.csproj +++ b/test/Microsoft.Win32.Msi.Manual.Tests/Microsoft.Win32.Msi.Manual.Tests.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Tests/Microsoft.Win32.Msi.Manual.Tests/Program.cs b/test/Microsoft.Win32.Msi.Manual.Tests/Program.cs similarity index 100% rename from src/Tests/Microsoft.Win32.Msi.Manual.Tests/Program.cs rename to test/Microsoft.Win32.Msi.Manual.Tests/Program.cs diff --git a/src/Tests/Microsoft.Win32.Msi.Manual.Tests/readme.md b/test/Microsoft.Win32.Msi.Manual.Tests/readme.md similarity index 100% rename from src/Tests/Microsoft.Win32.Msi.Manual.Tests/readme.md rename to test/Microsoft.Win32.Msi.Manual.Tests/readme.md diff --git a/src/Tests/Microsoft.Win32.Msi.Tests/EventArgsTests.cs b/test/Microsoft.Win32.Msi.Tests/EventArgsTests.cs similarity index 100% rename from src/Tests/Microsoft.Win32.Msi.Tests/EventArgsTests.cs rename to test/Microsoft.Win32.Msi.Tests/EventArgsTests.cs diff --git a/src/Tests/Microsoft.Win32.Msi.Tests/Microsoft.Win32.Msi.Tests.csproj b/test/Microsoft.Win32.Msi.Tests/Microsoft.Win32.Msi.Tests.csproj similarity index 89% rename from src/Tests/Microsoft.Win32.Msi.Tests/Microsoft.Win32.Msi.Tests.csproj rename to test/Microsoft.Win32.Msi.Tests/Microsoft.Win32.Msi.Tests.csproj index 86297043b57f..e9fe26748e62 100644 --- a/src/Tests/Microsoft.Win32.Msi.Tests/Microsoft.Win32.Msi.Tests.csproj +++ b/test/Microsoft.Win32.Msi.Tests/Microsoft.Win32.Msi.Tests.csproj @@ -9,7 +9,7 @@ - + diff --git a/src/Tests/Microsoft.Win32.Msi.Tests/WindowsInstallerExceptionTests.cs b/test/Microsoft.Win32.Msi.Tests/WindowsInstallerExceptionTests.cs similarity index 100% rename from src/Tests/Microsoft.Win32.Msi.Tests/WindowsInstallerExceptionTests.cs rename to test/Microsoft.Win32.Msi.Tests/WindowsInstallerExceptionTests.cs diff --git a/src/Tests/Microsoft.Win32.Msi.Tests/WindowsInstallerTests.cs b/test/Microsoft.Win32.Msi.Tests/WindowsInstallerTests.cs similarity index 100% rename from src/Tests/Microsoft.Win32.Msi.Tests/WindowsInstallerTests.cs rename to test/Microsoft.Win32.Msi.Tests/WindowsInstallerTests.cs diff --git a/src/Tests/Msbuild.Tests.Utilities/Msbuild.Tests.Utilities.csproj b/test/Msbuild.Tests.Utilities/Msbuild.Tests.Utilities.csproj similarity index 72% rename from src/Tests/Msbuild.Tests.Utilities/Msbuild.Tests.Utilities.csproj rename to test/Msbuild.Tests.Utilities/Msbuild.Tests.Utilities.csproj index 19e71d799f6a..94c82028582a 100644 --- a/src/Tests/Msbuild.Tests.Utilities/Msbuild.Tests.Utilities.csproj +++ b/test/Msbuild.Tests.Utilities/Msbuild.Tests.Utilities.csproj @@ -9,9 +9,9 @@ - - - + + + diff --git a/src/Tests/Msbuild.Tests.Utilities/ProjDir.cs b/test/Msbuild.Tests.Utilities/ProjDir.cs similarity index 100% rename from src/Tests/Msbuild.Tests.Utilities/ProjDir.cs rename to test/Msbuild.Tests.Utilities/ProjDir.cs diff --git a/src/Tests/Msbuild.Tests.Utilities/ProjectRootElementExtensions.cs b/test/Msbuild.Tests.Utilities/ProjectRootElementExtensions.cs similarity index 100% rename from src/Tests/Msbuild.Tests.Utilities/ProjectRootElementExtensions.cs rename to test/Msbuild.Tests.Utilities/ProjectRootElementExtensions.cs diff --git a/src/Tests/Msbuild.Tests.Utilities/TestSetup.cs b/test/Msbuild.Tests.Utilities/TestSetup.cs similarity index 100% rename from src/Tests/Msbuild.Tests.Utilities/TestSetup.cs rename to test/Msbuild.Tests.Utilities/TestSetup.cs diff --git a/src/Tests/SDDLTests/Program.cs b/test/SDDLTests/Program.cs similarity index 100% rename from src/Tests/SDDLTests/Program.cs rename to test/SDDLTests/Program.cs diff --git a/src/Tests/SDDLTests/README.md b/test/SDDLTests/README.md similarity index 100% rename from src/Tests/SDDLTests/README.md rename to test/SDDLTests/README.md diff --git a/src/Tests/SDDLTests/SDDLTests.csproj b/test/SDDLTests/SDDLTests.csproj similarity index 87% rename from src/Tests/SDDLTests/SDDLTests.csproj rename to test/SDDLTests/SDDLTests.csproj index 9dc77d270fde..6c22abc672a1 100644 --- a/src/Tests/SDDLTests/SDDLTests.csproj +++ b/test/SDDLTests/SDDLTests.csproj @@ -10,8 +10,8 @@ true - - + + diff --git a/src/Tests/TelemetryStdOutLogger/LogTelemetryToStdOutForTest.cs b/test/TelemetryStdOutLogger/LogTelemetryToStdOutForTest.cs similarity index 100% rename from src/Tests/TelemetryStdOutLogger/LogTelemetryToStdOutForTest.cs rename to test/TelemetryStdOutLogger/LogTelemetryToStdOutForTest.cs diff --git a/src/Tests/TelemetryStdOutLogger/TelemetryStdOutLogger.csproj b/test/TelemetryStdOutLogger/TelemetryStdOutLogger.csproj similarity index 100% rename from src/Tests/TelemetryStdOutLogger/TelemetryStdOutLogger.csproj rename to test/TelemetryStdOutLogger/TelemetryStdOutLogger.csproj diff --git a/src/Tests/UnitTests.proj b/test/UnitTests.proj similarity index 91% rename from src/Tests/UnitTests.proj rename to test/UnitTests.proj index 1fe198defc1e..2cc23bc3d9ac 100644 --- a/src/Tests/UnitTests.proj +++ b/test/UnitTests.proj @@ -22,10 +22,10 @@ net472 - + true - + true @@ -48,48 +48,48 @@ - + - + - + - - - + + + - + - + - + - + - + - - - - + + + + eng/ - - - + + + @@ -127,7 +127,7 @@ Condition=" '$([MSBuild]::IsOSPlatform(`Windows`))' == 'false' " SourceDirectory="$(TestDotnetRoot)" DestinationArchive="$(HelixStage0Targz)" - OverwriteDestination="true"/> + OverwriteDestination="true" /> diff --git a/src/Tests/containerize.UnitTests/ParserTests.cs b/test/containerize.UnitTests/ParserTests.cs similarity index 100% rename from src/Tests/containerize.UnitTests/ParserTests.cs rename to test/containerize.UnitTests/ParserTests.cs diff --git a/src/Tests/containerize.UnitTests/containerize.UnitTests.csproj b/test/containerize.UnitTests/containerize.UnitTests.csproj similarity index 85% rename from src/Tests/containerize.UnitTests/containerize.UnitTests.csproj rename to test/containerize.UnitTests/containerize.UnitTests.csproj index b91ee651fae4..0771a26d12b6 100644 --- a/src/Tests/containerize.UnitTests/containerize.UnitTests.csproj +++ b/test/containerize.UnitTests/containerize.UnitTests.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Tests/crossgen.Tests/crossgen.Tests.cs b/test/crossgen.Tests/crossgen.Tests.cs similarity index 100% rename from src/Tests/crossgen.Tests/crossgen.Tests.cs rename to test/crossgen.Tests/crossgen.Tests.cs diff --git a/src/Tests/dotnet-add-package.Tests/GivenDotnetPackageAdd.cs b/test/dotnet-add-package.Tests/GivenDotnetPackageAdd.cs similarity index 100% rename from src/Tests/dotnet-add-package.Tests/GivenDotnetPackageAdd.cs rename to test/dotnet-add-package.Tests/GivenDotnetPackageAdd.cs diff --git a/src/Tests/dotnet-add-reference.Tests/GivenDotnetAddReference.cs b/test/dotnet-add-reference.Tests/GivenDotnetAddReference.cs similarity index 100% rename from src/Tests/dotnet-add-reference.Tests/GivenDotnetAddReference.cs rename to test/dotnet-add-reference.Tests/GivenDotnetAddReference.cs diff --git a/src/Tests/dotnet-back-compat.Tests/GivenThatWeWantToBeBackwardsCompatibleWith1xProjects.cs b/test/dotnet-back-compat.Tests/GivenThatWeWantToBeBackwardsCompatibleWith1xProjects.cs similarity index 100% rename from src/Tests/dotnet-back-compat.Tests/GivenThatWeWantToBeBackwardsCompatibleWith1xProjects.cs rename to test/dotnet-back-compat.Tests/GivenThatWeWantToBeBackwardsCompatibleWith1xProjects.cs diff --git a/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs b/test/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs similarity index 100% rename from src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs rename to test/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs diff --git a/src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsDcproj.cs b/test/dotnet-build.Tests/GivenDotnetBuildBuildsDcproj.cs similarity index 100% rename from src/Tests/dotnet-build.Tests/GivenDotnetBuildBuildsDcproj.cs rename to test/dotnet-build.Tests/GivenDotnetBuildBuildsDcproj.cs diff --git a/src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs b/test/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs similarity index 100% rename from src/Tests/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs rename to test/dotnet-clean.Tests/GivenDotnetCleanCleansBuildArtifacts.cs diff --git a/src/Tests/dotnet-format.Tests/GivenDotnetFsiExecutesAndGeneratesHelpText.cs b/test/dotnet-format.Tests/GivenDotnetFsiExecutesAndGeneratesHelpText.cs similarity index 100% rename from src/Tests/dotnet-format.Tests/GivenDotnetFsiExecutesAndGeneratesHelpText.cs rename to test/dotnet-format.Tests/GivenDotnetFsiExecutesAndGeneratesHelpText.cs diff --git a/src/Tests/dotnet-fsi.Tests/GivenDotnetFsiExecutesAndGeneratesHelpText.cs b/test/dotnet-fsi.Tests/GivenDotnetFsiExecutesAndGeneratesHelpText.cs similarity index 100% rename from src/Tests/dotnet-fsi.Tests/GivenDotnetFsiExecutesAndGeneratesHelpText.cs rename to test/dotnet-fsi.Tests/GivenDotnetFsiExecutesAndGeneratesHelpText.cs diff --git a/src/Tests/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetCommand.cs b/test/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetCommand.cs similarity index 100% rename from src/Tests/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetCommand.cs rename to test/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetCommand.cs diff --git a/src/Tests/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetHelpCommand.cs b/test/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetHelpCommand.cs similarity index 100% rename from src/Tests/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetHelpCommand.cs rename to test/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetHelpCommand.cs diff --git a/src/Tests/dotnet-install-tool.Tests/GivenDotnetInstallTool.cs b/test/dotnet-install-tool.Tests/GivenDotnetInstallTool.cs similarity index 100% rename from src/Tests/dotnet-install-tool.Tests/GivenDotnetInstallTool.cs rename to test/dotnet-install-tool.Tests/GivenDotnetInstallTool.cs diff --git a/src/Tests/dotnet-list-package.Tests/GivenDotnetListPackage.cs b/test/dotnet-list-package.Tests/GivenDotnetListPackage.cs similarity index 100% rename from src/Tests/dotnet-list-package.Tests/GivenDotnetListPackage.cs rename to test/dotnet-list-package.Tests/GivenDotnetListPackage.cs diff --git a/src/Tests/dotnet-list-reference.Tests/GivenDotnetListReference.cs b/test/dotnet-list-reference.Tests/GivenDotnetListReference.cs similarity index 100% rename from src/Tests/dotnet-list-reference.Tests/GivenDotnetListReference.cs rename to test/dotnet-list-reference.Tests/GivenDotnetListReference.cs diff --git a/src/Tests/dotnet-msbuild.Tests/GivenDotnetMSBuildBuildsProjects.cs b/test/dotnet-msbuild.Tests/GivenDotnetMSBuildBuildsProjects.cs similarity index 100% rename from src/Tests/dotnet-msbuild.Tests/GivenDotnetMSBuildBuildsProjects.cs rename to test/dotnet-msbuild.Tests/GivenDotnetMSBuildBuildsProjects.cs diff --git a/src/Tests/dotnet-msbuild.Tests/dotnet-msbuild.Tests.csproj b/test/dotnet-msbuild.Tests/dotnet-msbuild.Tests.csproj similarity index 100% rename from src/Tests/dotnet-msbuild.Tests/dotnet-msbuild.Tests.csproj rename to test/dotnet-msbuild.Tests/dotnet-msbuild.Tests.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/.gitignore b/test/dotnet-new.Tests/Approvals/.gitignore similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/.gitignore rename to test/dotnet-new.Tests/Approvals/.gitignore diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Dotnet-local-tool-manifest-file#-n#item.verified/Dotnet-local-tool-manifest-file/.config/dotnet-tools.json b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Dotnet-local-tool-manifest-file#-n#item.verified/Dotnet-local-tool-manifest-file/.config/dotnet-tools.json similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Dotnet-local-tool-manifest-file#-n#item.verified/Dotnet-local-tool-manifest-file/.config/dotnet-tools.json rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Dotnet-local-tool-manifest-file#-n#item.verified/Dotnet-local-tool-manifest-file/.config/dotnet-tools.json diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Dotnet-local-tool-manifest-file#-n#item.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Dotnet-local-tool-manifest-file#-n#item.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Dotnet-local-tool-manifest-file#-n#item.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Dotnet-local-tool-manifest-file#-n#item.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item#--empty.verified/EditorConfig-file/.editorconfig b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item#--empty.verified/EditorConfig-file/.editorconfig similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item#--empty.verified/EditorConfig-file/.editorconfig rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item#--empty.verified/EditorConfig-file/.editorconfig diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item#--empty.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item#--empty.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item#--empty.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item#--empty.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item.verified/EditorConfig-file/.editorconfig b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item.verified/EditorConfig-file/.editorconfig similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item.verified/EditorConfig-file/.editorconfig rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item.verified/EditorConfig-file/.editorconfig diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#EditorConfig-file#-n#item.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit#--use-artifacts.verified/MSBuild-Directory-Build-props-file/Directory.Build.props b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit#--use-artifacts.verified/MSBuild-Directory-Build-props-file/Directory.Build.props similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit#--use-artifacts.verified/MSBuild-Directory-Build-props-file/Directory.Build.props rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit#--use-artifacts.verified/MSBuild-Directory-Build-props-file/Directory.Build.props diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit#--use-artifacts.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit#--use-artifacts.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit#--use-artifacts.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit#--use-artifacts.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit.verified/MSBuild-Directory-Build-props-file/Directory.Build.props b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit.verified/MSBuild-Directory-Build-props-file/Directory.Build.props similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit.verified/MSBuild-Directory-Build-props-file/Directory.Build.props rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit.verified/MSBuild-Directory-Build-props-file/Directory.Build.props diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-props-file#-n#item#--inherit.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-targets-file#-n#item#--inherit.verified/MSBuild-Directory-Build-targets-file/Directory.Build.targets b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-targets-file#-n#item#--inherit.verified/MSBuild-Directory-Build-targets-file/Directory.Build.targets similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-targets-file#-n#item#--inherit.verified/MSBuild-Directory-Build-targets-file/Directory.Build.targets rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-targets-file#-n#item#--inherit.verified/MSBuild-Directory-Build-targets-file/Directory.Build.targets diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-targets-file#-n#item#--inherit.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-targets-file#-n#item#--inherit.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-targets-file#-n#item#--inherit.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Build-targets-file#-n#item#--inherit.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item#--inherit.verified/MSBuild-Directory-Packages-props-file/Directory.Packages.props b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item#--inherit.verified/MSBuild-Directory-Packages-props-file/Directory.Packages.props similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item#--inherit.verified/MSBuild-Directory-Packages-props-file/Directory.Packages.props rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item#--inherit.verified/MSBuild-Directory-Packages-props-file/Directory.Packages.props diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item#--inherit.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item#--inherit.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item#--inherit.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item#--inherit.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item.verified/MSBuild-Directory-Packages-props-file/Directory.Packages.props b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item.verified/MSBuild-Directory-Packages-props-file/Directory.Packages.props similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item.verified/MSBuild-Directory-Packages-props-file/Directory.Packages.props rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item.verified/MSBuild-Directory-Packages-props-file/Directory.Packages.props diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#MSBuild-Directory-Packages-props-file#-n#item.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Linux.verified/NuGet-Config/nuget.config b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Linux.verified/NuGet-Config/nuget.config similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Linux.verified/NuGet-Config/nuget.config rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Linux.verified/NuGet-Config/nuget.config diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Linux.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Linux.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Linux.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Linux.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.OSX.verified/NuGet-Config/nuget.config b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.OSX.verified/NuGet-Config/nuget.config similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.OSX.verified/NuGet-Config/nuget.config rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.OSX.verified/NuGet-Config/nuget.config diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.OSX.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.OSX.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.OSX.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.OSX.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Windows.verified/NuGet-Config/nuget.config b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Windows.verified/NuGet-Config/nuget.config similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Windows.verified/NuGet-Config/nuget.config rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Windows.verified/NuGet-Config/nuget.config diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Windows.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Windows.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Windows.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#NuGet-Config#-n#item.Windows.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Solution-File#-n#item.verified/Solution-File/item.sln b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Solution-File#-n#item.verified/Solution-File/item.sln similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Solution-File#-n#item.verified/Solution-File/item.sln rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Solution-File#-n#item.verified/Solution-File/item.sln diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Solution-File#-n#item.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Solution-File#-n#item.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Solution-File#-n#item.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Solution-File#-n#item.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Web-Config#-n#item.verified/Web-Config/web.config b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Web-Config#-n#item.verified/Web-Config/web.config similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Web-Config#-n#item.verified/Web-Config/web.config rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Web-Config#-n#item.verified/Web-Config/web.config diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Web-Config#-n#item.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Web-Config#-n#item.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Web-Config#-n#item.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#Web-Config#-n#item.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#dotnet-gitignore-file#-n#item.verified/dotnet-gitignore-file/.gitignore b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#dotnet-gitignore-file#-n#item.verified/dotnet-gitignore-file/.gitignore similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#dotnet-gitignore-file#-n#item.verified/dotnet-gitignore-file/.gitignore rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#dotnet-gitignore-file#-n#item.verified/dotnet-gitignore-file/.gitignore diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#dotnet-gitignore-file#-n#item.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#dotnet-gitignore-file#-n#item.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#dotnet-gitignore-file#-n#item.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#dotnet-gitignore-file#-n#item.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200#--roll-forward#major.verified/global-json-file/global.json b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200#--roll-forward#major.verified/global-json-file/global.json similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200#--roll-forward#major.verified/global-json-file/global.json rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200#--roll-forward#major.verified/global-json-file/global.json diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200#--roll-forward#major.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200#--roll-forward#major.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200#--roll-forward#major.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200#--roll-forward#major.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200.verified/global-json-file/global.json b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200.verified/global-json-file/global.json similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200.verified/global-json-file/global.json rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200.verified/global-json-file/global.json diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item#--sdk-version#6.0.200.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item.verified/global-json-file/global.json b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item.verified/global-json-file/global.json similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item.verified/global-json-file/global.json rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item.verified/global-json-file/global.json diff --git a/src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AllCommonItemsCreate.-o#global-json-file#-n#item.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AotVariants.console.cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/MyProject/vb-console.csproj b/test/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/MyProject/vb-console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/MyProject/vb-console.csproj rename to test/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/MyProject/vb-console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/AotVariants.console.vb.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/class/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/class/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/class/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/class/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=10.0.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/class/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/class/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/class/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/class/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/class/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/class/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/class/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/class/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.langVersion=preview.targetFramework=net7.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/class/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/class/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/class/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/class/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.class.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/enum/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/enum/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/enum/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/enum/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/enum/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/enum/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/enum/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/enum/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/enum/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/enum/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/enum/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/enum/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=net7.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/enum/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/enum/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/enum/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/enum/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/enum/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/enum/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/enum/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/enum/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.enum.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/interface/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/interface/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/interface/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/interface/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=10.0.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/interface/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/interface/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/interface/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/interface/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.langVersion=9.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/interface/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/interface/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/interface/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/interface/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.interface.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/record/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/record/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/record/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/record/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/record/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/record/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/record/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/record/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=8.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/record/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/record/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/record/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/record/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.langVersion=9.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/record/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/record/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/record/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/record/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.record.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/struct/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/struct/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/struct/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.targetFramework=net6.0.verified/struct/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/struct/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/struct/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/struct/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=10.verified/struct/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/struct/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/struct/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/struct/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.langVersion=9.0.targetFramework=netstandard2.0.verified/struct/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/ClassLib.csproj b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/ClassLib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/ClassLib.csproj rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/ClassLib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/struct/TestItem1.cs b/test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/struct/TestItem1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/struct/TestItem1.cs rename to test/dotnet-new.Tests/Approvals/DotnetCSharpClassTemplatesTest.struct.verified/struct/TestItem1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewCompleteTests.CanDoTabCompletion.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDebugOptionsTests.CanShowConfigWithDebugShowConfig.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_FolderInstallation.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_FolderInstallation.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_FolderInstallation.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_FolderInstallation.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_LocalPackage.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_NuGetFeed.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_NuGetFeed.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_NuGetFeed.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_NuGetFeed.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_OtherFeed.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_OtherFeed.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_OtherFeed.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_InstalledPackage_OtherFeed.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedNoVersion.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedNoVersion.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedNoVersion.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedNoVersion.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedWithVersion.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedWithVersion.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedWithVersion.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedWithVersion.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedWithoutVersion.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedWithoutVersion.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedWithoutVersion.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_NuGetFeedWithoutVersion.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_OtherFeedNoVersion.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_OtherFeedNoVersion.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_OtherFeedNoVersion.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_OtherFeedNoVersion.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_OtherFeedWithVersion.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_OtherFeedWithVersion.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_OtherFeedWithVersion.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewDetailsTest.CanDisplayDetails_RemotePackage_OtherFeedWithVersion.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowAllowScriptsOption.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowAllowScriptsOption.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowAllowScriptsOption.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowAllowScriptsOption.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplateWhenRequiredParamIsMissed.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplateWhenRequiredParamIsMissed.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplateWhenRequiredParamIsMissed.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplateWhenRequiredParamIsMissed.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplateWhenRequiredParamIsMissedAndConditionIntroduced.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplateWhenRequiredParamIsMissedAndConditionIntroduced.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplateWhenRequiredParamIsMissedAndConditionIntroduced.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplateWhenRequiredParamIsMissedAndConditionIntroduced.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_ConditionalParams.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_ConditionalParams.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_ConditionalParams.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_ConditionalParams.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnChoice.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnChoice.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnChoice.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnChoice.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnLanguage.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnLanguage.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnLanguage.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnLanguage.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnNonChoiceParam.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnNonChoiceParam.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnNonChoiceParam.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MatchOnNonChoiceParam.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MultipleValueChoice.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MultipleValueChoice.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MultipleValueChoice.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_MultipleValueChoice.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_RequiredParams.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_RequiredParams.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_RequiredParams.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_RequiredParams.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_classlib.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_classlib.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_classlib.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_classlib.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_console.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_console.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_console.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_console.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_globaljson.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_globaljson.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_globaljson.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelpForTemplate_globaljson.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Create_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Create_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Create_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Create_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Install_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Install_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Install_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Install_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_List_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_List_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_List_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_List_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Search_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Search_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Search_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Search_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Uninstall_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Uninstall_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Uninstall_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Uninstall_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Update_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Update_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Update_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_Update_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CanShowHelp_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_FullNameMatch.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_FullNameMatch.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_FullNameMatch.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_FullNameMatch.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnChoiceWithoutValue.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnChoiceWithoutValue.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnChoiceWithoutValue.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnChoiceWithoutValue.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnNonChoiceParamWithoutValue.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnNonChoiceParamWithoutValue.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnNonChoiceParamWithoutValue.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnNonChoiceParamWithoutValue.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnUnexistingParam.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnUnexistingParam.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnUnexistingParam.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_MatchOnUnexistingParam.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_PartialNameMatch.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_PartialNameMatch.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_PartialNameMatch.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_PartialNameMatch.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_WhenAmbiguousLanguageChoice.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_WhenAmbiguousLanguageChoice.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_WhenAmbiguousLanguageChoice.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewHelpTests.CannotShowHelpForTemplate_WhenAmbiguousLanguageChoice.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallPackageAvailableFromBuiltInsWithForce.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallPackageAvailableFromBuiltInsWithForce.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallPackageAvailableFromBuiltInsWithForce.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallPackageAvailableFromBuiltInsWithForce.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallSameSourceTwice_Folder_WhenSourceIsSpecified.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallSameSourceTwice_Folder_WhenSourceIsSpecified.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallSameSourceTwice_Folder_WhenSourceIsSpecified.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallSameSourceTwice_Folder_WhenSourceIsSpecified.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallSameSourceTwice_RemoteNuGet_WhenSourceIsSpecified.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallSameSourceTwice_RemoteNuGet_WhenSourceIsSpecified.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallSameSourceTwice_RemoteNuGet_WhenSourceIsSpecified.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanInstallSameSourceTwice_RemoteNuGet_WhenSourceIsSpecified.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowDeprecationMessage_WhenLegacyCommandIsUsed_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowDeprecationMessage_WhenLegacyCommandIsUsed_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowDeprecationMessage_WhenLegacyCommandIsUsed_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowDeprecationMessage_WhenLegacyCommandIsUsed_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowMessageInCaseShortNameConflict.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowMessageInCaseShortNameConflict.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowMessageInCaseShortNameConflict.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowMessageInCaseShortNameConflict.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowWarning_WhenConstraintTemplateIsInstalled.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowWarning_WhenConstraintTemplateIsInstalled.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowWarning_WhenConstraintTemplateIsInstalled.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CanShowWarning_WhenConstraintTemplateIsInstalled.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallMultiplePackageAvailableFromBuiltIns.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallMultiplePackageAvailableFromBuiltIns.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallMultiplePackageAvailableFromBuiltIns.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallMultiplePackageAvailableFromBuiltIns.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallPackageAvailableFromBuiltIns.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallPackageAvailableFromBuiltIns.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallPackageAvailableFromBuiltIns.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallPackageAvailableFromBuiltIns.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallSameSourceTwice_Folder.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallSameSourceTwice_Folder.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallSameSourceTwice_Folder.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallSameSourceTwice_Folder.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallSameSourceTwice_NuGet.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallSameSourceTwice_NuGet.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallSameSourceTwice_NuGet.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.CannotInstallSameSourceTwice_NuGet.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.DoNotShowDeprecationMessage_WhenNewCommandIsUsed.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.DoNotShowDeprecationMessage_WhenNewCommandIsUsed.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstallTests.DoNotShowDeprecationMessage_WhenNewCommandIsUsed.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstallTests.DoNotShowDeprecationMessage_WhenNewCommandIsUsed.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cmd.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cmd.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cmd.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cmd.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cpp.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cpp.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cpp.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cpp.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cs.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cs.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cs.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cs.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cshtml.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cshtml.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cshtml.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.cshtml.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.csproj.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.csproj.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.csproj.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.csproj.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.css.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.css.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.css.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.css.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.fs.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.fs.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.fs.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.fs.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.haml.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.haml.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.haml.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.haml.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.js.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.js.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.js.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.js.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.json.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.json.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.json.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.json.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.jsx.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.jsx.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.jsx.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.jsx.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.othertype.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.othertype.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.othertype.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.othertype.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.ts.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.ts.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.ts.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.ts.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.vb.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.vb.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.vb.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.vb.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.xml.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.xml.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.xml.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.xml.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.yml.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.yml.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.yml.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_ConditionalProcessing_Test.yml.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_MultiValueChoiceParameterConditions.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_MultiValueChoiceParameterConditions.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_MultiValueChoiceParameterConditions.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_MultiValueChoiceParameterConditions.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_MultiValueChoiceParameterExplicitlyUnset.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_MultiValueChoiceParameterExplicitlyUnset.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_MultiValueChoiceParameterExplicitlyUnset.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_MultiValueChoiceParameterExplicitlyUnset.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters_DisabledBehaveLikeNotEverDefinedInTemplate.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters_DisabledBehaveLikeNotEverDefinedInTemplate.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters_DisabledBehaveLikeNotEverDefinedInTemplate.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters_DisabledBehaveLikeNotEverDefinedInTemplate.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters_DisabledBehaveLikeNotSpecified.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters_DisabledBehaveLikeNotSpecified.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters_DisabledBehaveLikeNotSpecified.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionalParameters_DisabledBehaveLikeNotSpecified.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=A.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=A.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=A.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=A.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB_ABenabled.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB_ABenabled.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB_ABenabled.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB_ABenabled.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB_Aenabled.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB_Aenabled.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB_Aenabled.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=AB_Aenabled.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=A_Aenabled.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=A_Aenabled.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=A_Aenabled.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithConditionallyEnabledParams_parameters=A_Aenabled.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithRequiredParams_parameters=AB.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithRequiredParams_parameters=AB.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithRequiredParams_parameters=AB.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithRequiredParams_parameters=AB.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithRequiredParams_parameters=ABC.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithRequiredParams_parameters=ABC.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithRequiredParams_parameters=ABC.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanInstantiateTemplate_WithRequiredParams_parameters=ABC.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowError_OnTemplatesWithSameShortName.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowError_OnTemplatesWithSameShortName.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowError_OnTemplatesWithSameShortName.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowError_OnTemplatesWithSameShortName.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowMessageInCaseShortNameConflict.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowMessageInCaseShortNameConflict.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowMessageInCaseShortNameConflict.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowMessageInCaseShortNameConflict.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowWarningIfPackageIsAvailableFromBuiltInSources.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowWarningIfPackageIsAvailableFromBuiltInSources.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowWarningIfPackageIsAvailableFromBuiltInSources.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowWarningIfPackageIsAvailableFromBuiltInSources.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowWarning_WhenHostDataIsIncorrect.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowWarning_WhenHostDataIsIncorrect.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowWarning_WhenHostDataIsIncorrect.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanShowWarning_WhenHostDataIsIncorrect.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanSuggestTypoCorrection_Command.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanSuggestTypoCorrection_Command.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanSuggestTypoCorrection_Command.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanSuggestTypoCorrection_Command.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanSuggestTypoCorrection_Template.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanSuggestTypoCorrection_Template.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanSuggestTypoCorrection_Template.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CanSuggestTypoCorrection_Template.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWhenFolderIsRemoved.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWhenFolderIsRemoved.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWhenFolderIsRemoved.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWhenFolderIsRemoved.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWithUnknownLanguage.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWithUnknownLanguage.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWithUnknownLanguage.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWithUnknownLanguage.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWithUnknownType.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWithUnknownType.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWithUnknownType.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplateWithUnknownType.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_OnMultipleParameterErrors.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_OnMultipleParameterErrors.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_OnMultipleParameterErrors.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_OnMultipleParameterErrors.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenAmbiguousLanguageChoice.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenAmbiguousLanguageChoice.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenAmbiguousLanguageChoice.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenAmbiguousLanguageChoice.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenAmbiguousShortNameChoice.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenAmbiguousShortNameChoice.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenAmbiguousShortNameChoice.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenAmbiguousShortNameChoice.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenChoiceParameterValueIsInvalid.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenChoiceParameterValueIsInvalid.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenChoiceParameterValueIsInvalid.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenChoiceParameterValueIsInvalid.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenChoiceParameterValueIsNotComplete.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenChoiceParameterValueIsNotComplete.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenChoiceParameterValueIsNotComplete.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenChoiceParameterValueIsNotComplete.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenFullNameIsUsed.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenFullNameIsUsed.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenFullNameIsUsed.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenFullNameIsUsed.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenNoDefaultNameSpecified.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenNoDefaultNameSpecified.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenNoDefaultNameSpecified.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenNoDefaultNameSpecified.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenParameterIsInvalid.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenParameterIsInvalid.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenParameterIsInvalid.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenParameterIsInvalid.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenPrecedenceIsSame.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenPrecedenceIsSame.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenPrecedenceIsSame.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WhenPrecedenceIsSame.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=no-params-C-enabled.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=no-params-C-enabled.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=no-params-C-enabled.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=no-params-C-enabled.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=no-params.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=no-params.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=no-params.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=no-params.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=onlyA.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=onlyA.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=onlyA.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=onlyA.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=onlyAB.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=onlyAB.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=onlyAB.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateTemplate_WithoutRequiredParams_parameters=onlyAB.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateUnknownTemplate.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateUnknownTemplate.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateUnknownTemplate.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotInstantiateUnknownTemplate.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotOverwriteFilesWithoutForce.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotOverwriteFilesWithoutForce.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotOverwriteFilesWithoutForce.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.CannotOverwriteFilesWithoutForce.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.Constraints_CanIgnoreConstraints_WhenForceIsSpecified.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.Constraints_CanIgnoreConstraints_WhenForceIsSpecified.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.Constraints_CanIgnoreConstraints_WhenForceIsSpecified.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.Constraints_CanIgnoreConstraints_WhenForceIsSpecified.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.Constraints_Error_IfTemplateIsRestricted.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.Constraints_Error_IfTemplateIsRestricted.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.Constraints_Error_IfTemplateIsRestricted.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.Constraints_Error_IfTemplateIsRestricted.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.DryRunRespectsTargetPathAndOutputDir.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.DryRunRespectsTargetPathAndOutputDir.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.DryRunRespectsTargetPathAndOutputDir.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewInstantiateTests.DryRunRespectsTargetPathAndOutputDir.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenLegacyCommandIsUsed_common.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewListTests.BasicTest_WhenListCommandIsUsed.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.CanShowMessageInCaseShortNameConflict.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewListTests.CanShowMessageInCaseShortNameConflict.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.CanShowMessageInCaseShortNameConflict.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewListTests.CanShowMessageInCaseShortNameConflict.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.Constraints_CanIgnoreConstraints.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewListTests.Constraints_CanIgnoreConstraints.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.Constraints_CanIgnoreConstraints.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewListTests.Constraints_CanIgnoreConstraints.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.Constraints_CanShowMessageIfTemplateGroupIsRestricted.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewListTests.Constraints_CanShowMessageIfTemplateGroupIsRestricted.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewListTests.Constraints_CanShowMessageIfTemplateGroupIsRestricted.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewListTests.Constraints_CanShowMessageIfTemplateGroupIsRestricted.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewSearchTests.CanShowMessageInCaseShortNameConflict.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewSearchTests.CanShowMessageInCaseShortNameConflict.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewSearchTests.CanShowMessageInCaseShortNameConflict.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewSearchTests.CanShowMessageInCaseShortNameConflict.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewSearchTests.CannotExecuteEmptyCriteria_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewSearchTests.CannotExecuteEmptyCriteria_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewSearchTests.CannotExecuteEmptyCriteria_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewSearchTests.CannotExecuteEmptyCriteria_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewTests.CanShowBasicInfo.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanUseMinimalMode_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewTests.CanUseMinimalMode_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanUseMinimalMode_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewTests.CanUseMinimalMode_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanUseNormalMode_common.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewTests.CanUseNormalMode_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewTests.CanUseNormalMode_common.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewTests.CanUseNormalMode_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewUninstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewUninstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewUninstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewUninstallTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewUninstallTests.CanShowMessageInCaseShortNameConflict.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewUninstallTests.CanShowMessageInCaseShortNameConflict.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewUninstallTests.CanShowMessageInCaseShortNameConflict.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewUninstallTests.CanShowMessageInCaseShortNameConflict.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewUpdateTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewUpdateTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewUpdateTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewUpdateTests.CanShowError_WhenGlobalSettingsFileIsCorrupted.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetNewUpdateTests.CanShowMessageInCaseShortNameConflict.verified.txt b/test/dotnet-new.Tests/Approvals/DotnetNewUpdateTests.CanShowMessageInCaseShortNameConflict.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetNewUpdateTests.CanShowMessageInCaseShortNameConflict.verified.txt rename to test/dotnet-new.Tests/Approvals/DotnetNewUpdateTests.CanShowMessageInCaseShortNameConflict.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/class/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/class/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/class/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/class/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/class/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/class/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/class/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/class/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/class/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/class/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/class/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/class/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.langVersion=latest.targetFramework=net7.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/class/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/class/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/class/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/class/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.class.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/enum/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/enum/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/enum/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/enum/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/enum/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/enum/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/enum/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/enum/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/enum/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/enum/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/enum/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/enum/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.langVersion=latest.targetFramework=net7.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/enum/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/enum/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/enum/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/enum/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.targetFramework=net7.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/enum/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/enum/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/enum/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/enum/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.enum.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/interface/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/interface/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/interface/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/interface/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/interface/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/interface/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/interface/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/interface/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=16.targetFramework=net7.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/interface/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/interface/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/interface/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/interface/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.langVersion=latest.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/interface/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/interface/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/interface/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/interface/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.interface.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/module/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/module/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/module/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/module/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/module/CustomFileName.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/module/CustomFileName.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/module/CustomFileName.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/module/CustomFileName.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=15.5.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/module/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/module/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/module/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/module/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=16.targetFramework=net7.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/module/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/module/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/module/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/module/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=9.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/module/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/module/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/module/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/module/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.langVersion=latest.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/module/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/module/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/module/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/module/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.module.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/struct/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/struct/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/struct/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.struct.langVersion=16.targetFramework=net6.0.verified/struct/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/structure/CustomFileName.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/structure/CustomFileName.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/structure/CustomFileName.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=15.3.targetFramework=netstandard2.0.verified/structure/CustomFileName.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/structure/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/structure/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/structure/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.langVersion=latest.verified/structure/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/ClassLib.vbproj b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/ClassLib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/ClassLib.vbproj rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/ClassLib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/structure/TestItem1.vb b/test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/structure/TestItem1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/structure/TestItem1.vb rename to test/dotnet-new.Tests/Approvals/DotnetVisualBasicClassTemplatesTest.structure.verified/structure/TestItem1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/MyProject/Library.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/MyProject/Library.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/MyProject/Library.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/MyProject/Library.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/MyProject/classlib.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/MyProject/classlib.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/MyProject/classlib.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/MyProject/classlib.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/MyProject/Class1.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/MyProject/Class1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/MyProject/Class1.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/MyProject/Class1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/MyProject/classlib.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/MyProject/classlib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/MyProject/classlib.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/MyProject/classlib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-False#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/MyProject/Library.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/MyProject/Library.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/MyProject/Library.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/MyProject/Library.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/MyProject/classlib.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/MyProject/classlib.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/MyProject/classlib.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/MyProject/classlib.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/MyProject/Class1.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/MyProject/Class1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/MyProject/Class1.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/MyProject/Class1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/MyProject/classlib.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/MyProject/classlib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/MyProject/classlib.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/MyProject/classlib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-netstandard2.1#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Library.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/classlib.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Class1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/classlib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#Framework-netstandard2.1#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-True#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/Library.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/Library.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/Library.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/Library.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/classlib.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/classlib.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/classlib.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/classlib.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/Class1.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/Class1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/Class1.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/Class1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/classlib.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/classlib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/classlib.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/classlib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/Library.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/Library.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/Library.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/Library.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/classlib.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/classlib.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/classlib.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/classlib.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/Class1.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/Class1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/Class1.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/Class1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/classlib.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/classlib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/classlib.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/classlib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/Library.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/Library.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/Library.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/Library.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/classlib.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/classlib.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/classlib.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/classlib.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/Class1.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/Class1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/Class1.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/Class1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/classlib.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/classlib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/classlib.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/classlib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Class1.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Class1.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Class1.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Class1.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/classlib.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/classlib.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/classlib.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/classlib.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/Library.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/Library.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/Library.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/Library.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/classlib.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/classlib.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/classlib.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/classlib.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/Class1.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/Class1.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/Class1.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/Class1.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/classlib.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/classlib.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/classlib.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/classlib.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.classlib.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs#UnsuportedLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Program.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Program.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Program.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/Program.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/console.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/console.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/console.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/MyProject/console.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Program.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Program.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Program.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/Program.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/vb-console.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/vb-console.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/vb-console.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/MyProject/vb-console.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-False#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-False#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net6.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net7.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#Framework-net8.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-False#FileScopedNs-False#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/Program.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/Program.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/Program.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/Program.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/console.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/console.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/console.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/MyProject/console.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/Program.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/Program.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/Program.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/Program.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net6.0#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/Program.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/Program.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/Program.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/Program.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/console.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/console.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/console.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/MyProject/console.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/Program.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/Program.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/Program.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/Program.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net7.0#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/Program.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/Program.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/Program.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/Program.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/console.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/console.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/console.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/MyProject/console.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/Program.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/Program.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/Program.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/Program.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/MyProject/vb-console.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#Framework-net8.0#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Program.cs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Program.cs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/console.csproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/console.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/console.csproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/MyProject/console.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#cs.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/Program.fs b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/Program.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/Program.fs rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/Program.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/console.fsproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/console.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/console.fsproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/MyProject/console.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#fs#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/Program.vb b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/Program.vb similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/Program.vb rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/Program.vb diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/vb-console.vbproj b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/vb-console.vbproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/vb-console.vbproj rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/MyProject/vb-console.vbproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/FeaturesSupport.console.Nullable-True#TopLevel-True#ImplicitUsings-True#FileScopedNs-True#vb#NoLangVer.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.AddPackageReference_Basic_Approval.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectReference_Basic_Approval.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.AddProjectToSolution_Basic_Approval.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.CanProcessUnknownPostAction.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.CanProcessUnknownPostAction.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.CanProcessUnknownPostAction.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.CanProcessUnknownPostAction.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.PostActions_DryRun.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.PostActions_DryRun.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.PostActions_DryRun.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.PostActions_DryRun.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.PrintInstructions_Basic_Approval.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.PrintInstructions_Basic_Approval.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.PrintInstructions_Basic_Approval.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.PrintInstructions_Basic_Approval.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.Restore_Basic_Approval.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_Basic_Approval.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.Linux.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.Linux.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.Linux.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.Linux.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.OSX.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.OSX.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.OSX.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.OSX.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.Windows.verified.txt b/test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.Windows.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.Windows.verified.txt rename to test/dotnet-new.Tests/Approvals/PostActionTests.RunScript_DoNotExecuteWhenScriptsAreNotAllowed.Windows.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_Mvc.verified.txt b/test/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_Mvc.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_Mvc.verified.txt rename to test/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_Mvc.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_WebAPI.verified.txt b/test/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_WebAPI.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_WebAPI.verified.txt rename to test/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_WebAPI.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_Webapp_common.verified.txt b/test/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_Webapp_common.verified.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_Webapp_common.verified.txt rename to test/dotnet-new.Tests/Approvals/WebProjectsTests.CanShowHelp_Webapp_common.verified.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample01.basic-template.verified/sample01/Program.cs b/test/dotnet-new.Tests/Approvals/sample01.basic-template.verified/sample01/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample01.basic-template.verified/sample01/Program.cs rename to test/dotnet-new.Tests/Approvals/sample01.basic-template.verified/sample01/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample01.basic-template.verified/sample01/sample01.csproj b/test/dotnet-new.Tests/Approvals/sample01.basic-template.verified/sample01/sample01.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample01.basic-template.verified/sample01/sample01.csproj rename to test/dotnet-new.Tests/Approvals/sample01.basic-template.verified/sample01/sample01.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample01.basic-template.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample01.basic-template.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample01.basic-template.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample01.basic-template.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample01.basic-template.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample01.basic-template.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample01.basic-template.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample01.basic-template.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/sample02/Program.cs b/test/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/sample02/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/sample02/Program.cs rename to test/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/sample02/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/sample02/sample02.csproj b/test/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/sample02/sample02.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/sample02/sample02.csproj rename to test/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/sample02/sample02.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample02.add-parameters.copyrightName=Test Copyright.title=Test Title.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Controllers/HomeController.cs b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Controllers/HomeController.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Controllers/HomeController.cs rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Controllers/HomeController.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Program.cs b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Program.cs rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Startup.cs b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Startup.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Startup.cs rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Startup.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/About.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/About.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/About.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/About.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/Contact.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/Contact.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/Contact.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/Contact.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/Index.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/Index.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/Index.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Home/Index.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Shared/Error.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Shared/Error.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Shared/Error.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Shared/Error.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Shared/_Layout.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Shared/_Layout.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Shared/_Layout.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/Shared/_Layout.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/_ViewImports.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/_ViewImports.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/_ViewImports.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/_ViewImports.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/_ViewStart.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/_ViewStart.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/_ViewStart.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/Views/_ViewStart.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/appsettings.Development.json b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/appsettings.Development.json similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/appsettings.Development.json rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/appsettings.Development.json diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/appsettings.json b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/appsettings.json similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/appsettings.json rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/appsettings.json diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/sample03.csproj b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/sample03.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/sample03.csproj rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/sample03/sample03.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.EnableContactPage=true.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Controllers/HomeController.cs b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Controllers/HomeController.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Controllers/HomeController.cs rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Controllers/HomeController.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Program.cs b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Program.cs rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Startup.cs b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Startup.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Startup.cs rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Startup.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Home/About.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Home/About.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Home/About.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Home/About.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Home/Index.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Home/Index.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Home/Index.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Home/Index.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Shared/Error.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Shared/Error.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Shared/Error.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Shared/Error.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Shared/_Layout.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Shared/_Layout.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Shared/_Layout.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/Shared/_Layout.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/_ViewImports.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/_ViewImports.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/_ViewImports.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/_ViewImports.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/_ViewStart.cshtml b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/_ViewStart.cshtml similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/_ViewStart.cshtml rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/Views/_ViewStart.cshtml diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/appsettings.Development.json b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/appsettings.Development.json similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/appsettings.Development.json rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/appsettings.Development.json diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/appsettings.json b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/appsettings.json similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/appsettings.json rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/appsettings.json diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/sample03.csproj b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/sample03.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/sample03.csproj rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/sample03/sample03.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample03.optional-page.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample03.optional-page.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/sample04/Program.cs b/test/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/sample04/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/sample04/Program.cs rename to test/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/sample04/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/sample04/sample04.csproj b/test/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/sample04/sample04.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/sample04/sample04.csproj rename to test/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/sample04/sample04.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample04.parameter-from-list.BackgroundColor=dimgray.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/README.md b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/README.md similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/README.md rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/README.md diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/sample05/Sample.cs b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/sample05/Sample.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/sample05/Sample.cs rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/sample05/Sample.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/sample05/sample05.csproj b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/sample05/sample05.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/sample05/sample05.csproj rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/sample05/sample05/sample05.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=false.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/README.md b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/README.md similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/README.md rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/README.md diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05.Test/MyTest.cs b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05.Test/MyTest.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05.Test/MyTest.cs rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05.Test/MyTest.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05.Test/sample05.Test.csproj b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05.Test/sample05.Test.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05.Test/sample05.Test.csproj rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05.Test/sample05.Test.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05/Sample.cs b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05/Sample.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05/Sample.cs rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05/Sample.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05/sample05.csproj b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05/sample05.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05/sample05.csproj rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/sample05/sample05/sample05.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample05.multi-project.includetest=true.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/sample06/MyProject.Con.fsproj b/test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/sample06/MyProject.Con.fsproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/sample06/MyProject.Con.fsproj rename to test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/sample06/MyProject.Con.fsproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/sample06/Program.fs b/test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/sample06/Program.fs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/sample06/Program.fs rename to test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/sample06/Program.fs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.language=F#.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/sample06/MyProject.Con.csproj b/test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/sample06/MyProject.Con.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/sample06/MyProject.Con.csproj rename to test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/sample06/MyProject.Con.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/sample06/Program.cs b/test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/sample06/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/sample06/Program.cs rename to test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/sample06/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample06.console-csharp-fsharp.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/Program.cs b/test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/Program.cs rename to test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/contact.txt b/test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/contact.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/contact.txt rename to test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/contact.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/sample07.csproj b/test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/sample07.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/sample07.csproj rename to test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/sample07/sample07.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample07.param-with-custom-short-name.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/Program.cs b/test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/Program.cs rename to test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/contact.txt b/test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/contact.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/contact.txt rename to test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/contact.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/sample09.csproj b/test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/sample09.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/sample09.csproj rename to test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/sample09.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/site.css b/test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/site.css similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/site.css rename to test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/sample09/site.css diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample09.replace-onlyif-after.backgroundColor=grey.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/sample10/Program.cs b/test/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/sample10/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/sample10/Program.cs rename to test/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/sample10/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/sample10/sample10.csproj b/test/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/sample10/sample10.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/sample10/sample10.csproj rename to test/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/sample10/sample10.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample10.symbol-from-date.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/sample11/Program.cs b/test/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/sample11/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/sample11/Program.cs rename to test/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/sample11/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/sample11/sample11.csproj b/test/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/sample11/sample11.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/sample11/sample11.csproj rename to test/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/sample11/sample11.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample11.change-string-casing.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample13.constant-value.verified/sample13/Program.cs b/test/dotnet-new.Tests/Approvals/sample13.constant-value.verified/sample13/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample13.constant-value.verified/sample13/Program.cs rename to test/dotnet-new.Tests/Approvals/sample13.constant-value.verified/sample13/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample13.constant-value.verified/sample13/sample13.csproj b/test/dotnet-new.Tests/Approvals/sample13.constant-value.verified/sample13/sample13.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample13.constant-value.verified/sample13/sample13.csproj rename to test/dotnet-new.Tests/Approvals/sample13.constant-value.verified/sample13/sample13.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample13.constant-value.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample13.constant-value.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample13.constant-value.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample13.constant-value.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample13.constant-value.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample13.constant-value.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample13.constant-value.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample13.constant-value.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/sample15/Program.cs b/test/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/sample15/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/sample15/Program.cs rename to test/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/sample15/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/sample15/sample15.csproj b/test/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/sample15/sample15.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/sample15/sample15.csproj rename to test/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/sample15/sample15.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample15.computed-symbol.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/sample16/Program.cs b/test/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/sample16/Program.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/sample16/Program.cs rename to test/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/sample16/Program.cs diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/sample16/sample16.csproj b/test/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/sample16/sample16.csproj similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/sample16/sample16.csproj rename to test/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/sample16/sample16.csproj diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/std-streams/stderr.txt b/test/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/std-streams/stderr.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/std-streams/stderr.txt rename to test/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/std-streams/stderr.txt diff --git a/src/Tests/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/std-streams/stdout.txt b/test/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/std-streams/stdout.txt similarity index 100% rename from src/Tests/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/std-streams/stdout.txt rename to test/dotnet-new.Tests/Approvals/sample16.string-value-transform.verified/std-streams/stdout.txt diff --git a/src/Tests/dotnet-new.Tests/BaseIntegrationTest.cs b/test/dotnet-new.Tests/BaseIntegrationTest.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/BaseIntegrationTest.cs rename to test/dotnet-new.Tests/BaseIntegrationTest.cs diff --git a/src/Tests/dotnet-new.Tests/CommonTemplatesTests.cs b/test/dotnet-new.Tests/CommonTemplatesTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/CommonTemplatesTests.cs rename to test/dotnet-new.Tests/CommonTemplatesTests.cs diff --git a/src/Tests/dotnet-new.Tests/Diagnostic/DiagnosticFixture.cs b/test/dotnet-new.Tests/Diagnostic/DiagnosticFixture.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Diagnostic/DiagnosticFixture.cs rename to test/dotnet-new.Tests/Diagnostic/DiagnosticFixture.cs diff --git a/src/Tests/dotnet-new.Tests/Diagnostic/XunitNuGetLogger.cs b/test/dotnet-new.Tests/Diagnostic/XunitNuGetLogger.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Diagnostic/XunitNuGetLogger.cs rename to test/dotnet-new.Tests/Diagnostic/XunitNuGetLogger.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetClassTemplateTests.cs b/test/dotnet-new.Tests/DotnetClassTemplateTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetClassTemplateTests.cs rename to test/dotnet-new.Tests/DotnetClassTemplateTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewArgumentsTests.cs b/test/dotnet-new.Tests/DotnetNewArgumentsTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewArgumentsTests.cs rename to test/dotnet-new.Tests/DotnetNewArgumentsTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewCompleteTests.cs b/test/dotnet-new.Tests/DotnetNewCompleteTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewCompleteTests.cs rename to test/dotnet-new.Tests/DotnetNewCompleteTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewDebugOptionsTests.cs b/test/dotnet-new.Tests/DotnetNewDebugOptionsTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewDebugOptionsTests.cs rename to test/dotnet-new.Tests/DotnetNewDebugOptionsTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewDetailsTest.Approval.cs b/test/dotnet-new.Tests/DotnetNewDetailsTest.Approval.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewDetailsTest.Approval.cs rename to test/dotnet-new.Tests/DotnetNewDetailsTest.Approval.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewDetailsTest.cs b/test/dotnet-new.Tests/DotnetNewDetailsTest.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewDetailsTest.cs rename to test/dotnet-new.Tests/DotnetNewDetailsTest.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewHelpTests.Approval.cs b/test/dotnet-new.Tests/DotnetNewHelpTests.Approval.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewHelpTests.Approval.cs rename to test/dotnet-new.Tests/DotnetNewHelpTests.Approval.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewHelpTests.cs b/test/dotnet-new.Tests/DotnetNewHelpTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewHelpTests.cs rename to test/dotnet-new.Tests/DotnetNewHelpTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewInstallTests.Approval.cs b/test/dotnet-new.Tests/DotnetNewInstallTests.Approval.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewInstallTests.Approval.cs rename to test/dotnet-new.Tests/DotnetNewInstallTests.Approval.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewInstallTests.cs b/test/dotnet-new.Tests/DotnetNewInstallTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewInstallTests.cs rename to test/dotnet-new.Tests/DotnetNewInstallTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewInstantiateTests.Approval.cs b/test/dotnet-new.Tests/DotnetNewInstantiateTests.Approval.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewInstantiateTests.Approval.cs rename to test/dotnet-new.Tests/DotnetNewInstantiateTests.Approval.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewInstantiateTests.cs b/test/dotnet-new.Tests/DotnetNewInstantiateTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewInstantiateTests.cs rename to test/dotnet-new.Tests/DotnetNewInstantiateTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewListTests.Approval.cs b/test/dotnet-new.Tests/DotnetNewListTests.Approval.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewListTests.Approval.cs rename to test/dotnet-new.Tests/DotnetNewListTests.Approval.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewListTests.cs b/test/dotnet-new.Tests/DotnetNewListTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewListTests.cs rename to test/dotnet-new.Tests/DotnetNewListTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewLocaleTests.cs b/test/dotnet-new.Tests/DotnetNewLocaleTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewLocaleTests.cs rename to test/dotnet-new.Tests/DotnetNewLocaleTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewSearchTests.Approval.cs b/test/dotnet-new.Tests/DotnetNewSearchTests.Approval.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewSearchTests.Approval.cs rename to test/dotnet-new.Tests/DotnetNewSearchTests.Approval.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewSearchTests.cs b/test/dotnet-new.Tests/DotnetNewSearchTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewSearchTests.cs rename to test/dotnet-new.Tests/DotnetNewSearchTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewTests.cs b/test/dotnet-new.Tests/DotnetNewTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewTests.cs rename to test/dotnet-new.Tests/DotnetNewTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewUninstallTests.Approval.cs b/test/dotnet-new.Tests/DotnetNewUninstallTests.Approval.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewUninstallTests.Approval.cs rename to test/dotnet-new.Tests/DotnetNewUninstallTests.Approval.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewUninstallTests.cs b/test/dotnet-new.Tests/DotnetNewUninstallTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewUninstallTests.cs rename to test/dotnet-new.Tests/DotnetNewUninstallTests.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewUpdateTests.Approval.cs b/test/dotnet-new.Tests/DotnetNewUpdateTests.Approval.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewUpdateTests.Approval.cs rename to test/dotnet-new.Tests/DotnetNewUpdateTests.Approval.cs diff --git a/src/Tests/dotnet-new.Tests/DotnetNewUpdateTests.cs b/test/dotnet-new.Tests/DotnetNewUpdateTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/DotnetNewUpdateTests.cs rename to test/dotnet-new.Tests/DotnetNewUpdateTests.cs diff --git a/src/Tests/dotnet-new.Tests/Extensions.cs b/test/dotnet-new.Tests/Extensions.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Extensions.cs rename to test/dotnet-new.Tests/Extensions.cs diff --git a/src/Tests/dotnet-new.Tests/FileRenameTests.cs b/test/dotnet-new.Tests/FileRenameTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/FileRenameTests.cs rename to test/dotnet-new.Tests/FileRenameTests.cs diff --git a/src/Tests/dotnet-new.Tests/FirstRunTest.cs b/test/dotnet-new.Tests/FirstRunTest.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/FirstRunTest.cs rename to test/dotnet-new.Tests/FirstRunTest.cs diff --git a/src/Tests/dotnet-new.Tests/MSBuildEvaluationTests.cs b/test/dotnet-new.Tests/MSBuildEvaluationTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/MSBuildEvaluationTests.cs rename to test/dotnet-new.Tests/MSBuildEvaluationTests.cs diff --git a/src/Tests/dotnet-new.Tests/ModuleInitializer.cs b/test/dotnet-new.Tests/ModuleInitializer.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/ModuleInitializer.cs rename to test/dotnet-new.Tests/ModuleInitializer.cs diff --git a/src/Tests/dotnet-new.Tests/PostActionTests.Approval.cs b/test/dotnet-new.Tests/PostActionTests.Approval.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/PostActionTests.Approval.cs rename to test/dotnet-new.Tests/PostActionTests.Approval.cs diff --git a/src/Tests/dotnet-new.Tests/PostActionTests.cs b/test/dotnet-new.Tests/PostActionTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/PostActionTests.cs rename to test/dotnet-new.Tests/PostActionTests.cs diff --git a/src/Tests/dotnet-new.Tests/SharedHomeDirectory.cs b/test/dotnet-new.Tests/SharedHomeDirectory.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/SharedHomeDirectory.cs rename to test/dotnet-new.Tests/SharedHomeDirectory.cs diff --git a/src/Tests/dotnet-new.Tests/SourcesTests.cs b/test/dotnet-new.Tests/SourcesTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/SourcesTests.cs rename to test/dotnet-new.Tests/SourcesTests.cs diff --git a/src/Tests/dotnet-new.Tests/TemplateDiscoveryTests.cs b/test/dotnet-new.Tests/TemplateDiscoveryTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/TemplateDiscoveryTests.cs rename to test/dotnet-new.Tests/TemplateDiscoveryTests.cs diff --git a/src/Tests/dotnet-new.Tests/TemplateDiscoveryTool.cs b/test/dotnet-new.Tests/TemplateDiscoveryTool.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/TemplateDiscoveryTool.cs rename to test/dotnet-new.Tests/TemplateDiscoveryTool.cs diff --git a/src/Tests/dotnet-new.Tests/TemplateEngineSamplesTest.cs b/test/dotnet-new.Tests/TemplateEngineSamplesTest.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/TemplateEngineSamplesTest.cs rename to test/dotnet-new.Tests/TemplateEngineSamplesTest.cs diff --git a/src/Tests/dotnet-new.Tests/Utilities.cs b/test/dotnet-new.Tests/Utilities.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/Utilities.cs rename to test/dotnet-new.Tests/Utilities.cs diff --git a/src/Tests/dotnet-new.Tests/VerifyScrubbers.cs b/test/dotnet-new.Tests/VerifyScrubbers.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/VerifyScrubbers.cs rename to test/dotnet-new.Tests/VerifyScrubbers.cs diff --git a/src/Tests/dotnet-new.Tests/WebProjectsTests.cs b/test/dotnet-new.Tests/WebProjectsTests.cs similarity index 100% rename from src/Tests/dotnet-new.Tests/WebProjectsTests.cs rename to test/dotnet-new.Tests/WebProjectsTests.cs diff --git a/src/Tests/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj b/test/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj similarity index 96% rename from src/Tests/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj rename to test/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj index 8b64c466b3ce..2e0308881d91 100644 --- a/src/Tests/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj +++ b/test/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj @@ -11,8 +11,8 @@ - - + + diff --git a/src/Tests/dotnet-new.Tests/xunit.runner.json b/test/dotnet-new.Tests/xunit.runner.json similarity index 100% rename from src/Tests/dotnet-new.Tests/xunit.runner.json rename to test/dotnet-new.Tests/xunit.runner.json diff --git a/src/Tests/dotnet-nuget.UnitTests/GivenANuGetCommand.cs b/test/dotnet-nuget.UnitTests/GivenANuGetCommand.cs similarity index 100% rename from src/Tests/dotnet-nuget.UnitTests/GivenANuGetCommand.cs rename to test/dotnet-nuget.UnitTests/GivenANuGetCommand.cs diff --git a/src/Tests/dotnet-pack.Tests/PackTests.cs b/test/dotnet-pack.Tests/PackTests.cs similarity index 100% rename from src/Tests/dotnet-pack.Tests/PackTests.cs rename to test/dotnet-pack.Tests/PackTests.cs diff --git a/src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs b/test/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs similarity index 100% rename from src/Tests/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs rename to test/dotnet-publish.Tests/GivenDotnetPublishPublishesProjects.cs diff --git a/src/Tests/dotnet-remove-package.Tests/GivenDotnetRemovePackage.cs b/test/dotnet-remove-package.Tests/GivenDotnetRemovePackage.cs similarity index 100% rename from src/Tests/dotnet-remove-package.Tests/GivenDotnetRemovePackage.cs rename to test/dotnet-remove-package.Tests/GivenDotnetRemovePackage.cs diff --git a/src/Tests/dotnet-remove-reference.Tests/GivenDotnetRemoveP2P.cs b/test/dotnet-remove-reference.Tests/GivenDotnetRemoveP2P.cs similarity index 100% rename from src/Tests/dotnet-remove-reference.Tests/GivenDotnetRemoveP2P.cs rename to test/dotnet-remove-reference.Tests/GivenDotnetRemoveP2P.cs diff --git a/src/Tests/dotnet-restore.Tests/GivenThatIWantToRestoreApp.cs b/test/dotnet-restore.Tests/GivenThatIWantToRestoreApp.cs similarity index 100% rename from src/Tests/dotnet-restore.Tests/GivenThatIWantToRestoreApp.cs rename to test/dotnet-restore.Tests/GivenThatIWantToRestoreApp.cs diff --git a/src/Tests/dotnet-run.Tests/GivenDotnetRootEnv.cs b/test/dotnet-run.Tests/GivenDotnetRootEnv.cs similarity index 100% rename from src/Tests/dotnet-run.Tests/GivenDotnetRootEnv.cs rename to test/dotnet-run.Tests/GivenDotnetRootEnv.cs diff --git a/src/Tests/dotnet-run.Tests/GivenDotnetRunIsInterrupted.cs b/test/dotnet-run.Tests/GivenDotnetRunIsInterrupted.cs similarity index 100% rename from src/Tests/dotnet-run.Tests/GivenDotnetRunIsInterrupted.cs rename to test/dotnet-run.Tests/GivenDotnetRunIsInterrupted.cs diff --git a/src/Tests/dotnet-run.Tests/GivenDotnetRunRunsCsProj.cs b/test/dotnet-run.Tests/GivenDotnetRunRunsCsProj.cs similarity index 100% rename from src/Tests/dotnet-run.Tests/GivenDotnetRunRunsCsProj.cs rename to test/dotnet-run.Tests/GivenDotnetRunRunsCsProj.cs diff --git a/src/Tests/dotnet-run.Tests/GivenDotnetRunRunsVbProj.cs b/test/dotnet-run.Tests/GivenDotnetRunRunsVbProj.cs similarity index 100% rename from src/Tests/dotnet-run.Tests/GivenDotnetRunRunsVbProj.cs rename to test/dotnet-run.Tests/GivenDotnetRunRunsVbProj.cs diff --git a/src/Tests/dotnet-run.Tests/GivenDotnetRunThrowsAParseError.cs b/test/dotnet-run.Tests/GivenDotnetRunThrowsAParseError.cs similarity index 100% rename from src/Tests/dotnet-run.Tests/GivenDotnetRunThrowsAParseError.cs rename to test/dotnet-run.Tests/GivenDotnetRunThrowsAParseError.cs diff --git a/src/Tests/dotnet-run.Tests/GivenThatWeCanPassNonProjectFilesToDotnetRun.cs b/test/dotnet-run.Tests/GivenThatWeCanPassNonProjectFilesToDotnetRun.cs similarity index 100% rename from src/Tests/dotnet-run.Tests/GivenThatWeCanPassNonProjectFilesToDotnetRun.cs rename to test/dotnet-run.Tests/GivenThatWeCanPassNonProjectFilesToDotnetRun.cs diff --git a/src/Tests/dotnet-sdk-check.Tests/GivenDotnetSdkCheck.cs b/test/dotnet-sdk-check.Tests/GivenDotnetSdkCheck.cs similarity index 100% rename from src/Tests/dotnet-sdk-check.Tests/GivenDotnetSdkCheck.cs rename to test/dotnet-sdk-check.Tests/GivenDotnetSdkCheck.cs diff --git a/src/Tests/dotnet-sdk-check.Tests/MockNETBundleProvider.cs b/test/dotnet-sdk-check.Tests/MockNETBundleProvider.cs similarity index 100% rename from src/Tests/dotnet-sdk-check.Tests/MockNETBundleProvider.cs rename to test/dotnet-sdk-check.Tests/MockNETBundleProvider.cs diff --git a/src/Tests/dotnet-sdk-check.Tests/MockProductCollectionProvider.cs b/test/dotnet-sdk-check.Tests/MockProductCollectionProvider.cs similarity index 100% rename from src/Tests/dotnet-sdk-check.Tests/MockProductCollectionProvider.cs rename to test/dotnet-sdk-check.Tests/MockProductCollectionProvider.cs diff --git a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs b/test/dotnet-sln.Tests/GivenDotnetSlnAdd.cs similarity index 100% rename from src/Tests/dotnet-sln.Tests/GivenDotnetSlnAdd.cs rename to test/dotnet-sln.Tests/GivenDotnetSlnAdd.cs diff --git a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnList.cs b/test/dotnet-sln.Tests/GivenDotnetSlnList.cs similarity index 100% rename from src/Tests/dotnet-sln.Tests/GivenDotnetSlnList.cs rename to test/dotnet-sln.Tests/GivenDotnetSlnList.cs diff --git a/src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs b/test/dotnet-sln.Tests/GivenDotnetSlnRemove.cs similarity index 100% rename from src/Tests/dotnet-sln.Tests/GivenDotnetSlnRemove.cs rename to test/dotnet-sln.Tests/GivenDotnetSlnRemove.cs diff --git a/test/dotnet-sln.Tests/dotnet-sln.Tests.csproj b/test/dotnet-sln.Tests/dotnet-sln.Tests.csproj new file mode 100644 index 000000000000..2dce887f4cfb --- /dev/null +++ b/test/dotnet-sln.Tests/dotnet-sln.Tests.csproj @@ -0,0 +1,28 @@ + + + Tests\$(MSBuildProjectName) + + + + + + $(ToolsetTargetFramework) + Exe + MicrosoftAspNetCore + + + + + + + + + + + + + + + + + diff --git a/src/Tests/dotnet-store.Tests/GivenDotnetStoresAndPublishesProjects.cs b/test/dotnet-store.Tests/GivenDotnetStoresAndPublishesProjects.cs similarity index 100% rename from src/Tests/dotnet-store.Tests/GivenDotnetStoresAndPublishesProjects.cs rename to test/dotnet-store.Tests/GivenDotnetStoresAndPublishesProjects.cs diff --git a/src/Tests/dotnet-test.Tests/CollectCodeCoverage.runsettings b/test/dotnet-test.Tests/CollectCodeCoverage.runsettings similarity index 100% rename from src/Tests/dotnet-test.Tests/CollectCodeCoverage.runsettings rename to test/dotnet-test.Tests/CollectCodeCoverage.runsettings diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsArtifactPostProcessing.cs b/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsArtifactPostProcessing.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsArtifactPostProcessing.cs rename to test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsArtifactPostProcessing.cs diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromCsprojForMultipleTFM.cs b/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromCsprojForMultipleTFM.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromCsprojForMultipleTFM.cs rename to test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromCsprojForMultipleTFM.cs diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromDll.cs b/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromDll.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromDll.cs rename to test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestFromDll.cs diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs b/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs rename to test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsproj.cs diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs b/test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs rename to test/dotnet-test.Tests/GivenDotnetTestBuildsAndRunsTestfromCsprojWithCorrectTestRunParameters.cs diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs b/test/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs rename to test/dotnet-test.Tests/GivenDotnetTestContainsEnvironmentVariables.cs diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestContainsMSBuildParameters.cs b/test/dotnet-test.Tests/GivenDotnetTestContainsMSBuildParameters.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/GivenDotnetTestContainsMSBuildParameters.cs rename to test/dotnet-test.Tests/GivenDotnetTestContainsMSBuildParameters.cs diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestForwardDotnetRootEnvironmentVariables.cs b/test/dotnet-test.Tests/GivenDotnetTestForwardDotnetRootEnvironmentVariables.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/GivenDotnetTestForwardDotnetRootEnvironmentVariables.cs rename to test/dotnet-test.Tests/GivenDotnetTestForwardDotnetRootEnvironmentVariables.cs diff --git a/src/Tests/dotnet-test.Tests/GivenDotnetTestsRunsInDifferentCultures.cs b/test/dotnet-test.Tests/GivenDotnetTestsRunsInDifferentCultures.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/GivenDotnetTestsRunsInDifferentCultures.cs rename to test/dotnet-test.Tests/GivenDotnetTestsRunsInDifferentCultures.cs diff --git a/src/Tests/dotnet-test.Tests/TestCommandParserTests.cs b/test/dotnet-test.Tests/TestCommandParserTests.cs similarity index 100% rename from src/Tests/dotnet-test.Tests/TestCommandParserTests.cs rename to test/dotnet-test.Tests/TestCommandParserTests.cs diff --git a/src/Tests/dotnet-vstest.Tests/VSTestTests.cs b/test/dotnet-vstest.Tests/VSTestTests.cs similarity index 100% rename from src/Tests/dotnet-vstest.Tests/VSTestTests.cs rename to test/dotnet-vstest.Tests/VSTestTests.cs diff --git a/src/Tests/dotnet-watch.Tests/CommandLineOptionsTests.cs b/test/dotnet-watch.Tests/CommandLineOptionsTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/CommandLineOptionsTests.cs rename to test/dotnet-watch.Tests/CommandLineOptionsTests.cs diff --git a/src/Tests/dotnet-watch.Tests/ConsoleReporterTests.cs b/test/dotnet-watch.Tests/ConsoleReporterTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/ConsoleReporterTests.cs rename to test/dotnet-watch.Tests/ConsoleReporterTests.cs diff --git a/src/Tests/dotnet-watch.Tests/FileSetSerializerTests.cs b/test/dotnet-watch.Tests/FileSetSerializerTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/FileSetSerializerTests.cs rename to test/dotnet-watch.Tests/FileSetSerializerTests.cs diff --git a/src/Tests/dotnet-watch.Tests/FileWatcherTests.cs b/test/dotnet-watch.Tests/FileWatcherTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/FileWatcherTests.cs rename to test/dotnet-watch.Tests/FileWatcherTests.cs diff --git a/src/Tests/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs b/test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs rename to test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs diff --git a/src/Tests/dotnet-watch.Tests/HotReload/DefaultDeltaApplierTests.cs b/test/dotnet-watch.Tests/HotReload/DefaultDeltaApplierTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/HotReload/DefaultDeltaApplierTests.cs rename to test/dotnet-watch.Tests/HotReload/DefaultDeltaApplierTests.cs diff --git a/src/Tests/dotnet-watch.Tests/HotReload/UpdatePayloadTests.cs b/test/dotnet-watch.Tests/HotReload/UpdatePayloadTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/HotReload/UpdatePayloadTests.cs rename to test/dotnet-watch.Tests/HotReload/UpdatePayloadTests.cs diff --git a/src/Tests/dotnet-watch.Tests/Internal/ProcessRunnerTest.cs b/test/dotnet-watch.Tests/Internal/ProcessRunnerTest.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Internal/ProcessRunnerTest.cs rename to test/dotnet-watch.Tests/Internal/ProcessRunnerTest.cs diff --git a/src/Tests/dotnet-watch.Tests/LaunchSettingsProfileTest.cs b/test/dotnet-watch.Tests/LaunchSettingsProfileTest.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/LaunchSettingsProfileTest.cs rename to test/dotnet-watch.Tests/LaunchSettingsProfileTest.cs diff --git a/src/Tests/dotnet-watch.Tests/MSBuildEvaluationFilterTest.cs b/test/dotnet-watch.Tests/MSBuildEvaluationFilterTest.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/MSBuildEvaluationFilterTest.cs rename to test/dotnet-watch.Tests/MSBuildEvaluationFilterTest.cs diff --git a/src/Tests/dotnet-watch.Tests/MsBuildFileSetFactoryTest.cs b/test/dotnet-watch.Tests/MsBuildFileSetFactoryTest.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/MsBuildFileSetFactoryTest.cs rename to test/dotnet-watch.Tests/MsBuildFileSetFactoryTest.cs diff --git a/src/Tests/dotnet-watch.Tests/NoRestoreFilterTest.cs b/test/dotnet-watch.Tests/NoRestoreFilterTest.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/NoRestoreFilterTest.cs rename to test/dotnet-watch.Tests/NoRestoreFilterTest.cs diff --git a/src/Tests/dotnet-watch.Tests/Properties/AssemblyInfo.cs b/test/dotnet-watch.Tests/Properties/AssemblyInfo.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Properties/AssemblyInfo.cs rename to test/dotnet-watch.Tests/Properties/AssemblyInfo.cs diff --git a/src/Tests/dotnet-watch.Tests/Utilities/AssertEx.cs b/test/dotnet-watch.Tests/Utilities/AssertEx.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Utilities/AssertEx.cs rename to test/dotnet-watch.Tests/Utilities/AssertEx.cs diff --git a/src/Tests/dotnet-watch.Tests/Utilities/AwaitableProcess.cs b/test/dotnet-watch.Tests/Utilities/AwaitableProcess.cs similarity index 99% rename from src/Tests/dotnet-watch.Tests/Utilities/AwaitableProcess.cs rename to test/dotnet-watch.Tests/Utilities/AwaitableProcess.cs index 8baa89e008b7..200c21a0e5fa 100644 --- a/src/Tests/dotnet-watch.Tests/Utilities/AwaitableProcess.cs +++ b/test/dotnet-watch.Tests/Utilities/AwaitableProcess.cs @@ -70,7 +70,7 @@ public async Task GetOutputLineAsync(Predicate success, Predicat { using var cancellationOnFailure = new CancellationTokenSource(); - // cancel just before we hit 2 minute time out used on CI (sdk\src\Tests\UnitTests.proj) + // cancel just before we hit 2 minute time out used on CI (sdk\test\UnitTests.proj) cancellationOnFailure.CancelAfter(TimeSpan.FromSeconds(110)); var failedLineCount = 0; diff --git a/src/Tests/dotnet-watch.Tests/Utilities/MockReporter.cs b/test/dotnet-watch.Tests/Utilities/MockReporter.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Utilities/MockReporter.cs rename to test/dotnet-watch.Tests/Utilities/MockReporter.cs diff --git a/src/Tests/dotnet-watch.Tests/Utilities/TaskExtensions.cs b/test/dotnet-watch.Tests/Utilities/TaskExtensions.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Utilities/TaskExtensions.cs rename to test/dotnet-watch.Tests/Utilities/TaskExtensions.cs diff --git a/src/Tests/dotnet-watch.Tests/Utilities/TestConsole.cs b/test/dotnet-watch.Tests/Utilities/TestConsole.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Utilities/TestConsole.cs rename to test/dotnet-watch.Tests/Utilities/TestConsole.cs diff --git a/src/Tests/dotnet-watch.Tests/Utilities/TestReporter.cs b/test/dotnet-watch.Tests/Utilities/TestReporter.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Utilities/TestReporter.cs rename to test/dotnet-watch.Tests/Utilities/TestReporter.cs diff --git a/src/Tests/dotnet-watch.Tests/Watch/BrowserLaunchTests.cs b/test/dotnet-watch.Tests/Watch/BrowserLaunchTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Watch/BrowserLaunchTests.cs rename to test/dotnet-watch.Tests/Watch/BrowserLaunchTests.cs diff --git a/src/Tests/dotnet-watch.Tests/Watch/DotNetWatcherTests.cs b/test/dotnet-watch.Tests/Watch/DotNetWatcherTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Watch/DotNetWatcherTests.cs rename to test/dotnet-watch.Tests/Watch/DotNetWatcherTests.cs diff --git a/src/Tests/dotnet-watch.Tests/Watch/GlobbingAppTests.cs b/test/dotnet-watch.Tests/Watch/GlobbingAppTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Watch/GlobbingAppTests.cs rename to test/dotnet-watch.Tests/Watch/GlobbingAppTests.cs diff --git a/src/Tests/dotnet-watch.Tests/Watch/NoDepsAppTests.cs b/test/dotnet-watch.Tests/Watch/NoDepsAppTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Watch/NoDepsAppTests.cs rename to test/dotnet-watch.Tests/Watch/NoDepsAppTests.cs diff --git a/src/Tests/dotnet-watch.Tests/Watch/ProgramTests.cs b/test/dotnet-watch.Tests/Watch/ProgramTests.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Watch/ProgramTests.cs rename to test/dotnet-watch.Tests/Watch/ProgramTests.cs diff --git a/src/Tests/dotnet-watch.Tests/Watch/Utilities/DotNetWatchTestBase.cs b/test/dotnet-watch.Tests/Watch/Utilities/DotNetWatchTestBase.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Watch/Utilities/DotNetWatchTestBase.cs rename to test/dotnet-watch.Tests/Watch/Utilities/DotNetWatchTestBase.cs diff --git a/src/Tests/dotnet-watch.Tests/Watch/Utilities/WatchableApp.cs b/test/dotnet-watch.Tests/Watch/Utilities/WatchableApp.cs similarity index 100% rename from src/Tests/dotnet-watch.Tests/Watch/Utilities/WatchableApp.cs rename to test/dotnet-watch.Tests/Watch/Utilities/WatchableApp.cs diff --git a/src/Tests/dotnet-watch.Tests/dotnet-watch.Tests.csproj b/test/dotnet-watch.Tests/dotnet-watch.Tests.csproj similarity index 100% rename from src/Tests/dotnet-watch.Tests/dotnet-watch.Tests.csproj rename to test/dotnet-watch.Tests/dotnet-watch.Tests.csproj diff --git a/src/Tests/dotnet-watch.Tests/dotnet-watch.Tests.csproj.user b/test/dotnet-watch.Tests/dotnet-watch.Tests.csproj.user similarity index 100% rename from src/Tests/dotnet-watch.Tests/dotnet-watch.Tests.csproj.user rename to test/dotnet-watch.Tests/dotnet-watch.Tests.csproj.user diff --git a/src/Tests/dotnet-workload-install.Tests/FailingNuGetPackageInstaller.cs b/test/dotnet-workload-install.Tests/FailingNuGetPackageInstaller.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/FailingNuGetPackageInstaller.cs rename to test/dotnet-workload-install.Tests/FailingNuGetPackageInstaller.cs diff --git a/src/Tests/dotnet-workload-install.Tests/GivenDotnetWorkloadInstall.cs b/test/dotnet-workload-install.Tests/GivenDotnetWorkloadInstall.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/GivenDotnetWorkloadInstall.cs rename to test/dotnet-workload-install.Tests/GivenDotnetWorkloadInstall.cs diff --git a/src/Tests/dotnet-workload-install.Tests/GivenFileBasedWorkloadInstall.cs b/test/dotnet-workload-install.Tests/GivenFileBasedWorkloadInstall.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/GivenFileBasedWorkloadInstall.cs rename to test/dotnet-workload-install.Tests/GivenFileBasedWorkloadInstall.cs diff --git a/src/Tests/dotnet-workload-install.Tests/GivenWorkloadManifestUpdater.cs b/test/dotnet-workload-install.Tests/GivenWorkloadManifestUpdater.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/GivenWorkloadManifestUpdater.cs rename to test/dotnet-workload-install.Tests/GivenWorkloadManifestUpdater.cs diff --git a/src/Tests/dotnet-workload-install.Tests/MockManifestProvider.cs b/test/dotnet-workload-install.Tests/MockManifestProvider.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/MockManifestProvider.cs rename to test/dotnet-workload-install.Tests/MockManifestProvider.cs diff --git a/src/Tests/dotnet-workload-install.Tests/MockNuGetPackageInstaller.cs b/test/dotnet-workload-install.Tests/MockNuGetPackageInstaller.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/MockNuGetPackageInstaller.cs rename to test/dotnet-workload-install.Tests/MockNuGetPackageInstaller.cs diff --git a/src/Tests/dotnet-workload-install.Tests/MockPackWorkloadInstaller.cs b/test/dotnet-workload-install.Tests/MockPackWorkloadInstaller.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/MockPackWorkloadInstaller.cs rename to test/dotnet-workload-install.Tests/MockPackWorkloadInstaller.cs diff --git a/src/Tests/dotnet-workload-install.Tests/MockWorkloadManifestUpdater.cs b/test/dotnet-workload-install.Tests/MockWorkloadManifestUpdater.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/MockWorkloadManifestUpdater.cs rename to test/dotnet-workload-install.Tests/MockWorkloadManifestUpdater.cs diff --git a/src/Tests/dotnet-workload-install.Tests/MockWorkloadResolverFactory.cs b/test/dotnet-workload-install.Tests/MockWorkloadResolverFactory.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/MockWorkloadResolverFactory.cs rename to test/dotnet-workload-install.Tests/MockWorkloadResolverFactory.cs diff --git a/src/Tests/dotnet-workload-install.Tests/WorkloadGarbageCollectionTests.cs b/test/dotnet-workload-install.Tests/WorkloadGarbageCollectionTests.cs similarity index 100% rename from src/Tests/dotnet-workload-install.Tests/WorkloadGarbageCollectionTests.cs rename to test/dotnet-workload-install.Tests/WorkloadGarbageCollectionTests.cs diff --git a/src/Tests/dotnet-workload-list.Tests/GivenAnMsiInstallation.cs b/test/dotnet-workload-list.Tests/GivenAnMsiInstallation.cs similarity index 100% rename from src/Tests/dotnet-workload-list.Tests/GivenAnMsiInstallation.cs rename to test/dotnet-workload-list.Tests/GivenAnMsiInstallation.cs diff --git a/src/Tests/dotnet-workload-list.Tests/GivenDotnetWorkloadList.cs b/test/dotnet-workload-list.Tests/GivenDotnetWorkloadList.cs similarity index 100% rename from src/Tests/dotnet-workload-list.Tests/GivenDotnetWorkloadList.cs rename to test/dotnet-workload-list.Tests/GivenDotnetWorkloadList.cs diff --git a/src/Tests/dotnet-workload-list.Tests/GivenWorkloadInstallerAndWorkloadsInstalled.cs b/test/dotnet-workload-list.Tests/GivenWorkloadInstallerAndWorkloadsInstalled.cs similarity index 100% rename from src/Tests/dotnet-workload-list.Tests/GivenWorkloadInstallerAndWorkloadsInstalled.cs rename to test/dotnet-workload-list.Tests/GivenWorkloadInstallerAndWorkloadsInstalled.cs diff --git a/src/Tests/dotnet-workload-list.Tests/MockWorkloadRecordRepo.cs b/test/dotnet-workload-list.Tests/MockWorkloadRecordRepo.cs similarity index 100% rename from src/Tests/dotnet-workload-list.Tests/MockWorkloadRecordRepo.cs rename to test/dotnet-workload-list.Tests/MockWorkloadRecordRepo.cs diff --git a/src/Tests/dotnet-workload-repair.Tests/GivenDotnetWorkloadRepair.cs b/test/dotnet-workload-repair.Tests/GivenDotnetWorkloadRepair.cs similarity index 100% rename from src/Tests/dotnet-workload-repair.Tests/GivenDotnetWorkloadRepair.cs rename to test/dotnet-workload-repair.Tests/GivenDotnetWorkloadRepair.cs diff --git a/src/Tests/dotnet-workload-restore.Tests/DiscoverAllProjectsTests.cs b/test/dotnet-workload-restore.Tests/DiscoverAllProjectsTests.cs similarity index 100% rename from src/Tests/dotnet-workload-restore.Tests/DiscoverAllProjectsTests.cs rename to test/dotnet-workload-restore.Tests/DiscoverAllProjectsTests.cs diff --git a/src/Tests/dotnet-workload-search.Tests/GivenDotnetWorkloadSearch.cs b/test/dotnet-workload-search.Tests/GivenDotnetWorkloadSearch.cs similarity index 100% rename from src/Tests/dotnet-workload-search.Tests/GivenDotnetWorkloadSearch.cs rename to test/dotnet-workload-search.Tests/GivenDotnetWorkloadSearch.cs diff --git a/src/Tests/dotnet-workload-search.Tests/MockWorkloadResolver.cs b/test/dotnet-workload-search.Tests/MockWorkloadResolver.cs similarity index 100% rename from src/Tests/dotnet-workload-search.Tests/MockWorkloadResolver.cs rename to test/dotnet-workload-search.Tests/MockWorkloadResolver.cs diff --git a/src/Tests/dotnet-workload-uninstall.Tests/GivenDotnetWorkloadUninstall.cs b/test/dotnet-workload-uninstall.Tests/GivenDotnetWorkloadUninstall.cs similarity index 100% rename from src/Tests/dotnet-workload-uninstall.Tests/GivenDotnetWorkloadUninstall.cs rename to test/dotnet-workload-uninstall.Tests/GivenDotnetWorkloadUninstall.cs diff --git a/src/Tests/dotnet-workload-update.Tests/GivenDotnetWorkloadUpdate.cs b/test/dotnet-workload-update.Tests/GivenDotnetWorkloadUpdate.cs similarity index 100% rename from src/Tests/dotnet-workload-update.Tests/GivenDotnetWorkloadUpdate.cs rename to test/dotnet-workload-update.Tests/GivenDotnetWorkloadUpdate.cs diff --git a/src/Tests/dotnet.Tests/BuildServerTests/BuildServerProviderTests.cs b/test/dotnet.Tests/BuildServerTests/BuildServerProviderTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/BuildServerTests/BuildServerProviderTests.cs rename to test/dotnet.Tests/BuildServerTests/BuildServerProviderTests.cs diff --git a/src/Tests/dotnet.Tests/BuildServerTests/RazorServerTests.cs b/test/dotnet.Tests/BuildServerTests/RazorServerTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/BuildServerTests/RazorServerTests.cs rename to test/dotnet.Tests/BuildServerTests/RazorServerTests.cs diff --git a/src/Tests/dotnet.Tests/BuildServerTests/VBCSCompilerServerTests.cs b/test/dotnet.Tests/BuildServerTests/VBCSCompilerServerTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/BuildServerTests/VBCSCompilerServerTests.cs rename to test/dotnet.Tests/BuildServerTests/VBCSCompilerServerTests.cs diff --git a/src/Tests/dotnet.Tests/BundledTargetFramworkTests.cs b/test/dotnet.Tests/BundledTargetFramworkTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/BundledTargetFramworkTests.cs rename to test/dotnet.Tests/BundledTargetFramworkTests.cs diff --git a/src/Tests/dotnet.Tests/CollectCodeCoverage.runsettings b/test/dotnet.Tests/CollectCodeCoverage.runsettings similarity index 100% rename from src/Tests/dotnet.Tests/CollectCodeCoverage.runsettings rename to test/dotnet.Tests/CollectCodeCoverage.runsettings diff --git a/src/Tests/dotnet.Tests/CommandObjectTests.cs b/test/dotnet.Tests/CommandObjectTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandObjectTests.cs rename to test/dotnet.Tests/CommandObjectTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/BuildServerShutdownCommandTests.cs b/test/dotnet.Tests/CommandTests/BuildServerShutdownCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/BuildServerShutdownCommandTests.cs rename to test/dotnet.Tests/CommandTests/BuildServerShutdownCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/CommandIntegrationTests.cs b/test/dotnet.Tests/CommandTests/CommandIntegrationTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/CommandIntegrationTests.cs rename to test/dotnet.Tests/CommandTests/CommandIntegrationTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/CompleteCommandTests.cs b/test/dotnet.Tests/CommandTests/CompleteCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/CompleteCommandTests.cs rename to test/dotnet.Tests/CommandTests/CompleteCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/FakeDangerousFileDetector.cs b/test/dotnet.Tests/CommandTests/FakeDangerousFileDetector.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/FakeDangerousFileDetector.cs rename to test/dotnet.Tests/CommandTests/FakeDangerousFileDetector.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolInstallCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolInstallCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolInstallCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolInstallCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolInstallGlobalOrToolPathCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolInstallGlobalOrToolPathCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolInstallGlobalOrToolPathCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolInstallGlobalOrToolPathCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolInstallLocalCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolInstallLocalCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolInstallLocalCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolInstallLocalCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolListCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolListCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolListCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolListCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolListGlobalOrToolPathCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolListGlobalOrToolPathCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolListGlobalOrToolPathCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolListGlobalOrToolPathCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolListLocalCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolListLocalCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolListLocalCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolListLocalCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolManifestEditorTests.cs b/test/dotnet.Tests/CommandTests/ToolManifestEditorTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolManifestEditorTests.cs rename to test/dotnet.Tests/CommandTests/ToolManifestEditorTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolManifestFinderTests.cs b/test/dotnet.Tests/CommandTests/ToolManifestFinderTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolManifestFinderTests.cs rename to test/dotnet.Tests/CommandTests/ToolManifestFinderTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolRestoreCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolRestoreCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolRestoreCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolRestoreCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolRestoreCommandWithMultipleNugetConfigTests.cs b/test/dotnet.Tests/CommandTests/ToolRestoreCommandWithMultipleNugetConfigTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolRestoreCommandWithMultipleNugetConfigTests.cs rename to test/dotnet.Tests/CommandTests/ToolRestoreCommandWithMultipleNugetConfigTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolUninstallCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolUninstallCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolUninstallCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolUninstallCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolUninstallGlobalOrToolPathCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolUninstallGlobalOrToolPathCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolUninstallGlobalOrToolPathCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolUninstallGlobalOrToolPathCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolUninstallLocalCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolUninstallLocalCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolUninstallLocalCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolUninstallLocalCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolUpdateCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolUpdateCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolUpdateCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolUpdateCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolUpdateGlobalOrToolPathCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolUpdateGlobalOrToolPathCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolUpdateGlobalOrToolPathCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolUpdateGlobalOrToolPathCommandTests.cs diff --git a/src/Tests/dotnet.Tests/CommandTests/ToolUpdateLocalCommandTests.cs b/test/dotnet.Tests/CommandTests/ToolUpdateLocalCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/CommandTests/ToolUpdateLocalCommandTests.cs rename to test/dotnet.Tests/CommandTests/ToolUpdateLocalCommandTests.cs diff --git a/src/Tests/dotnet.Tests/EnvironmentVariableNamesTests.cs b/test/dotnet.Tests/EnvironmentVariableNamesTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/EnvironmentVariableNamesTests.cs rename to test/dotnet.Tests/EnvironmentVariableNamesTests.cs diff --git a/src/Tests/dotnet.Tests/FakeRecordEventNameTelemetry.cs b/test/dotnet.Tests/FakeRecordEventNameTelemetry.cs similarity index 100% rename from src/Tests/dotnet.Tests/FakeRecordEventNameTelemetry.cs rename to test/dotnet.Tests/FakeRecordEventNameTelemetry.cs diff --git a/src/Tests/dotnet.Tests/GivenExponentialRetry.cs b/test/dotnet.Tests/GivenExponentialRetry.cs similarity index 100% rename from src/Tests/dotnet.Tests/GivenExponentialRetry.cs rename to test/dotnet.Tests/GivenExponentialRetry.cs diff --git a/src/Tests/dotnet.Tests/GivenParserDirectives.cs b/test/dotnet.Tests/GivenParserDirectives.cs similarity index 100% rename from src/Tests/dotnet.Tests/GivenParserDirectives.cs rename to test/dotnet.Tests/GivenParserDirectives.cs diff --git a/src/Tests/dotnet.Tests/GivenThatDotNetRunsCommands.cs b/test/dotnet.Tests/GivenThatDotNetRunsCommands.cs similarity index 100% rename from src/Tests/dotnet.Tests/GivenThatDotNetRunsCommands.cs rename to test/dotnet.Tests/GivenThatDotNetRunsCommands.cs diff --git a/src/Tests/dotnet.Tests/GivenThatICareAboutVBApps.cs b/test/dotnet.Tests/GivenThatICareAboutVBApps.cs similarity index 100% rename from src/Tests/dotnet.Tests/GivenThatICareAboutVBApps.cs rename to test/dotnet.Tests/GivenThatICareAboutVBApps.cs diff --git a/src/Tests/dotnet.Tests/GivenThatTheUserEnablesThePerfLog.cs b/test/dotnet.Tests/GivenThatTheUserEnablesThePerfLog.cs similarity index 100% rename from src/Tests/dotnet.Tests/GivenThatTheUserEnablesThePerfLog.cs rename to test/dotnet.Tests/GivenThatTheUserEnablesThePerfLog.cs diff --git a/src/Tests/dotnet.Tests/GivenThatTheUserIsRunningDotNetForTheFirstTime.cs b/test/dotnet.Tests/GivenThatTheUserIsRunningDotNetForTheFirstTime.cs similarity index 100% rename from src/Tests/dotnet.Tests/GivenThatTheUserIsRunningDotNetForTheFirstTime.cs rename to test/dotnet.Tests/GivenThatTheUserIsRunningDotNetForTheFirstTime.cs diff --git a/src/Tests/dotnet.Tests/GivenThatTheUserRequestsHelp.cs b/test/dotnet.Tests/GivenThatTheUserRequestsHelp.cs similarity index 100% rename from src/Tests/dotnet.Tests/GivenThatTheUserRequestsHelp.cs rename to test/dotnet.Tests/GivenThatTheUserRequestsHelp.cs diff --git a/src/Tests/dotnet.Tests/NuGetSignatureVerificationEnablerTests.cs b/test/dotnet.Tests/NuGetSignatureVerificationEnablerTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/NuGetSignatureVerificationEnablerTests.cs rename to test/dotnet.Tests/NuGetSignatureVerificationEnablerTests.cs diff --git a/src/Tests/dotnet.Tests/OutputPathOptionTests.cs b/test/dotnet.Tests/OutputPathOptionTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/OutputPathOptionTests.cs rename to test/dotnet.Tests/OutputPathOptionTests.cs diff --git a/src/Tests/dotnet.Tests/PackagedCommandTests.cs b/test/dotnet.Tests/PackagedCommandTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/PackagedCommandTests.cs rename to test/dotnet.Tests/PackagedCommandTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/AddReferenceParserTests.cs b/test/dotnet.Tests/ParserTests/AddReferenceParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/AddReferenceParserTests.cs rename to test/dotnet.Tests/ParserTests/AddReferenceParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/BuildServerShutdownParserTests.cs b/test/dotnet.Tests/ParserTests/BuildServerShutdownParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/BuildServerShutdownParserTests.cs rename to test/dotnet.Tests/ParserTests/BuildServerShutdownParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/InstallToolParserTests.cs b/test/dotnet.Tests/ParserTests/InstallToolParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/InstallToolParserTests.cs rename to test/dotnet.Tests/ParserTests/InstallToolParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/ListPackageParserTests.cs b/test/dotnet.Tests/ParserTests/ListPackageParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/ListPackageParserTests.cs rename to test/dotnet.Tests/ParserTests/ListPackageParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/ListToolParserTests.cs b/test/dotnet.Tests/ParserTests/ListToolParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/ListToolParserTests.cs rename to test/dotnet.Tests/ParserTests/ListToolParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/MSBuildArgumentCommandLineParserTests.cs b/test/dotnet.Tests/ParserTests/MSBuildArgumentCommandLineParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/MSBuildArgumentCommandLineParserTests.cs rename to test/dotnet.Tests/ParserTests/MSBuildArgumentCommandLineParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/ParseResultExtensionsTests.cs b/test/dotnet.Tests/ParserTests/ParseResultExtensionsTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/ParseResultExtensionsTests.cs rename to test/dotnet.Tests/ParserTests/ParseResultExtensionsTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/ResponseFileTests.cs b/test/dotnet.Tests/ParserTests/ResponseFileTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/ResponseFileTests.cs rename to test/dotnet.Tests/ParserTests/ResponseFileTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/RestoreParserTests.cs b/test/dotnet.Tests/ParserTests/RestoreParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/RestoreParserTests.cs rename to test/dotnet.Tests/ParserTests/RestoreParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/RunParserTests.cs b/test/dotnet.Tests/ParserTests/RunParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/RunParserTests.cs rename to test/dotnet.Tests/ParserTests/RunParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/ToolRestoreParserTests.cs b/test/dotnet.Tests/ParserTests/ToolRestoreParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/ToolRestoreParserTests.cs rename to test/dotnet.Tests/ParserTests/ToolRestoreParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/ToolRunParserTests.cs b/test/dotnet.Tests/ParserTests/ToolRunParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/ToolRunParserTests.cs rename to test/dotnet.Tests/ParserTests/ToolRunParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/ToolSearchParserTests.cs b/test/dotnet.Tests/ParserTests/ToolSearchParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/ToolSearchParserTests.cs rename to test/dotnet.Tests/ParserTests/ToolSearchParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/UninstallToolParserTests.cs b/test/dotnet.Tests/ParserTests/UninstallToolParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/UninstallToolParserTests.cs rename to test/dotnet.Tests/ParserTests/UninstallToolParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/UpdateToolParserTests.cs b/test/dotnet.Tests/ParserTests/UpdateToolParserTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/UpdateToolParserTests.cs rename to test/dotnet.Tests/ParserTests/UpdateToolParserTests.cs diff --git a/src/Tests/dotnet.Tests/ParserTests/VSTestArgumentConverterTests.cs b/test/dotnet.Tests/ParserTests/VSTestArgumentConverterTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ParserTests/VSTestArgumentConverterTests.cs rename to test/dotnet.Tests/ParserTests/VSTestArgumentConverterTests.cs diff --git a/src/Tests/dotnet.Tests/PrintableTableTests.cs b/test/dotnet.Tests/PrintableTableTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/PrintableTableTests.cs rename to test/dotnet.Tests/PrintableTableTests.cs diff --git a/src/Tests/dotnet.Tests/RuntimeConfigTests.cs b/test/dotnet.Tests/RuntimeConfigTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/RuntimeConfigTests.cs rename to test/dotnet.Tests/RuntimeConfigTests.cs diff --git a/src/Tests/dotnet.Tests/TelemetryCommandTest.cs b/test/dotnet.Tests/TelemetryCommandTest.cs similarity index 100% rename from src/Tests/dotnet.Tests/TelemetryCommandTest.cs rename to test/dotnet.Tests/TelemetryCommandTest.cs diff --git a/src/Tests/dotnet.Tests/TelemetryCommonPropertiesTests.cs b/test/dotnet.Tests/TelemetryCommonPropertiesTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/TelemetryCommonPropertiesTests.cs rename to test/dotnet.Tests/TelemetryCommonPropertiesTests.cs diff --git a/src/Tests/dotnet.Tests/TelemetryFilterTest.cs b/test/dotnet.Tests/TelemetryFilterTest.cs similarity index 100% rename from src/Tests/dotnet.Tests/TelemetryFilterTest.cs rename to test/dotnet.Tests/TelemetryFilterTest.cs diff --git a/src/Tests/dotnet.Tests/TestAssetExtensions.cs b/test/dotnet.Tests/TestAssetExtensions.cs similarity index 100% rename from src/Tests/dotnet.Tests/TestAssetExtensions.cs rename to test/dotnet.Tests/TestAssetExtensions.cs diff --git a/src/Tests/dotnet.Tests/TestCommandExtensions.cs b/test/dotnet.Tests/TestCommandExtensions.cs similarity index 100% rename from src/Tests/dotnet.Tests/TestCommandExtensions.cs rename to test/dotnet.Tests/TestCommandExtensions.cs diff --git a/src/Tests/dotnet.Tests/ToolSearchTests/NugetSearchApiDeserializerTests.cs b/test/dotnet.Tests/ToolSearchTests/NugetSearchApiDeserializerTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ToolSearchTests/NugetSearchApiDeserializerTests.cs rename to test/dotnet.Tests/ToolSearchTests/NugetSearchApiDeserializerTests.cs diff --git a/src/Tests/dotnet.Tests/ToolSearchTests/NugetSearchApiParameterTests.cs b/test/dotnet.Tests/ToolSearchTests/NugetSearchApiParameterTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ToolSearchTests/NugetSearchApiParameterTests.cs rename to test/dotnet.Tests/ToolSearchTests/NugetSearchApiParameterTests.cs diff --git a/src/Tests/dotnet.Tests/ToolSearchTests/NugetSearchApiRequestTests.cs b/test/dotnet.Tests/ToolSearchTests/NugetSearchApiRequestTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ToolSearchTests/NugetSearchApiRequestTests.cs rename to test/dotnet.Tests/ToolSearchTests/NugetSearchApiRequestTests.cs diff --git a/src/Tests/dotnet.Tests/ToolSearchTests/SearchResultPrinterTests.cs b/test/dotnet.Tests/ToolSearchTests/SearchResultPrinterTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/ToolSearchTests/SearchResultPrinterTests.cs rename to test/dotnet.Tests/ToolSearchTests/SearchResultPrinterTests.cs diff --git a/src/Tests/dotnet.Tests/VersionTest.cs b/test/dotnet.Tests/VersionTest.cs similarity index 100% rename from src/Tests/dotnet.Tests/VersionTest.cs rename to test/dotnet.Tests/VersionTest.cs diff --git a/src/Tests/dotnet.Tests/WindowsInstallerTests.cs b/test/dotnet.Tests/WindowsInstallerTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/WindowsInstallerTests.cs rename to test/dotnet.Tests/WindowsInstallerTests.cs diff --git a/src/Tests/dotnet.Tests/app.config b/test/dotnet.Tests/app.config similarity index 100% rename from src/Tests/dotnet.Tests/app.config rename to test/dotnet.Tests/app.config diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/DotnetMsbuildInProcTests.cs b/test/dotnet.Tests/dotnet-msbuild/DotnetMsbuildInProcTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/DotnetMsbuildInProcTests.cs rename to test/dotnet.Tests/dotnet-msbuild/DotnetMsbuildInProcTests.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/FakeTelemetry.cs b/test/dotnet.Tests/dotnet-msbuild/FakeTelemetry.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/FakeTelemetry.cs rename to test/dotnet.Tests/dotnet-msbuild/FakeTelemetry.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetBuildInvocation.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetBuildInvocation.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetBuildInvocation.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetBuildInvocation.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetCleanInvocation.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetCleanInvocation.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetCleanInvocation.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetCleanInvocation.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetMSBuildInvocation.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetMSBuildInvocation.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetMSBuildInvocation.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetMSBuildInvocation.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetOsArchOptions.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetOsArchOptions.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetOsArchOptions.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetOsArchOptions.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPackInvocation.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetPackInvocation.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPackInvocation.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetPackInvocation.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPublishInvocation.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetPublishInvocation.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetPublishInvocation.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetPublishInvocation.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetRestoreInvocation.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetRestoreInvocation.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetRestoreInvocation.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetRestoreInvocation.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetRunInvocation.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetRunInvocation.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetRunInvocation.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetRunInvocation.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetStoreInvocation.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetStoreInvocation.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetStoreInvocation.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetStoreInvocation.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetTestInvocation.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetTestInvocation.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetTestInvocation.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetTestInvocation.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetVsTestForwardingApp.cs b/test/dotnet.Tests/dotnet-msbuild/GivenDotnetVsTestForwardingApp.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenDotnetVsTestForwardingApp.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenDotnetVsTestForwardingApp.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenForwardingApp.cs b/test/dotnet.Tests/dotnet-msbuild/GivenForwardingApp.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenForwardingApp.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenForwardingApp.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenMSBuildLogger.cs b/test/dotnet.Tests/dotnet-msbuild/GivenMSBuildLogger.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenMSBuildLogger.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenMSBuildLogger.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/GivenMsbuildForwardingApp.cs b/test/dotnet.Tests/dotnet-msbuild/GivenMsbuildForwardingApp.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/GivenMsbuildForwardingApp.cs rename to test/dotnet.Tests/dotnet-msbuild/GivenMsbuildForwardingApp.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/LogEntry.cs b/test/dotnet.Tests/dotnet-msbuild/LogEntry.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/LogEntry.cs rename to test/dotnet.Tests/dotnet-msbuild/LogEntry.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/NullCurrentSessionIdFixture.cs b/test/dotnet.Tests/dotnet-msbuild/NullCurrentSessionIdFixture.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/NullCurrentSessionIdFixture.cs rename to test/dotnet.Tests/dotnet-msbuild/NullCurrentSessionIdFixture.cs diff --git a/src/Tests/dotnet.Tests/dotnet-msbuild/TestPathUtilities.cs b/test/dotnet.Tests/dotnet-msbuild/TestPathUtilities.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-msbuild/TestPathUtilities.cs rename to test/dotnet.Tests/dotnet-msbuild/TestPathUtilities.cs diff --git a/src/Tests/dotnet.Tests/dotnet-new/CapabilityExpressionEvaluationTests.cs b/test/dotnet.Tests/dotnet-new/CapabilityExpressionEvaluationTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-new/CapabilityExpressionEvaluationTests.cs rename to test/dotnet.Tests/dotnet-new/CapabilityExpressionEvaluationTests.cs diff --git a/src/Tests/dotnet.Tests/dotnet-new/DotnetAddPostActionTests.cs b/test/dotnet.Tests/dotnet-new/DotnetAddPostActionTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-new/DotnetAddPostActionTests.cs rename to test/dotnet.Tests/dotnet-new/DotnetAddPostActionTests.cs diff --git a/src/Tests/dotnet.Tests/dotnet-new/DotnetRestorePostActionTests.cs b/test/dotnet.Tests/dotnet-new/DotnetRestorePostActionTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-new/DotnetRestorePostActionTests.cs rename to test/dotnet.Tests/dotnet-new/DotnetRestorePostActionTests.cs diff --git a/src/Tests/dotnet.Tests/dotnet-new/DotnetSlnPostActionTests.cs b/test/dotnet.Tests/dotnet-new/DotnetSlnPostActionTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-new/DotnetSlnPostActionTests.cs rename to test/dotnet.Tests/dotnet-new/DotnetSlnPostActionTests.cs diff --git a/src/Tests/dotnet.Tests/dotnet-new/SdkInfoProviderTests.cs b/test/dotnet.Tests/dotnet-new/SdkInfoProviderTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-new/SdkInfoProviderTests.cs rename to test/dotnet.Tests/dotnet-new/SdkInfoProviderTests.cs diff --git a/src/Tests/dotnet.Tests/dotnet-new/WorkloadsInfoProviderTests.cs b/test/dotnet.Tests/dotnet-new/WorkloadsInfoProviderTests.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-new/WorkloadsInfoProviderTests.cs rename to test/dotnet.Tests/dotnet-new/WorkloadsInfoProviderTests.cs diff --git a/src/Tests/dotnet.Tests/dotnet-workload-base/MockWorkloadInfoHelper.cs b/test/dotnet.Tests/dotnet-workload-base/MockWorkloadInfoHelper.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-workload-base/MockWorkloadInfoHelper.cs rename to test/dotnet.Tests/dotnet-workload-base/MockWorkloadInfoHelper.cs diff --git a/src/Tests/dotnet.Tests/dotnet-workload-clean/GivenDotnetWorkloadClean.cs b/test/dotnet.Tests/dotnet-workload-clean/GivenDotnetWorkloadClean.cs similarity index 100% rename from src/Tests/dotnet.Tests/dotnet-workload-clean/GivenDotnetWorkloadClean.cs rename to test/dotnet.Tests/dotnet-workload-clean/GivenDotnetWorkloadClean.cs diff --git a/src/Tests/dotnet.Tests/dotnet.Tests.csproj b/test/dotnet.Tests/dotnet.Tests.csproj similarity index 77% rename from src/Tests/dotnet.Tests/dotnet.Tests.csproj rename to test/dotnet.Tests/dotnet.Tests.csproj index 0179861656c2..dd6e135a4bd9 100644 --- a/src/Tests/dotnet.Tests/dotnet.Tests.csproj +++ b/test/dotnet.Tests/dotnet.Tests.csproj @@ -89,47 +89,6 @@ - - - - $(IntermediateOutputPath)ExpectedTargetFrameworkMoniker.txt @@ -150,9 +109,9 @@ - - - + + + diff --git a/src/Tests/dotnet.Tests/queryResultSample.json b/test/dotnet.Tests/queryResultSample.json similarity index 100% rename from src/Tests/dotnet.Tests/queryResultSample.json rename to test/dotnet.Tests/queryResultSample.json diff --git a/src/Tests/dotnet.Tests/xunit.runner.json b/test/dotnet.Tests/xunit.runner.json similarity index 100% rename from src/Tests/dotnet.Tests/xunit.runner.json rename to test/dotnet.Tests/xunit.runner.json diff --git a/src/Tests/msbuild.Integration.Tests/GivenDotnetInvokesMSBuild.cs b/test/msbuild.Integration.Tests/GivenDotnetInvokesMSBuild.cs similarity index 100% rename from src/Tests/msbuild.Integration.Tests/GivenDotnetInvokesMSBuild.cs rename to test/msbuild.Integration.Tests/GivenDotnetInvokesMSBuild.cs diff --git a/src/Tests/msbuild.Integration.Tests/msbuild.Integration.Tests.csproj b/test/msbuild.Integration.Tests/msbuild.Integration.Tests.csproj similarity index 100% rename from src/Tests/msbuild.Integration.Tests/msbuild.Integration.Tests.csproj rename to test/msbuild.Integration.Tests/msbuild.Integration.Tests.csproj diff --git a/src/Tests/trustedroots.Tests/CtlFileTests.cs b/test/trustedroots.Tests/CtlFileTests.cs similarity index 100% rename from src/Tests/trustedroots.Tests/CtlFileTests.cs rename to test/trustedroots.Tests/CtlFileTests.cs diff --git a/src/Tests/trustedroots.Tests/GivenCodeSigningCtlFile.cs b/test/trustedroots.Tests/GivenCodeSigningCtlFile.cs similarity index 100% rename from src/Tests/trustedroots.Tests/GivenCodeSigningCtlFile.cs rename to test/trustedroots.Tests/GivenCodeSigningCtlFile.cs diff --git a/src/Tests/trustedroots.Tests/GivenTimestampingCtlFile.cs b/test/trustedroots.Tests/GivenTimestampingCtlFile.cs similarity index 100% rename from src/Tests/trustedroots.Tests/GivenTimestampingCtlFile.cs rename to test/trustedroots.Tests/GivenTimestampingCtlFile.cs diff --git a/src/Tests/trustedroots.Tests/trustedroots.Tests.csproj b/test/trustedroots.Tests/trustedroots.Tests.csproj similarity index 100% rename from src/Tests/trustedroots.Tests/trustedroots.Tests.csproj rename to test/trustedroots.Tests/trustedroots.Tests.csproj diff --git a/src/Tests/xunit-runner/XUnitPublish.targets b/test/xunit-runner/XUnitPublish.targets similarity index 100% rename from src/Tests/xunit-runner/XUnitPublish.targets rename to test/xunit-runner/XUnitPublish.targets diff --git a/src/Tests/xunit-runner/XUnitRunner.targets b/test/xunit-runner/XUnitRunner.targets similarity index 100% rename from src/Tests/xunit-runner/XUnitRunner.targets rename to test/xunit-runner/XUnitRunner.targets