Skip to content

Commit

Permalink
(maint) Reorder / tidy using statements
Browse files Browse the repository at this point in the history
  • Loading branch information
vexx32 committed Nov 6, 2024
1 parent 19973c0 commit 1fd6951
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 25 deletions.
3 changes: 1 addition & 2 deletions src/chocolatey.console/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using Microsoft.Win32;
using chocolatey.infrastructure.information;
using chocolatey.infrastructure.app;
Expand All @@ -44,7 +44,6 @@
using Console = System.Console;
using Environment = System.Environment;
using IFileSystem = chocolatey.infrastructure.filesystem.IFileSystem;
using System.Diagnostics;

namespace chocolatey.console
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,24 @@

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
using System.Threading;
using Chocolatey.NuGet.Frameworks;
using System.Threading.Tasks;
using chocolatey.infrastructure.app;
using chocolatey.infrastructure.app.configuration;
using chocolatey.infrastructure.app.nuget;
using chocolatey.infrastructure.filesystem;
using Chocolatey.NuGet.Frameworks;
using FluentAssertions;
using Moq;
using NuGet.Common;
using NuGet.Configuration;
using NuGet.Packaging;
using NuGet.Packaging.Core;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;
using NuGet.Versioning;
using FluentAssertions;
using chocolatey.infrastructure.app.services;
using chocolatey.infrastructure.registration;
using System.Diagnostics;

namespace chocolatey.tests.infrastructure.app.nuget
{
Expand Down
22 changes: 6 additions & 16 deletions src/chocolatey/infrastructure.app/nuget/NugetCommon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,43 +15,33 @@
// limitations under the License.

using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Security;
using System.Runtime.CompilerServices;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using chocolatey.infrastructure.adapters;
using Alphaleonis.Win32.Filesystem;
using Chocolatey.NuGet.Frameworks;
using chocolatey.infrastructure.configuration;
using chocolatey.infrastructure.app.configuration;
using chocolatey.infrastructure.app.domain;
using chocolatey.infrastructure.app.services;
using chocolatey.infrastructure.filesystem;
using chocolatey.infrastructure.logging;
using NuGet;
using chocolatey.infrastructure.information;
using chocolatey.infrastructure.registration;
using chocolatey.infrastructure.results;
using Chocolatey.NuGet.Frameworks;
using NuGet.Common;
using NuGet.Configuration;
using NuGet.Credentials;
using NuGet.PackageManagement;
using NuGet.Packaging;
using NuGet.Packaging.Core;
using NuGet.ProjectManagement;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;
using NuGet.Versioning;
using chocolatey.infrastructure.results;
using Console = chocolatey.infrastructure.adapters.Console;
using Environment = chocolatey.infrastructure.adapters.Environment;
using System.Collections.Concurrent;
using chocolatey.infrastructure.information;
using chocolatey.infrastructure.registration;
using chocolatey.infrastructure.app.services;

namespace chocolatey.infrastructure.app.nuget
{
Expand Down

0 comments on commit 1fd6951

Please sign in to comment.