Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
joelverhagen committed May 29, 2024
1 parent 61bce70 commit 10961c5
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions src/NuGet.PackageLifeCycle/Commands/DeprecateCommand.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Microsoft.Extensions.Logging;
using System.CommandLine;
using System.CommandLine.Invocation;
using Microsoft.Extensions.Logging;
using NuGet.Configuration;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;
using NuGet.Versioning;
using System.CommandLine;
using System.CommandLine.Invocation;

namespace NuGet.PackageLifeCycle;

Expand Down Expand Up @@ -595,4 +595,4 @@ private static bool IsNuGetOrg(string? url, out string? host)
|| parsed.Host.EndsWith(".nugettest.org", StringComparison.OrdinalIgnoreCase);
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Serilog.Events;
using System.CommandLine;
using Serilog.Events;

namespace NuGet.PackageLifeCycle;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Text;
using System.Text;

public static class HttpMessageExtensions
{
Expand Down Expand Up @@ -120,4 +120,4 @@ private static async Task AppendHeadersAndBody(
}
}
}
}
}
2 changes: 1 addition & 1 deletion src/NuGet.PackageLifeCycle/Extensions/LoggerExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging;

namespace NuGet.PackageLifeCycle;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Microsoft.Extensions.DependencyInjection;
using System.CommandLine.Parsing;
using Microsoft.Extensions.DependencyInjection;
using Serilog;
using Serilog.Events;
using Serilog.Exceptions;
using System.CommandLine.Parsing;

public static class ServiceCollectionExtensions
{
Expand Down
8 changes: 4 additions & 4 deletions src/NuGet.PackageLifeCycle/Program.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using NuGet.Protocol.Core.Types;
using Serilog;
using System.CommandLine;
using System.CommandLine.Builder;
using System.CommandLine.Hosting;
using System.CommandLine.Parsing;
using System.Runtime.InteropServices;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using NuGet.Protocol.Core.Types;
using Serilog;

namespace NuGet.PackageLifeCycle;

Expand Down
2 changes: 1 addition & 1 deletion src/NuGet.PackageLifeCycle/Services/DeprecationRequest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Text.Json.Serialization;
using System.Text.Json.Serialization;

namespace NuGet.PackageLifeCycle;

Expand Down
8 changes: 4 additions & 4 deletions src/NuGet.PackageLifeCycle/Services/DeprecationService.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Microsoft.Extensions.Logging;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;
using System.Net;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;
using Microsoft.Extensions.Logging;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;

namespace NuGet.PackageLifeCycle;

Expand Down Expand Up @@ -137,7 +137,7 @@ public async Task<bool> DeprecateAsync(

return false;
}

}

private async Task<string> GetHttpSessionStringAsync(HttpResponseMessage response, HttpContent? requestContentOverride)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NuGet.Common;
using NuGet.Common;
using StandardLogLevel = Microsoft.Extensions.Logging.LogLevel;

namespace NuGet.PackageLifeCycle;
Expand Down

0 comments on commit 10961c5

Please sign in to comment.