184 lines
2.8 KiB
C#
184 lines
2.8 KiB
C#
|
|
global using System.IO.Compression;
|
|
global using Autofac.Extensions.DependencyInjection;
|
|
global using Azure.Core;
|
|
global using Azure.Identity;
|
|
global using HealthChecks.UI.Client;
|
|
global using IdentityModel;
|
|
global using Duende.IdentityServer;
|
|
global using Duende.IdentityServer.Configuration;
|
|
global using Duende.IdentityServer.Events;
|
|
global using Duende.IdentityServer.Extensions;
|
|
global using Duende.IdentityServer.Models;
|
|
global using Duende.IdentityServer.Services;
|
|
global using Duende.IdentityServer.Stores;
|
|
global using Duende.IdentityServer.Validation;
|
|
global using Microsoft.AspNetCore.Authentication;
|
|
global using Microsoft.AspNetCore.Authorization;
|
|
global using Microsoft.AspNetCore.Builder;
|
|
global using Microsoft.AspNetCore.Diagnostics.HealthChecks;
|
|
global using Microsoft.AspNetCore.Hosting;
|
|
global using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
global using Microsoft.AspNetCore.Identity;
|
|
global using Microsoft.AspNetCore.Mvc.Rendering;
|
|
global using Microsoft.AspNetCore.Mvc;
|
|
global using Microsoft.AspNetCore.Mvc.Filters;
|
|
global using Microsoft.AspNetCore;
|
|
global using Microsoft.EntityFrameworkCore.Design;
|
|
global using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
global using Microsoft.EntityFrameworkCore.Metadata;
|
|
global using Microsoft.EntityFrameworkCore.Migrations;
|
|
global using Microsoft.EntityFrameworkCore;
|
|
|
|
global using Microsoft.eShopOnContainers.Services.Identity.API;
|
|
global using Microsoft.eShopOnContainers.Services.Identity.API.Data;
|
|
global using Microsoft.eShopOnContainers.Services.Identity.API.Configuration;
|
|
global using Microsoft.eShopOnContainers.Services.Identity.API.Devspaces;
|
|
global using Microsoft.eShopOnContainers.Services.Identity.API.Models.AccountViewModels;
|
|
global using Microsoft.eShopOnContainers.Services.Identity.API.Models;
|
|
global using Microsoft.eShopOnContainers.Services.Identity.API.Services;
|
|
global using Microsoft.Extensions.Configuration;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using Microsoft.Extensions.Diagnostics.HealthChecks;
|
|
global using Microsoft.Extensions.Hosting;
|
|
global using Microsoft.Extensions.Logging;
|
|
global using Microsoft.Extensions.Options;
|
|
global using Polly;
|
|
global using StackExchange.Redis;
|
|
global using System.Collections.Generic;
|
|
global using System.ComponentModel.DataAnnotations;
|
|
global using System.Data.SqlClient;
|
|
global using System.IdentityModel.Tokens.Jwt;
|
|
global using System.IO;
|
|
global using System.Linq;
|
|
global using System.Reflection;
|
|
global using System.Security.Claims;
|
|
global using System.Security.Cryptography.X509Certificates;
|
|
global using System.Text.RegularExpressions;
|
|
global using System.Threading.Tasks;
|
|
global using System;
|
|
global using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|