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