Remove+sort usings, add headers for build tasks
authorDavis Goodin <dagood@microsoft.com>
Wed, 26 Jun 2019 14:51:35 +0000 (09:51 -0500)
committerDavis Goodin <dagood@microsoft.com>
Wed, 26 Jun 2019 14:51:35 +0000 (09:51 -0500)
Commit migrated from https://github.com/dotnet/core-setup/commit/52a5513a7cd4d11fbd8d89ca8fd6f4fe07a4efd0

12 files changed:
tools-local/tasks/ChangeEntryPointLibraryName.cs
tools-local/tasks/GenerateCurrentVersion.cs
tools-local/tasks/GenerateDebRepoUploadJsonFile.cs
tools-local/tasks/GenerateGuidFromName.cs
tools-local/tasks/GenerateMsiVersion.cs
tools-local/tasks/GetTargetMachineInfo.cs
tools-local/tasks/ProcessSharedFrameworkDeps.cs
tools-local/tasks/ReplaceFileContents.cs
tools-local/tasks/RuntimeGraphManager.cs
tools-local/tasks/ValidateBinInspectResults.cs
tools-local/tasks/ZipFileCreateFromDirectory.cs
tools-local/tasks/ZipFileExtractToDirectory.cs

index 956633d..dce1f22 100644 (file)
@@ -2,12 +2,11 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-using System;
-using System.Linq;
 using Microsoft.Build.Framework;
-using System.IO;
 using Newtonsoft.Json;
 using Newtonsoft.Json.Linq;
+using System.IO;
+using System.Linq;
 
 namespace Microsoft.DotNet.Build.Tasks
 {
index 7068a2a..c74cb19 100644 (file)
@@ -2,9 +2,8 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-using System;
 using Microsoft.Build.Framework;
-using Microsoft.Build.Utilities;
+using System;
 using System.Globalization;
 using System.Text.RegularExpressions;
 
index b173baf..51e3739 100644 (file)
@@ -2,11 +2,8 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-using System;
 using Microsoft.Build.Framework;
 using System.IO;
-using System.Collections.Generic;
-using Microsoft.Build.Construction;
 
 
 namespace Microsoft.DotNet.Build.Tasks
index f64885c..be7d1ae 100644 (file)
@@ -2,9 +2,9 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
+using Microsoft.Build.Framework;
 using System;
 using System.Security.Cryptography;
-using Microsoft.Build.Framework;
 
 namespace Microsoft.DotNet.Build.Tasks
 {
index f24c087..454ecbf 100644 (file)
@@ -2,7 +2,6 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-using System;
 using Microsoft.Build.Framework;
 
 namespace Microsoft.DotNet.Build.Tasks
index 93cf854..67aa53b 100644 (file)
@@ -3,9 +3,7 @@
 // See the LICENSE file in the project root for more information.
 
 using Microsoft.Build.Framework;
-using Microsoft.Build.Utilities;
 using System.Runtime.InteropServices;
-using Microsoft.DotNet.PlatformAbstractions;
 
 namespace Microsoft.DotNet.Build.Tasks
 {
index b5e9642..687a8c1 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using Microsoft.Build.Framework;
 using Microsoft.Build.Utilities;
 using Microsoft.Extensions.DependencyModel;
index 488699f..53aa631 100644 (file)
@@ -2,10 +2,10 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
+using Microsoft.Build.Framework;
+using Microsoft.Build.Utilities;
 using System;
 using System.IO;
-using Microsoft.Build.Utilities;
-using Microsoft.Build.Framework;
 
 namespace Microsoft.DotNet.Build.Tasks
 {
index 3cd1de5..2bedeef 100644 (file)
@@ -1,5 +1,8 @@
-using Microsoft.Extensions.DependencyModel;
-using NuGet.Frameworks;
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using Microsoft.Extensions.DependencyModel;
 using NuGet.Packaging;
 using NuGet.ProjectModel;
 using NuGet.RuntimeModel;
index f8d1dc5..2d5b7aa 100644 (file)
@@ -2,10 +2,8 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
-using Microsoft.Build.Construction;
 using Microsoft.Build.Framework;
 using Microsoft.Build.Utilities;
-using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text.RegularExpressions;
index 472c52b..3b2cbf6 100644 (file)
@@ -2,12 +2,12 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 // See the LICENSE file in the project root for more information.
 
+using Microsoft.Build.Framework;
+using Microsoft.Build.Utilities;
 using System;
 using System.IO;
 using System.IO.Compression;
 using System.Text.RegularExpressions;
-using Microsoft.Build.Framework;
-using Microsoft.Build.Utilities;
 
 namespace Microsoft.DotNet.Build.Tasks
 {
index 049ca12..e03a860 100644 (file)
@@ -3,7 +3,6 @@
 // See the LICENSE file in the project root for more information.
 
 using Microsoft.Build.Framework;
-using Microsoft.Build.Utilities;
 using System;
 using System.IO;
 using System.IO.Compression;