{"id":18982394,"url":"https://github.com/dimitrietataru/csharp-global-using","last_synced_at":"2025-07-12T02:39:52.922Z","repository":{"id":59491964,"uuid":"537562857","full_name":"dimitrietataru/csharp-global-using","owner":"dimitrietataru","description":"C# Global Using templates","archived":false,"fork":false,"pushed_at":"2024-05-30T15:03:36.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"ace","last_synced_at":"2025-01-01T11:42:26.986Z","etag":null,"topics":["csharp","global-using","using"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dimitrietataru.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-16T17:45:15.000Z","updated_at":"2024-05-31T05:17:03.000Z","dependencies_parsed_at":"2025-01-01T11:42:19.403Z","dependency_job_id":"3e824477-4461-4d46-bccf-a279802df2b4","html_url":"https://github.com/dimitrietataru/csharp-global-using","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimitrietataru%2Fcsharp-global-using","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimitrietataru%2Fcsharp-global-using/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimitrietataru%2Fcsharp-global-using/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimitrietataru%2Fcsharp-global-using/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dimitrietataru","download_url":"https://codeload.github.com/dimitrietataru/csharp-global-using/tar.gz/refs/heads/ace","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239987022,"owners_count":19729727,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","global-using","using"],"created_at":"2024-11-08T16:13:21.686Z","updated_at":"2025-02-21T09:24:34.347Z","avatar_url":"https://github.com/dimitrietataru.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# C# Global Using templates\n\n## TLDR\n[GlobalUsings.cs](https://github.com/dimitrietataru/csharp-global-using/blob/ace/sample/GlobalUsing.Sample.Api/GlobalUsings.cs)\n\n## About Global Using directives\n* [Microsoft docs - What's new](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-10#global-using-directives)\n* [Microsoft docs - Specifications](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/globalusingdirective)\n* [C# Corner](https://www.c-sharpcorner.com/article/global-using-directive-in-c-sharp-102)\n* [Exploring C# 10: Global Using declarations - Dave Brock](https://www.daveabrock.com/2021/10/21/csharp-10-global-usings)\n* [Every feature added in C# 10 - Nick Chapsas](https://youtu.be/Vft4QDUpyWY?t=15)\n\n## Implicit Usings\n\n#### Configuration\n``` xml\n\u003cPropertyGroup\u003e\n  \u003cImplicitUsings\u003eenable\u003c/ImplicitUsings\u003e\n\u003c/PropertyGroup\u003e\n```\n\n#### Auto-generated code at _/obj/Debug/net6.0/GlobalUsings.g.cs_\n``` csharp\nglobal using global::Microsoft.AspNetCore.Builder;\nglobal using global::Microsoft.AspNetCore.Hosting;\nglobal using global::Microsoft.AspNetCore.Http;\nglobal using global::Microsoft.AspNetCore.Routing;\nglobal using global::Microsoft.Extensions.Configuration;\nglobal using global::Microsoft.Extensions.DependencyInjection;\nglobal using global::Microsoft.Extensions.Hosting;\nglobal using global::Microsoft.Extensions.Logging;\nglobal using global::System;\nglobal using global::System.Collections.Generic;\nglobal using global::System.IO;\nglobal using global::System.Linq;\nglobal using global::System.Net.Http;\nglobal using global::System.Net.Http.Json;\nglobal using global::System.Threading;\nglobal using global::System.Threading.Tasks;\n```\n\n---\n\n#### Configuration\n``` xml\n\u003cPropertyGroup\u003e\n  \u003cImplicitUsings\u003edisable\u003c/ImplicitUsings\u003e\n\u003c/PropertyGroup\u003e\n\n\u003cItemGroup\u003e\n  \u003cUsing Include=\"System\"/\u003e\n\u003c/ItemGroup\u003e\n```\n\n#### Auto-generated code at _/obj/Debug/net6.0/GlobalUsings.g.cs_\n``` csharp\nglobal using global::System;\n```\n\n## Templates\n\n``` csharp\n#pragma warning disable IDE0005 // Using directive is unnecessary\n```\n\n#### Common _System.*_ namespaces\n``` csharp\nglobal using System;\nglobal using System.Collections;\nglobal using System.Collections.Concurrent;\nglobal using System.Collections.Generic;\nglobal using System.Collections.Immutable;\nglobal using System.ComponentModel.DataAnnotations;\nglobal using System.ComponentModel.DataAnnotations.Schema;\nglobal using System.Diagnostics;\nglobal using System.Globalization;\nglobal using System.IO;\nglobal using System.Linq;\nglobal using System.Net;\nglobal using System.Net.Http;\nglobal using System.Net.Http.Json;\nglobal using System.Net.Security;\nglobal using System.Reflection;\nglobal using System.Security;\nglobal using System.Security.Authentication;\nglobal using System.Security.Cryptography;\nglobal using System.Security.Cryptography.X509Certificates;\nglobal using System.Text;\nglobal using System.Text.Encodings.Web;\nglobal using System.Text.Json;\nglobal using System.Text.Json.Serialization;\nglobal using System.Text.RegularExpressions;\nglobal using System.Threading;\nglobal using System.Threading.Tasks;\nglobal using System.Timers;\nglobal using System.Web;\n```\n\n\u003cdetails\u003e\n  \u003csummary\u003e All System namespaces \u003c/summary\u003e\n\n``` csharp\nglobal using System;\n\nglobal using System.Buffers;\nglobal using System.Buffers.Binary;\nglobal using System.Buffers.Text;\n\nglobal using System.CodeDom;\nglobal using System.CodeDom.Compiler;\n\nglobal using System.Collections;\nglobal using System.Collections.Concurrent;\nglobal using System.Collections.Generic;\nglobal using System.Collections.Immutable;\nglobal using System.Collections.ObjectModel;\nglobal using System.Collections.Specialized;\n\nglobal using System.ComponentModel;\nglobal using System.ComponentModel.DataAnnotations;\nglobal using System.ComponentModel.DataAnnotations.Schema;\nglobal using System.ComponentModel.Design;\nglobal using System.ComponentModel.Design.Serialization;\n\nglobal using System.Configuration;\nglobal using System.Configuration.Assemblies;\n\nglobal using System.Data;\nglobal using System.Data.Common;\nglobal using System.Data.SqlTypes;\n\nglobal using System.Diagnostics;\nglobal using System.Diagnostics.CodeAnalysis;\nglobal using System.Diagnostics.Contracts;\nglobal using System.Diagnostics.Eventing;\nglobal using System.Diagnostics.Metrics;\nglobal using System.Diagnostics.SymbolStore;\nglobal using System.Diagnostics.Tracing;\n\nglobal using System.Drawing;\n\nglobal using System.Dynamic;\n\nglobal using System.Formats;\nglobal using System.Formats.Asn1;\n\nglobal using System.Globalization;\n\nglobal using System.IO;\n\nglobal using System.Linq;\nglobal using System.Linq.Expressions;\n\nglobal using System.Net;\nglobal using System.Net.Cache;\nglobal using System.Net.Http;\nglobal using System.Net.Http.Headers;\nglobal using System.Net.Http.Json;\nglobal using System.Net.Mail;\nglobal using System.Net.Mime;\nglobal using System.Net.NetworkInformation;\nglobal using System.Net.Security;\nglobal using System.Net.Sockets;\nglobal using System.Net.WebSockets;\n\nglobal using System.Numerics;\n\nglobal using System.Reflection;\nglobal using System.Reflection.Emit;\nglobal using System.Reflection.Metadata;\nglobal using System.Reflection.Metadata.Ecma335;\nglobal using System.Reflection.PortableExecutable;\n\nglobal using System.Resources;\n\nglobal using System.Runtime;\nglobal using System.Runtime.CompilerServices;\nglobal using System.Runtime.ConstrainedExecution;\nglobal using System.Runtime.ExceptionServices;\nglobal using System.Runtime.InteropServices;\nglobal using System.Runtime.InteropServices.ComTypes;\nglobal using System.Runtime.InteropServices.ObjectiveC;\nglobal using System.Runtime.Intrinsics;\nglobal using System.Runtime.Intrinsics.Arm;\nglobal using System.Runtime.Intrinsics.X86;\nglobal using System.Runtime.Loader;\nglobal using System.Runtime.Remoting;\nglobal using System.Runtime.Serialization;\nglobal using System.Runtime.Serialization.Formatters;\nglobal using System.Runtime.Serialization.Formatters.Binary;\nglobal using System.Runtime.Serialization.Json;\nglobal using System.Runtime.Versioning;\n\nglobal using System.Security;\nglobal using System.Security.AccessControl;\nglobal using System.Security.Authentication;\nglobal using System.Security.Authentication.ExtendedProtection;\nglobal using System.Security.Claims;\nglobal using System.Security.Cryptography;\nglobal using System.Security.Cryptography.X509Certificates;\nglobal using System.Security.Cryptography.Xml;\nglobal using System.Security.Permissions;\nglobal using System.Security.Policy;\nglobal using System.Security.Principal;\n\nglobal using System.Security;\nglobal using System.Security.AccessControl;\nglobal using System.Security.Authentication;\nglobal using System.Security.Authentication.ExtendedProtection;\nglobal using System.Security.Claims;\nglobal using System.Security.Cryptography;\nglobal using System.Security.Cryptography.X509Certificates;\nglobal using System.Security.Cryptography.Xml;\nglobal using System.Security.Permissions;\nglobal using System.Security.Policy;\nglobal using System.Security.Principal;\n\nglobal using System.Text;\nglobal using System.Text.Encodings;\nglobal using System.Text.Encodings.Web;\nglobal using System.Text.Json;\nglobal using System.Text.Json.Nodes;\nglobal using System.Text.Json.Serialization;\nglobal using System.Text.Json.Serialization.Metadata;\nglobal using System.Text.RegularExpressions;\nglobal using System.Text.Unicode;\n\nglobal using System.Threading;\nglobal using System.Threading.Channels;\nglobal using System.Threading.Tasks;\nglobal using System.Threading.Tasks.Dataflow;\nglobal using System.Threading.Tasks.Sources;\n\nglobal using System.Timers;\n\nglobal using System.Transactions;\n\nglobal using System.Web;\n\nglobal using System.Windows;\nglobal using System.Windows.Input;\nglobal using System.Windows.Markup;\n\nglobal using System.Xml;\nglobal using System.Xml.Linq;\nglobal using System.Xml.Resolvers;\nglobal using System.Xml.Schema;\nglobal using System.Xml.Serialization;\nglobal using System.Xml.XPath;\nglobal using System.Xml.Xsl;\n```\n\n\u003c/details\u003e\n\n---\n\n#### Common _Microsoft.AspNetCore.*_ namespaces\n``` csharp\nglobal using Microsoft.AspNetCore;\nglobal using Microsoft.AspNetCore.Authentication;\nglobal using Microsoft.AspNetCore.Authorization;\nglobal using Microsoft.AspNetCore.Builder;\nglobal using Microsoft.AspNetCore.Cors.Infrastructure;\nglobal using Microsoft.AspNetCore.Diagnostics.HealthChecks;\nglobal using Microsoft.AspNetCore.Hosting;\nglobal using Microsoft.AspNetCore.Http;\nglobal using Microsoft.AspNetCore.Identity;\nglobal using Microsoft.AspNetCore.Localization;\nglobal using Microsoft.AspNetCore.Mvc;\nglobal using Microsoft.AspNetCore.Rewrite;\nglobal using Microsoft.AspNetCore.Routing;\nglobal using Microsoft.AspNetCore.SignalR;\n```\n\n\u003cdetails\u003e\n  \u003csummary\u003e All Microsoft.AspNetCore namespaces \u003c/summary\u003e\n\n``` csharp\nglobal using Microsoft.AspNetCore;\n\nglobal using Microsoft.AspNetCore.Antiforgery;\n\nglobal using Microsoft.AspNetCore.Authentication;\nglobal using Microsoft.AspNetCore.Authentication.Cookies;\nglobal using Microsoft.AspNetCore.Authentication.OAuth;\nglobal using Microsoft.AspNetCore.Authentication.OAuth.Claims;\n\nglobal using Microsoft.AspNetCore.Authorization;\nglobal using Microsoft.AspNetCore.Authorization.Infrastructure;\nglobal using Microsoft.AspNetCore.Authorization.Policy;\n\nglobal using Microsoft.AspNetCore.Builder;\nglobal using Microsoft.AspNetCore.Builder.Extensions;\n\nglobal using Microsoft.AspNetCore.Components;\nglobal using Microsoft.AspNetCore.Components.Authorization;\nglobal using Microsoft.AspNetCore.Components.CompilerServices;\nglobal using Microsoft.AspNetCore.Components.Forms;\nglobal using Microsoft.AspNetCore.Components.Infrastructure;\nglobal using Microsoft.AspNetCore.Components.Rendering;\nglobal using Microsoft.AspNetCore.Components.RenderTree;\nglobal using Microsoft.AspNetCore.Components.Routing;\nglobal using Microsoft.AspNetCore.Components.Server;\nglobal using Microsoft.AspNetCore.Components.Server.Circuits;\nglobal using Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage;\nglobal using Microsoft.AspNetCore.Components.Web;\nglobal using Microsoft.AspNetCore.Components.Web.Infrastructure;\nglobal using Microsoft.AspNetCore.Components.Web.Virtualization;\n\nglobal using Microsoft.AspNetCore.Connections;\nglobal using Microsoft.AspNetCore.Connections.Features;\n\nglobal using Microsoft.AspNetCore.CookiePolicy;\n\nglobal using Microsoft.AspNetCore.Cors;\nglobal using Microsoft.AspNetCore.Cors.Infrastructure;\n\nglobal using Microsoft.AspNetCore.Cryptography;\nglobal using Microsoft.AspNetCore.Cryptography.KeyDerivation;\n\nglobal using Microsoft.AspNetCore.DataProtection;\nglobal using Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption;\nglobal using Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel;\nglobal using Microsoft.AspNetCore.DataProtection.Infrastructure;\nglobal using Microsoft.AspNetCore.DataProtection.Internal;\nglobal using Microsoft.AspNetCore.DataProtection.KeyManagement;\nglobal using Microsoft.AspNetCore.DataProtection.KeyManagement.Internal;\nglobal using Microsoft.AspNetCore.DataProtection.Repositories;\nglobal using Microsoft.AspNetCore.DataProtection.XmlEncryption;\n\nglobal using Microsoft.AspNetCore.Diagnostics;\nglobal using Microsoft.AspNetCore.Diagnostics.HealthChecks;\n\nglobal using Microsoft.AspNetCore.HostFiltering;\n\nglobal using Microsoft.AspNetCore.Hosting;\nglobal using Microsoft.AspNetCore.Hosting.Builder;\nglobal using Microsoft.AspNetCore.Hosting.Infrastructure;\nglobal using Microsoft.AspNetCore.Hosting.Server;\nglobal using Microsoft.AspNetCore.Hosting.Server.Abstractions;\nglobal using Microsoft.AspNetCore.Hosting.Server.Features;\nglobal using Microsoft.AspNetCore.Hosting.StaticWebAssets;\n\nglobal using Microsoft.AspNetCore.Html;\n\nglobal using Microsoft.AspNetCore.Http;\n\nglobal using Microsoft.AspNetCore.HttpLogging;\n\nglobal using Microsoft.AspNetCore.HttpOverrides;\n\nglobal using Microsoft.AspNetCore.HttpsPolicy;\n\nglobal using Microsoft.AspNetCore.Identity;\n\nglobal using Microsoft.AspNetCore.Localization;\nglobal using Microsoft.AspNetCore.Localization.Routing;\n\nglobal using Microsoft.AspNetCore.Mvc;\nglobal using Microsoft.AspNetCore.Mvc.Abstractions;\nglobal using Microsoft.AspNetCore.Mvc.ActionConstraints;\nglobal using Microsoft.AspNetCore.Mvc.ApiExplorer;\nglobal using Microsoft.AspNetCore.Mvc.ApplicationModels;\nglobal using Microsoft.AspNetCore.Mvc.ApplicationParts;\nglobal using Microsoft.AspNetCore.Mvc.Authorization;\nglobal using Microsoft.AspNetCore.Mvc.Controllers;\nglobal using Microsoft.AspNetCore.Mvc.Core;\nglobal using Microsoft.AspNetCore.Mvc.Core.Infrastructure;\nglobal using Microsoft.AspNetCore.Mvc.Localization;\nglobal using Microsoft.AspNetCore.Mvc.ModelBinding;\nglobal using Microsoft.AspNetCore.Mvc.ModelBinding.Binders;\nglobal using Microsoft.AspNetCore.Mvc.ModelBinding.Metadata;\nglobal using Microsoft.AspNetCore.Mvc.ModelBinding.Validation;\nglobal using Microsoft.AspNetCore.Mvc.Razor;\nglobal using Microsoft.AspNetCore.Mvc.Razor.Compilation;\nglobal using Microsoft.AspNetCore.Mvc.Razor.Infrastructure;\nglobal using Microsoft.AspNetCore.Mvc.Razor.Internal;\nglobal using Microsoft.AspNetCore.Mvc.Razor.TagHelpers;\nglobal using Microsoft.AspNetCore.Mvc.RazorPages;\nglobal using Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure;\nglobal using Microsoft.AspNetCore.Mvc.Rendering;\nglobal using Microsoft.AspNetCore.Mvc.Routing;\nglobal using Microsoft.AspNetCore.Mvc.TagHelpers;\nglobal using Microsoft.AspNetCore.Mvc.TagHelpers.Cache;\nglobal using Microsoft.AspNetCore.Mvc.ViewComponents;\nglobal using Microsoft.AspNetCore.Mvc.ViewEngines;\nglobal using Microsoft.AspNetCore.Mvc.ViewFeatures;\nglobal using Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers;\nglobal using Microsoft.AspNetCore.Mvc.ViewFeatures.Infrastructure;\n\nglobal using Microsoft.AspNetCore.Razor;\nglobal using Microsoft.AspNetCore.Razor.Hosting;\nglobal using Microsoft.AspNetCore.Razor.Runtime;\nglobal using Microsoft.AspNetCore.Razor.Runtime.TagHelpers;\nglobal using Microsoft.AspNetCore.Razor.TagHelpers;\n\nglobal using Microsoft.AspNetCore.ResponseCaching;\n\nglobal using Microsoft.AspNetCore.ResponseCompression;\n\nglobal using Microsoft.AspNetCore.Rewrite;\n\nglobal using Microsoft.AspNetCore.Routing;\nglobal using Microsoft.AspNetCore.Routing.Constraints;\nglobal using Microsoft.AspNetCore.Routing.Internal;\nglobal using Microsoft.AspNetCore.Routing.Matching;\nglobal using Microsoft.AspNetCore.Routing.Patterns;\nglobal using Microsoft.AspNetCore.Routing.Template;\nglobal using Microsoft.AspNetCore.Routing.Tree;\n\nglobal using Microsoft.AspNetCore.Server;\nglobal using Microsoft.AspNetCore.Server.HttpSys;\nglobal using Microsoft.AspNetCore.Server.IIS;\nglobal using Microsoft.AspNetCore.Server.IIS.Core;\nglobal using Microsoft.AspNetCore.Server.IISIntegration;\nglobal using Microsoft.AspNetCore.Server.Kestrel;\nglobal using Microsoft.AspNetCore.Server.Kestrel.Core;\nglobal using Microsoft.AspNetCore.Server.Kestrel.Core.Features;\nglobal using Microsoft.AspNetCore.Server.Kestrel.Core.Internal;\nglobal using Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http;\nglobal using Microsoft.AspNetCore.Server.Kestrel.Https;\nglobal using Microsoft.AspNetCore.Server.Kestrel.Transport;\nglobal using Microsoft.AspNetCore.Server.Kestrel.Transport.Quic;\nglobal using Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets;\n\nglobal using Microsoft.AspNetCore.Session;\n\nglobal using Microsoft.AspNetCore.SignalR;\nglobal using Microsoft.AspNetCore.SignalR.Protocol;\n\nglobal using Microsoft.AspNetCore.StaticFiles;\nglobal using Microsoft.AspNetCore.StaticFiles.Infrastructure;\n\nglobal using Microsoft.AspNetCore.WebSockets;\n\nglobal using Microsoft.AspNetCore.WebUtilities;\n```\n\n\u003c/details\u003e\n\n---\n\n#### Common _Microsoft.Extensions.*_ namespaces\n``` csharp\nglobal using Microsoft.Extensions;\nglobal using Microsoft.Extensions.Caching.Memory;\nglobal using Microsoft.Extensions.Configuration;\nglobal using Microsoft.Extensions.DependencyInjection;\nglobal using Microsoft.Extensions.DependencyInjection.Extensions;\nglobal using Microsoft.Extensions.Diagnostics.HealthChecks;\nglobal using Microsoft.Extensions.Hosting;\nglobal using Microsoft.Extensions.Http;\nglobal using Microsoft.Extensions.Localization;\nglobal using Microsoft.Extensions.Logging;\nglobal using Microsoft.Extensions.Options;\nglobal using Microsoft.Extensions.Primitives;\n```\n\n\u003cdetails\u003e\n  \u003csummary\u003e All Microsoft.Extensions namespaces \u003c/summary\u003e\n\n``` csharp\nglobal using Microsoft.Extensions;\n\nglobal using Microsoft.Extensions.Caching;\nglobal using Microsoft.Extensions.Caching.Distributed;\nglobal using Microsoft.Extensions.Caching.Memory;\n\nglobal using Microsoft.Extensions.Configuration;\nglobal using Microsoft.Extensions.Configuration.CommandLine;\nglobal using Microsoft.Extensions.Configuration.EnvironmentVariables;\nglobal using Microsoft.Extensions.Configuration.Ini;\nglobal using Microsoft.Extensions.Configuration.Json;\nglobal using Microsoft.Extensions.Configuration.KeyPerFile;\nglobal using Microsoft.Extensions.Configuration.Memory;\nglobal using Microsoft.Extensions.Configuration.UserSecrets;\nglobal using Microsoft.Extensions.Configuration.Xml;\n\nglobal using Microsoft.Extensions.DependencyInjection;\nglobal using Microsoft.Extensions.DependencyInjection.Extensions;\n\nglobal using Microsoft.Extensions.Diagnostics;\nglobal using Microsoft.Extensions.Diagnostics.HealthChecks;\n\nglobal using Microsoft.Extensions.FileProviders;\nglobal using Microsoft.Extensions.FileProviders.Composite;\nglobal using Microsoft.Extensions.FileProviders.Embedded;\nglobal using Microsoft.Extensions.FileProviders.Internal;\nglobal using Microsoft.Extensions.FileProviders.Physical;\n\nglobal using Microsoft.Extensions.FileSystemGlobbing;\nglobal using Microsoft.Extensions.FileSystemGlobbing.Abstractions;\nglobal using Microsoft.Extensions.FileSystemGlobbing.Internal;\nglobal using Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;\nglobal using Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;\nglobal using Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns;\n\nglobal using Microsoft.Extensions.Hosting;\nglobal using Microsoft.Extensions.Hosting.Internal;\n\nglobal using Microsoft.Extensions.Http;\nglobal using Microsoft.Extensions.Http.Logging;\n\nglobal using Microsoft.Extensions.Internal;\n\nglobal using Microsoft.Extensions.Localization;\n\nglobal using Microsoft.Extensions.Logging;\nglobal using Microsoft.Extensions.Logging.Abstractions;\nglobal using Microsoft.Extensions.Logging.Configuration;\nglobal using Microsoft.Extensions.Logging.Console;\nglobal using Microsoft.Extensions.Logging.Debug;\nglobal using Microsoft.Extensions.Logging.EventLog;\nglobal using Microsoft.Extensions.Logging.EventSource;\nglobal using Microsoft.Extensions.Logging.TraceSource;\n\nglobal using Microsoft.Extensions.ObjectPool;\n\nglobal using Microsoft.Extensions.Options;\n\nglobal using Microsoft.Extensions.Primitives;\n\nglobal using Microsoft.Extensions.WebEncoders;\nglobal using Microsoft.Extensions.WebEncoders.Testing;\n```\n\n\u003c/details\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimitrietataru%2Fcsharp-global-using","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdimitrietataru%2Fcsharp-global-using","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimitrietataru%2Fcsharp-global-using/lists"}