You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
892 B
26 lines
892 B
// Global using directives
|
|
|
|
global using System;
|
|
global using System.Collections.Generic;
|
|
global using System.ComponentModel.DataAnnotations;
|
|
global using System.Linq;
|
|
global using System.Threading;
|
|
global using System.Threading.Tasks;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using Volo.Abp;
|
|
global using Volo.Abp.Caching;
|
|
global using Volo.Abp.Data;
|
|
global using Volo.Abp.DependencyInjection;
|
|
global using Volo.Abp.Domain;
|
|
global using Volo.Abp.Domain.Entities.Auditing;
|
|
global using Volo.Abp.Domain.Entities.Events;
|
|
global using Volo.Abp.Domain.Repositories;
|
|
global using Volo.Abp.Domain.Services;
|
|
global using Volo.Abp.EventBus;
|
|
global using Volo.Abp.EventBus.Distributed;
|
|
global using Volo.Abp.Guids;
|
|
global using Volo.Abp.Modularity;
|
|
global using Volo.Abp.MultiTenancy;
|
|
global using Volo.Abp.ObjectMapping;
|
|
global using Volo.Abp.Settings;
|
|
global using Volo.Abp.Uow;
|