diff --git a/AspNetCoreSdkTests.sln b/AspNetCoreSdkTests.sln deleted file mode 100644 index 51f085d213..0000000000 --- a/AspNetCoreSdkTests.sln +++ /dev/null @@ -1,30 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27428.2037 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCoreSdkTests", "AspNetCoreSdkTests\AspNetCoreSdkTests.csproj", "{982F3170-BE98-4B2F-B36F-4C036BCDB2E6}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{52403704-43FE-41BE-A7F2-C3A5ED51F969}" - ProjectSection(SolutionItems) = preProject - test.sh = test.sh - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {982F3170-BE98-4B2F-B36F-4C036BCDB2E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {982F3170-BE98-4B2F-B36F-4C036BCDB2E6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {982F3170-BE98-4B2F-B36F-4C036BCDB2E6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {982F3170-BE98-4B2F-B36F-4C036BCDB2E6}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {3B64DDE7-BAD8-4DB3-A294-669059DA3334} - EndGlobalSection -EndGlobal diff --git a/AspNetCoreSdkTests/Templates/ReactReduxTemplate.cs b/AspNetCoreSdkTests/Templates/ReactReduxTemplate.cs deleted file mode 100644 index bcbc5fc8c1..0000000000 --- a/AspNetCoreSdkTests/Templates/ReactReduxTemplate.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace AspNetCoreSdkTests.Templates -{ - public class ReactReduxTemplate : ReactTemplate - { - public ReactReduxTemplate() { } - - public override string Name => "reactredux"; - } -} diff --git a/AspNetCoreSdkTests/Templates/TemplateType.cs b/AspNetCoreSdkTests/Templates/TemplateType.cs deleted file mode 100644 index 3717def35e..0000000000 --- a/AspNetCoreSdkTests/Templates/TemplateType.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace AspNetCoreSdkTests.Templates -{ - public enum TemplateType - { - ClassLibrary, - ConsoleApplication, - WebApplication, - } -} diff --git a/AspNetCoreSdkTests/AssemblyInfo.cs b/AssemblyInfo.cs similarity index 66% rename from AspNetCoreSdkTests/AssemblyInfo.cs rename to AssemblyInfo.cs index f6eeb3ec2d..cbe539e977 100644 --- a/AspNetCoreSdkTests/AssemblyInfo.cs +++ b/AssemblyInfo.cs @@ -1,4 +1,7 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using Cli.FunctionalTests.Util; using NUnit.Framework; // Run all test cases in parallel diff --git a/AspNetCoreSdkTests/AspNetCoreSdkTests.csproj b/Cli.FunctionalTests.csproj similarity index 100% rename from AspNetCoreSdkTests/AspNetCoreSdkTests.csproj rename to Cli.FunctionalTests.csproj diff --git a/Cli.FunctionalTests.sln b/Cli.FunctionalTests.sln new file mode 100644 index 0000000000..6aff0f5478 --- /dev/null +++ b/Cli.FunctionalTests.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28016.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cli.FunctionalTests", "Cli.FunctionalTests.csproj", "{D44EA496-EF83-4D47-8C45-4DAF5A1B0070}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D44EA496-EF83-4D47-8C45-4DAF5A1B0070}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D44EA496-EF83-4D47-8C45-4DAF5A1B0070}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D44EA496-EF83-4D47-8C45-4DAF5A1B0070}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D44EA496-EF83-4D47-8C45-4DAF5A1B0070}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {70432DA7-DCE4-4F73-A00C-E1AB180DDD6A} + EndGlobalSection +EndGlobal diff --git a/AspNetCoreSdkTests/NuGetPackageSource.cs b/NuGetPackageSource.cs similarity index 90% rename from AspNetCoreSdkTests/NuGetPackageSource.cs rename to NuGetPackageSource.cs index 3611cbab37..30545f8ca5 100644 --- a/AspNetCoreSdkTests/NuGetPackageSource.cs +++ b/NuGetPackageSource.cs @@ -1,7 +1,10 @@ -using System; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System; using System.Linq; -namespace AspNetCoreSdkTests +namespace Cli.FunctionalTests { public class NuGetPackageSource { diff --git a/AspNetCoreSdkTests/RuntimeIdentifier.cs b/RuntimeIdentifier.cs similarity index 88% rename from AspNetCoreSdkTests/RuntimeIdentifier.cs rename to RuntimeIdentifier.cs index 84c31b3c99..7e638a6935 100644 --- a/AspNetCoreSdkTests/RuntimeIdentifier.cs +++ b/RuntimeIdentifier.cs @@ -1,8 +1,10 @@ -using System.Collections.Generic; -using System.Linq; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System.Collections.Generic; using System.Runtime.InteropServices; -namespace AspNetCoreSdkTests +namespace Cli.FunctionalTests { // https://docs.microsoft.com/en-us/dotnet/core/rid-catalog public class RuntimeIdentifier diff --git a/AspNetCoreSdkTests/TemplateTests.cs b/TemplateTests.cs similarity index 97% rename from AspNetCoreSdkTests/TemplateTests.cs rename to TemplateTests.cs index 849cd5fc03..7e8143114f 100644 --- a/AspNetCoreSdkTests/TemplateTests.cs +++ b/TemplateTests.cs @@ -1,14 +1,17 @@ -using AspNetCoreSdkTests.Templates; -using AspNetCoreSdkTests.Util; -using NuGet.Versioning; -using NUnit.Framework; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Runtime.InteropServices; +using Cli.FunctionalTests.Templates; +using Cli.FunctionalTests.Util; +using NuGet.Versioning; +using NUnit.Framework; -namespace AspNetCoreSdkTests +namespace Cli.FunctionalTests { [TestFixture] public class TemplateTests diff --git a/AspNetCoreSdkTests/Templates/AngularTemplate.cs b/Templates/AngularTemplate.cs similarity index 92% rename from AspNetCoreSdkTests/Templates/AngularTemplate.cs rename to Templates/AngularTemplate.cs index 5170f80c82..debc4a6a9d 100644 --- a/AspNetCoreSdkTests/Templates/AngularTemplate.cs +++ b/Templates/AngularTemplate.cs @@ -1,11 +1,14 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text.RegularExpressions; +using Cli.FunctionalTests.Util; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public class AngularTemplate : SpaBaseTemplate { diff --git a/AspNetCoreSdkTests/Templates/ClassLibraryTemplate.cs b/Templates/ClassLibraryTemplate.cs similarity index 85% rename from AspNetCoreSdkTests/Templates/ClassLibraryTemplate.cs rename to Templates/ClassLibraryTemplate.cs index ad8e54f94f..e88c0a3ccf 100644 --- a/AspNetCoreSdkTests/Templates/ClassLibraryTemplate.cs +++ b/Templates/ClassLibraryTemplate.cs @@ -1,8 +1,11 @@ -using System.Collections.Generic; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System.Collections.Generic; using System.IO; using System.Linq; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public class ClassLibraryTemplate : Template { diff --git a/AspNetCoreSdkTests/Templates/ConsoleApplicationTemplate.cs b/Templates/ConsoleApplicationTemplate.cs similarity index 98% rename from AspNetCoreSdkTests/Templates/ConsoleApplicationTemplate.cs rename to Templates/ConsoleApplicationTemplate.cs index 1a13c42aa1..d72dca2d87 100644 --- a/AspNetCoreSdkTests/Templates/ConsoleApplicationTemplate.cs +++ b/Templates/ConsoleApplicationTemplate.cs @@ -1,11 +1,14 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text.RegularExpressions; +using Cli.FunctionalTests.Util; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public class ConsoleApplicationTemplate : ClassLibraryTemplate { diff --git a/AspNetCoreSdkTests/Templates/MvcTemplate.cs b/Templates/MvcTemplate.cs similarity index 89% rename from AspNetCoreSdkTests/Templates/MvcTemplate.cs rename to Templates/MvcTemplate.cs index 77ced6c009..ca5a9cdf65 100644 --- a/AspNetCoreSdkTests/Templates/MvcTemplate.cs +++ b/Templates/MvcTemplate.cs @@ -1,10 +1,13 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.IO; using System.Linq; +using Cli.FunctionalTests.Util; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public class MvcTemplate : RazorBootstrapJQueryTemplate { diff --git a/AspNetCoreSdkTests/Templates/RazorApplicationBaseTemplate.cs b/Templates/RazorApplicationBaseTemplate.cs similarity index 90% rename from AspNetCoreSdkTests/Templates/RazorApplicationBaseTemplate.cs rename to Templates/RazorApplicationBaseTemplate.cs index 3411f7874e..f1dceecde4 100644 --- a/AspNetCoreSdkTests/Templates/RazorApplicationBaseTemplate.cs +++ b/Templates/RazorApplicationBaseTemplate.cs @@ -1,10 +1,13 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.IO; using System.Linq; +using Cli.FunctionalTests.Util; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public abstract class RazorApplicationBaseTemplate : WebTemplate { diff --git a/AspNetCoreSdkTests/Templates/RazorBootstrapJQueryTemplate.cs b/Templates/RazorBootstrapJQueryTemplate.cs similarity index 96% rename from AspNetCoreSdkTests/Templates/RazorBootstrapJQueryTemplate.cs rename to Templates/RazorBootstrapJQueryTemplate.cs index 1e26e8745d..645ab55dd9 100644 --- a/AspNetCoreSdkTests/Templates/RazorBootstrapJQueryTemplate.cs +++ b/Templates/RazorBootstrapJQueryTemplate.cs @@ -1,10 +1,13 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.IO; using System.Linq; +using Cli.FunctionalTests.Util; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public abstract class RazorBootstrapJQueryTemplate : RazorApplicationBaseTemplate { diff --git a/AspNetCoreSdkTests/Templates/RazorClassLibraryTemplate.cs b/Templates/RazorClassLibraryTemplate.cs similarity index 99% rename from AspNetCoreSdkTests/Templates/RazorClassLibraryTemplate.cs rename to Templates/RazorClassLibraryTemplate.cs index 4b22df7eb2..a872f2bccc 100644 --- a/AspNetCoreSdkTests/Templates/RazorClassLibraryTemplate.cs +++ b/Templates/RazorClassLibraryTemplate.cs @@ -1,9 +1,12 @@ -using System; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System; using System.Collections.Generic; using System.IO; using System.Linq; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public class RazorClassLibraryTemplate : ClassLibraryTemplate { diff --git a/AspNetCoreSdkTests/Templates/RazorTemplate.cs b/Templates/RazorTemplate.cs similarity index 88% rename from AspNetCoreSdkTests/Templates/RazorTemplate.cs rename to Templates/RazorTemplate.cs index 25bacdf226..778ef5833d 100644 --- a/AspNetCoreSdkTests/Templates/RazorTemplate.cs +++ b/Templates/RazorTemplate.cs @@ -1,10 +1,13 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.IO; using System.Linq; +using Cli.FunctionalTests.Util; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public class RazorTemplate : RazorBootstrapJQueryTemplate { diff --git a/AspNetCoreSdkTests/Templates/RazorUtil.cs b/Templates/RazorUtil.cs similarity index 84% rename from AspNetCoreSdkTests/Templates/RazorUtil.cs rename to Templates/RazorUtil.cs index 6f78c07d06..3a1ad48db2 100644 --- a/AspNetCoreSdkTests/Templates/RazorUtil.cs +++ b/Templates/RazorUtil.cs @@ -1,8 +1,11 @@ -using System.Collections.Generic; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System.Collections.Generic; using System.IO; using System.Linq; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public static class RazorUtil { diff --git a/Templates/ReactReduxTemplate.cs b/Templates/ReactReduxTemplate.cs new file mode 100644 index 0000000000..11cd150541 --- /dev/null +++ b/Templates/ReactReduxTemplate.cs @@ -0,0 +1,12 @@ +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +namespace Cli.FunctionalTests.Templates +{ + public class ReactReduxTemplate : ReactTemplate + { + public ReactReduxTemplate() { } + + public override string Name => "reactredux"; + } +} diff --git a/AspNetCoreSdkTests/Templates/ReactTemplate.cs b/Templates/ReactTemplate.cs similarity index 92% rename from AspNetCoreSdkTests/Templates/ReactTemplate.cs rename to Templates/ReactTemplate.cs index d7edef33ae..212f4763c5 100644 --- a/AspNetCoreSdkTests/Templates/ReactTemplate.cs +++ b/Templates/ReactTemplate.cs @@ -1,11 +1,14 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text.RegularExpressions; +using Cli.FunctionalTests.Util; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public class ReactTemplate : SpaBaseTemplate { diff --git a/AspNetCoreSdkTests/Templates/SpaBaseTemplate.cs b/Templates/SpaBaseTemplate.cs similarity index 65% rename from AspNetCoreSdkTests/Templates/SpaBaseTemplate.cs rename to Templates/SpaBaseTemplate.cs index b4694dc6f5..6cfeccc16c 100644 --- a/AspNetCoreSdkTests/Templates/SpaBaseTemplate.cs +++ b/Templates/SpaBaseTemplate.cs @@ -1,8 +1,11 @@ -using System.Collections.Generic; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System.Collections.Generic; using System.IO; using System.Linq; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public abstract class SpaBaseTemplate : RazorApplicationBaseTemplate { diff --git a/AspNetCoreSdkTests/Templates/Template.cs b/Templates/Template.cs similarity index 98% rename from AspNetCoreSdkTests/Templates/Template.cs rename to Templates/Template.cs index 6b237f32ef..72e7837df2 100644 --- a/AspNetCoreSdkTests/Templates/Template.cs +++ b/Templates/Template.cs @@ -1,4 +1,6 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Concurrent; using System.Collections.Generic; @@ -7,8 +9,9 @@ using System.IO; using System.Net.Http; using System.Text.RegularExpressions; using System.Threading; +using Cli.FunctionalTests.Util; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public abstract class Template { diff --git a/Templates/TemplateType.cs b/Templates/TemplateType.cs new file mode 100644 index 0000000000..564f5c06a8 --- /dev/null +++ b/Templates/TemplateType.cs @@ -0,0 +1,12 @@ +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +namespace Cli.FunctionalTests.Templates +{ + public enum TemplateType + { + ClassLibrary, + ConsoleApplication, + WebApplication, + } +} diff --git a/AspNetCoreSdkTests/Templates/WebApiTemplate.cs b/Templates/WebApiTemplate.cs similarity index 66% rename from AspNetCoreSdkTests/Templates/WebApiTemplate.cs rename to Templates/WebApiTemplate.cs index 7a60537c2a..4bb6fa3c48 100644 --- a/AspNetCoreSdkTests/Templates/WebApiTemplate.cs +++ b/Templates/WebApiTemplate.cs @@ -1,7 +1,10 @@ -using System.Collections.Generic; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System.Collections.Generic; using System.Linq; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public class WebApiTemplate : WebTemplate { diff --git a/AspNetCoreSdkTests/Templates/WebTemplate.cs b/Templates/WebTemplate.cs similarity index 98% rename from AspNetCoreSdkTests/Templates/WebTemplate.cs rename to Templates/WebTemplate.cs index 4b5be134e7..a2e77925f6 100644 --- a/AspNetCoreSdkTests/Templates/WebTemplate.cs +++ b/Templates/WebTemplate.cs @@ -1,10 +1,13 @@ -using AspNetCoreSdkTests.Util; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.IO; using System.Linq; +using Cli.FunctionalTests.Util; -namespace AspNetCoreSdkTests.Templates +namespace Cli.FunctionalTests.Templates { public class WebTemplate : ConsoleApplicationTemplate { diff --git a/AspNetCoreSdkTests/Util/ConcurrentStringBuilder.cs b/Util/ConcurrentStringBuilder.cs similarity index 76% rename from AspNetCoreSdkTests/Util/ConcurrentStringBuilder.cs rename to Util/ConcurrentStringBuilder.cs index 796168f993..4d829977b5 100644 --- a/AspNetCoreSdkTests/Util/ConcurrentStringBuilder.cs +++ b/Util/ConcurrentStringBuilder.cs @@ -1,7 +1,9 @@ -using System; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System.Text; -namespace AspNetCoreSdkTests.Util +namespace Cli.FunctionalTests.Util { public class ConcurrentStringBuilder { diff --git a/AspNetCoreSdkTests/Util/DotNetUtil.cs b/Util/DotNetUtil.cs similarity index 97% rename from AspNetCoreSdkTests/Util/DotNetUtil.cs rename to Util/DotNetUtil.cs index 31a0223f11..f201a3732a 100644 --- a/AspNetCoreSdkTests/Util/DotNetUtil.cs +++ b/Util/DotNetUtil.cs @@ -1,6 +1,6 @@ -using Microsoft.Extensions.Internal; -using Newtonsoft.Json; -using NuGet.Versioning; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + using System; using System.Collections.Generic; using System.Diagnostics; @@ -9,8 +9,11 @@ using System.Linq; using System.Net.Http; using System.Text.RegularExpressions; using System.Threading; +using Microsoft.Extensions.Internal; +using Newtonsoft.Json; +using NuGet.Versioning; -namespace AspNetCoreSdkTests.Util +namespace Cli.FunctionalTests.Util { internal static class DotNetUtil { diff --git a/AspNetCoreSdkTests/Util/IOUtil.cs b/Util/IOUtil.cs similarity index 91% rename from AspNetCoreSdkTests/Util/IOUtil.cs rename to Util/IOUtil.cs index 1503668059..71409eb633 100644 --- a/AspNetCoreSdkTests/Util/IOUtil.cs +++ b/Util/IOUtil.cs @@ -1,10 +1,13 @@ -using System; +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; -namespace AspNetCoreSdkTests.Util +namespace Cli.FunctionalTests.Util { internal static class IOUtil { diff --git a/AspNetCoreSdkTests/Util/ProcessHelper.cs b/Util/ProcessHelper.cs similarity index 100% rename from AspNetCoreSdkTests/Util/ProcessHelper.cs rename to Util/ProcessHelper.cs diff --git a/test.sh b/test.sh old mode 100755 new mode 100644