feat: 添加多租户搭建

This commit is contained in:
陈淳
2023-02-28 15:44:40 +08:00
parent 33616de6c8
commit 964b8aa5f6
4 changed files with 26 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Core.CurrentUsers.Accessor;
namespace Yi.Framework.AspNetCore.CurrentUser
namespace Yi.Framework.Core.CurrentUsers.Accessor
{
public class HttpContextCurrentPrincipalAccessor : ThreadCurrentPrincipalAccessor
{

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,7 @@
namespace Yi.Framework.MultiTenancy
{
public class YiFrameworkMultiTenancyModule
{
}
}