From d04f6bca41cac6416b6291fa207678de814b61fd Mon Sep 17 00:00:00 2001 From: Lamparter Date: Thu, 5 Sep 2024 08:19:53 +0100 Subject: [PATCH] =?UTF-8?q?=E2=8F=AA=EF=B8=8F=20Revert=20changes=20to=20or?= =?UTF-8?q?ganised=20import=20statements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/FluentHub.Octokit/GlobalUsings.cs | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/FluentHub.Octokit/GlobalUsings.cs b/src/FluentHub.Octokit/GlobalUsings.cs index cd450e2f4..964aefb98 100644 --- a/src/FluentHub.Octokit/GlobalUsings.cs +++ b/src/FluentHub.Octokit/GlobalUsings.cs @@ -1,19 +1,23 @@ // Copyright (c) 2022-2024 0x5BFA // Licensed under the MIT License. See the LICENSE. -global using global::FluentHub.Octokit.Models.v3; -global using global::FluentHub.Octokit.Models.v4; -global using global::FluentHub.Octokit.Models.v4Custom; -global using global::Humanizer; -global using global::Newtonsoft.Json; -global using global::Newtonsoft.Json.Converters; -global using global::Octokit.GraphQL; +// Default usings global using global::System; global using global::System.Collections.Generic; global using global::System.Linq; +global using global::System.Linq.Expressions; global using global::System.Runtime.Serialization; global using global::System.Text; global using global::System.Threading.Tasks; +global using global::Newtonsoft.Json; +global using global::Newtonsoft.Json.Converters; + +// Custom usings +global using global::FluentHub.Octokit.Models.v3; +global using global::FluentHub.Octokit.Models.v4; +global using global::FluentHub.Octokit.Models.v4Custom; +global using global::Humanizer; +global using global::Octokit.GraphQL; +global using OctokitV3 = global::Octokit; global using OctokitGraphQLCore = global::Octokit.GraphQL.Core; global using OctokitGraphQLModel = global::Octokit.GraphQL.Model; -global using OctokitV3 = global::Octokit;