From 4c07bf36780adabb19f7d1cb36f19358ac187c3d Mon Sep 17 00:00:00 2001 From: colin Date: Mon, 7 Jul 2025 11:55:52 +0800 Subject: [PATCH] fix(gateway): Remove invalid package references --- .../InternalGatewayModule.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/src/LINGYUN.MicroService.Internal.Gateway/InternalGatewayModule.cs b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/src/LINGYUN.MicroService.Internal.Gateway/InternalGatewayModule.cs index d326c9149..e2bc0696c 100644 --- a/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/src/LINGYUN.MicroService.Internal.Gateway/InternalGatewayModule.cs +++ b/gateways/internal/LINGYUN.MicroService.Internal.ApiGateway/src/LINGYUN.MicroService.Internal.Gateway/InternalGatewayModule.cs @@ -1,25 +1,20 @@ -using Autofac.Core; -using DeviceDetectorNET.Parser.Device; -using LINGYUN.Abp.AspNetCore.Mvc.Wrapper; +using LINGYUN.Abp.AspNetCore.Mvc.Wrapper; using LINGYUN.Abp.Serilog.Enrichers.Application; using LINGYUN.Abp.Serilog.Enrichers.UniqueId; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Cors; using Microsoft.AspNetCore.DataProtection; -using Microsoft.AspNetCore.Rewrite; using Microsoft.AspNetCore.WebSockets; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; -using Microsoft.IdentityModel.Logging; using Microsoft.OpenApi.Models; using StackExchange.Redis; using System; using System.Collections.Generic; using System.Linq; -using System.Threading.Tasks; using Volo.Abp; using Volo.Abp.AspNetCore.Mvc; using Volo.Abp.AspNetCore.Mvc.ApiExploring; @@ -30,7 +25,6 @@ using Volo.Abp.Data; using Volo.Abp.Modularity; using Volo.Abp.Swashbuckle; using Yarp.ReverseProxy.Configuration; -using Yarp.Telemetry.Consumption; namespace LINGYUN.MicroService.Internal.Gateway;