DocSpace-buildtools/common/ASC.Common/GlobalUsings.cs

112 lines
4.2 KiB
C#
Raw Normal View History

2022-03-15 18:00:53 +00:00
// (c) Copyright Ascensio System SIA 2010-2022
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights.
//
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
global using System.Collections;
2022-01-26 10:42:30 +00:00
global using System.Collections.Concurrent;
global using System.Configuration;
global using System.Diagnostics;
global using System.Globalization;
2022-05-06 09:40:38 +00:00
global using System.Net;
2022-01-26 10:42:30 +00:00
global using System.Net.Mail;
global using System.Reflection;
2022-03-09 17:15:51 +00:00
global using System.Runtime.CompilerServices;
2022-01-26 10:42:30 +00:00
global using System.Runtime.Loader;
2022-03-05 08:20:05 +00:00
global using System.Runtime.Serialization;
2022-01-26 10:42:30 +00:00
global using System.Security.Cryptography;
2022-07-05 11:26:09 +00:00
global using System.Security.Principal;
2022-03-05 08:20:05 +00:00
global using System.ServiceModel;
2022-01-26 10:42:30 +00:00
global using System.Text;
2022-10-17 08:39:59 +00:00
global using System.Text.Json;
global using System.Text.Json.Serialization;
2022-01-26 10:42:30 +00:00
global using System.Text.RegularExpressions;
global using System.Web;
global using System.Xml.Linq;
global using System.Xml.XPath;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using ARSoft.Tools.Net;
global using ARSoft.Tools.Net.Dns;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using ASC.Common;
2022-03-10 11:19:53 +00:00
global using ASC.Common.Caching;
2022-01-26 10:42:30 +00:00
global using ASC.Common.DependencyInjection;
2022-05-06 09:40:38 +00:00
global using ASC.Common.Log;
2022-06-01 14:07:08 +00:00
global using ASC.Common.Mapping.PrimitiveTypeConverters;
2022-01-26 10:42:30 +00:00
global using ASC.Common.Security;
global using ASC.Common.Security.Authorizing;
2022-05-26 09:01:54 +00:00
global using ASC.Common.Threading;
2022-01-26 10:42:30 +00:00
global using ASC.Common.Utils;
global using ASC.Security.Cryptography;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using Autofac;
global using Autofac.Configuration;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using AutoMapper;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using Confluent.Kafka;
global using Confluent.Kafka.Admin;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using Google.Protobuf;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using JWT;
global using JWT.Algorithms;
global using JWT.Serializers;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using log4net.Util;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using Microsoft.AspNetCore.Cryptography.KeyDerivation;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Http.Extensions;
global using Microsoft.AspNetCore.Http.Features;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.AspNetCore.Mvc.Filters;
global using Microsoft.AspNetCore.WebUtilities;
global using Microsoft.Extensions.Caching.Distributed;
2022-01-26 10:42:30 +00:00
global using Microsoft.Extensions.Caching.Memory;
global using Microsoft.Extensions.Configuration;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.DependencyInjection.Extensions;
2022-06-24 13:23:56 +00:00
global using Microsoft.Extensions.Hosting;
2022-01-26 10:42:30 +00:00
global using Microsoft.Extensions.Logging;
global using Microsoft.Extensions.Options;
2022-05-24 15:41:28 +00:00
global using Microsoft.Extensions.Primitives;
2022-01-26 10:42:30 +00:00
global using Microsoft.Net.Http.Headers;
2022-03-05 08:20:05 +00:00
2022-07-05 11:26:09 +00:00
global using NetEscapades.EnumGenerators;
2022-01-26 10:42:30 +00:00
global using Newtonsoft.Json;
2022-03-05 08:20:05 +00:00
2022-01-26 10:42:30 +00:00
global using NVelocity;
global using NVelocity.App;
global using NVelocity.Runtime.Resource.Loader;
2022-03-05 08:20:05 +00:00
2022-04-14 19:42:15 +00:00
global using ProtoBuf;
2022-03-09 09:16:35 +00:00
global using RabbitMQ.Client;
global using RabbitMQ.Client.Events;
2022-04-14 19:42:15 +00:00
global using StackExchange.Redis.Extensions.Core.Abstractions;
2022-10-17 08:39:59 +00:00
global using ILogger = Microsoft.Extensions.Logging.ILogger;