From 79130fd64bcb00384dcd65fb708d64645bf54719 Mon Sep 17 00:00:00 2001 From: movingsam Date: Sun, 1 Mar 2026 01:10:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A6=81=E7=94=A8=E9=BB=98=E8=AE=A4Embe?= =?UTF-8?q?ddedResource=E6=89=AB=E6=8F=8F=20=E8=A7=A3=E5=86=B3.NET=2010=20?= =?UTF-8?q?MSB3552=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Fengling.Platform.Domain/Fengling.Platform.Domain.csproj | 1 + .../Fengling.Platform.Infrastructure.csproj | 2 +- Fengling.Platform.Infrastructure/GlobalUsings.cs | 6 ------ Fengling.Platform.Infrastructure/TenantStore.cs | 5 ++--- 4 files changed, 4 insertions(+), 10 deletions(-) diff --git a/Fengling.Platform.Domain/Fengling.Platform.Domain.csproj b/Fengling.Platform.Domain/Fengling.Platform.Domain.csproj index 1e1117c..279d7c9 100644 --- a/Fengling.Platform.Domain/Fengling.Platform.Domain.csproj +++ b/Fengling.Platform.Domain/Fengling.Platform.Domain.csproj @@ -5,6 +5,7 @@ enable enable true + false diff --git a/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj b/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj index 5fd2bf2..c41dc5a 100644 --- a/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj +++ b/Fengling.Platform.Infrastructure/Fengling.Platform.Infrastructure.csproj @@ -5,11 +5,11 @@ enable enable true + false - diff --git a/Fengling.Platform.Infrastructure/GlobalUsings.cs b/Fengling.Platform.Infrastructure/GlobalUsings.cs index 1aba05f..bfe4ed2 100644 --- a/Fengling.Platform.Infrastructure/GlobalUsings.cs +++ b/Fengling.Platform.Infrastructure/GlobalUsings.cs @@ -1,7 +1 @@ -global using NetCorePal.Extensions.Domain; -global using NetCorePal.Extensions.Primitives; -global using NetCorePal.Extensions.Repository; -global using NetCorePal.Extensions.Repository.EntityFrameworkCore; -global using MediatR; global using Microsoft.EntityFrameworkCore; -global using Microsoft.EntityFrameworkCore.Metadata.Builders; diff --git a/Fengling.Platform.Infrastructure/TenantStore.cs b/Fengling.Platform.Infrastructure/TenantStore.cs index b464278..850098a 100644 --- a/Fengling.Platform.Infrastructure/TenantStore.cs +++ b/Fengling.Platform.Infrastructure/TenantStore.cs @@ -1,8 +1,7 @@ +using Microsoft.AspNetCore.Identity; +using Fengling.Platform.Domain.AggregatesModel.TenantAggregate; namespace Fengling.Platform.Infrastructure; -using Microsoft.AspNetCore.Identity; -using Microsoft.EntityFrameworkCore; -using Fengling.Platform.Domain.AggregatesModel.TenantAggregate; public class TenantStore : ITenantStore where TContext : PlatformDbContext