File tree 19 files changed +27
-32
lines changed
BuildingBlocks/Isolation/Masa.BuildingBlocks.Isolation
Masa.Contrib.Isolation.MultiEnvironment
Masa.Contrib.Isolation.MultiTenant
Masa.Contrib.Isolation.MultiEnvironment.Tests
Masa.Contrib.Isolation.MultiTenant.Tests
Masa.Contrib.Isolation.Tests
Masa.Contrib.Isolation.UoW.EFCore
Masa.Contrib.Isolation.UoW.EFCore.Tests
Masa.Contrib.Isolation.UoW.EFCore.Web.Tests
19 files changed +27
-32
lines changed Original file line number Diff line number Diff line change 8
8
9
9
<ItemGroup >
10
10
<PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" $(MicrosoftPackageVersion)" />
11
- <FrameworkReference Include =" Microsoft.AspNetCore.App" />
11
+ <FrameworkReference Include =" Microsoft.AspNetCore.App" />
12
12
</ItemGroup >
13
13
14
14
<ItemGroup >
Original file line number Diff line number Diff line change 1
1
// Copyright (c) MASA Stack All rights reserved.
2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
- namespace Masa . BuildingBlocks . Isolation . Middleware ;
4
+ // ReSharper disable once CheckNamespace
5
+
6
+ namespace Masa . BuildingBlocks . Isolation ;
5
7
6
8
public interface IIsolationMiddleware
7
9
{
Original file line number Diff line number Diff line change 1
1
// Copyright (c) MASA Stack All rights reserved.
2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
- namespace Masa . BuildingBlocks . Isolation . Environment ;
4
+ // ReSharper disable once CheckNamespace
5
+
6
+ namespace Masa . BuildingBlocks . Isolation ;
5
7
6
8
public interface IEnvironmentContext
7
9
{
Original file line number Diff line number Diff line change 1
1
// Copyright (c) MASA Stack All rights reserved.
2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
- namespace Masa . BuildingBlocks . Isolation . Environment ;
4
+ // ReSharper disable once CheckNamespace
5
+
6
+ namespace Masa . BuildingBlocks . Isolation ;
5
7
6
8
public interface IEnvironmentSetter
7
9
{
Original file line number Diff line number Diff line change 1
1
// Copyright (c) MASA Stack All rights reserved.
2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
- namespace Masa . BuildingBlocks . Isolation . Environment ;
4
+ // ReSharper disable once CheckNamespace
5
+
6
+ namespace Masa . BuildingBlocks . Isolation ;
5
7
6
8
public interface IMultiEnvironment
7
9
{
Original file line number Diff line number Diff line change 1
1
// Copyright (c) MASA Stack All rights reserved.
2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
- namespace Masa . BuildingBlocks . Isolation . MultiTenant ;
4
+ // ReSharper disable once CheckNamespace
5
+
6
+ namespace Masa . BuildingBlocks . Isolation ;
5
7
6
8
public interface IMultiTenant : IMultiTenant < Guid >
7
9
{
Original file line number Diff line number Diff line change 1
1
// Copyright (c) MASA Stack All rights reserved.
2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
- namespace Masa . BuildingBlocks . Isolation . MultiTenant ;
4
+ // ReSharper disable once CheckNamespace
5
+
6
+ namespace Masa . BuildingBlocks . Isolation ;
5
7
6
8
public interface ITenantContext
7
9
{
Original file line number Diff line number Diff line change 1
1
// Copyright (c) MASA Stack All rights reserved.
2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
- namespace Masa . BuildingBlocks . Isolation . MultiTenant ;
4
+ // ReSharper disable once CheckNamespace
5
+
6
+ namespace Masa . BuildingBlocks . Isolation ;
5
7
6
8
public interface ITenantSetter
7
9
{
Original file line number Diff line number Diff line change 1
1
// Copyright (c) MASA Stack All rights reserved.
2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
- namespace Masa . BuildingBlocks . Isolation . MultiTenant ;
4
+ // ReSharper disable once CheckNamespace
5
+
6
+ namespace Masa . BuildingBlocks . Isolation ;
5
7
6
8
public class Tenant
7
9
{
Original file line number Diff line number Diff line change 2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
4
global using Masa . BuildingBlocks . Data ;
5
- global using Masa . BuildingBlocks . Isolation . Environment ;
6
- global using Masa . BuildingBlocks . Isolation . MultiTenant ;
7
5
global using Microsoft . AspNetCore . Http ;
8
6
global using Microsoft . AspNetCore . Routing ;
9
7
global using Microsoft . Extensions . DependencyInjection ;
Original file line number Diff line number Diff line change 3
3
4
4
global using Masa . BuildingBlocks . Authentication . Identity ;
5
5
global using Masa . BuildingBlocks . Isolation ;
6
- global using Masa . BuildingBlocks . Isolation . Environment ;
7
- global using Masa . BuildingBlocks . Isolation . Middleware ;
8
6
global using Masa . BuildingBlocks . Isolation . Parser ;
9
7
global using Masa . Contrib . Isolation . MultiEnvironment . Middleware ;
10
8
global using Microsoft . Extensions . DependencyInjection ;
Original file line number Diff line number Diff line change 3
3
4
4
global using Masa . BuildingBlocks . Authentication . Identity ;
5
5
global using Masa . BuildingBlocks . Isolation ;
6
- global using Masa . BuildingBlocks . Isolation . Middleware ;
7
- global using Masa . BuildingBlocks . Isolation . MultiTenant ;
8
6
global using Masa . BuildingBlocks . Isolation . Parser ;
9
7
global using Masa . Contrib . Isolation . MultiTenant . Middleware ;
10
8
global using Microsoft . Extensions . DependencyInjection ;
Original file line number Diff line number Diff line change 6
6
global using Masa . BuildingBlocks . Data . UoW ;
7
7
global using Masa . BuildingBlocks . Dispatcher . Events ;
8
8
global using Masa . BuildingBlocks . Isolation ;
9
- global using Masa . BuildingBlocks . Isolation . Environment ;
10
- global using Masa . BuildingBlocks . Isolation . Middleware ;
11
- global using Masa . BuildingBlocks . Isolation . MultiTenant ;
12
9
global using Masa . BuildingBlocks . Isolation . Options ;
13
10
global using Masa . Contrib . Isolation . Middleware ;
14
11
global using Microsoft . AspNetCore . Http ;
Original file line number Diff line number Diff line change 2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
4
global using Masa . BuildingBlocks . Isolation ;
5
- global using Masa . BuildingBlocks . Isolation . Environment ;
6
- global using Masa . BuildingBlocks . Isolation . Middleware ;
7
5
global using Masa . Contrib . Isolation . MultiEnvironment . Middleware ;
8
6
global using Microsoft . AspNetCore . Http ;
9
7
global using Microsoft . Extensions . DependencyInjection ;
Original file line number Diff line number Diff line change 2
2
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
3
4
4
global using Masa . BuildingBlocks . Isolation ;
5
- global using Masa . BuildingBlocks . Isolation . Middleware ;
6
- global using Masa . BuildingBlocks . Isolation . MultiTenant ;
7
5
global using Masa . Contrib . Isolation . MultiTenant . Middleware ;
8
6
global using Microsoft . AspNetCore . Http ;
9
7
global using Microsoft . Extensions . DependencyInjection ;
Original file line number Diff line number Diff line change 4
4
global using Masa . BuildingBlocks . Data ;
5
5
global using Masa . BuildingBlocks . Data . UoW ;
6
6
global using Masa . BuildingBlocks . Dispatcher . Events ;
7
- global using Masa . BuildingBlocks . Isolation . Environment ;
8
- global using Masa . BuildingBlocks . Isolation . Middleware ;
9
- global using Masa . BuildingBlocks . Isolation . MultiTenant ;
7
+ global using Masa . BuildingBlocks . Isolation ;
10
8
global using Masa . BuildingBlocks . Isolation . Options ;
11
9
global using Masa . BuildingBlocks . Isolation . Parser ;
12
10
global using Masa . Contrib . Isolation . MultiEnvironment ;
Original file line number Diff line number Diff line change 4
4
global using Masa . BuildingBlocks . Data ;
5
5
global using Masa . BuildingBlocks . Dispatcher . Events ;
6
6
global using Masa . BuildingBlocks . Isolation ;
7
- global using Masa . BuildingBlocks . Isolation . Environment ;
8
- global using Masa . BuildingBlocks . Isolation . MultiTenant ;
9
7
global using Masa . Contrib . Data . UoW . EFCore ;
10
8
global using Masa . Contrib . Isolation . UoW . EFCore . Internal ;
11
9
global using Microsoft . EntityFrameworkCore ;
Original file line number Diff line number Diff line change 4
4
global using Masa . BuildingBlocks . Data ;
5
5
global using Masa . BuildingBlocks . Data . UoW ;
6
6
global using Masa . BuildingBlocks . Dispatcher . Events ;
7
- global using Masa . BuildingBlocks . Isolation . Environment ;
8
- global using Masa . BuildingBlocks . Isolation . MultiTenant ;
7
+ global using Masa . BuildingBlocks . Isolation ;
9
8
global using Masa . BuildingBlocks . Isolation . Options ;
10
- global using Masa . Contrib . Data . Contracts . EFCore ;
11
9
global using Masa . Contrib . Isolation . MultiEnvironment ;
12
10
global using Masa . Contrib . Isolation . MultiTenant ;
13
11
global using Microsoft . AspNetCore . Builder ;
Original file line number Diff line number Diff line change 4
4
global using Masa . BuildingBlocks . Data ;
5
5
global using Masa . BuildingBlocks . Dispatcher . Events ;
6
6
global using Masa . BuildingBlocks . Isolation ;
7
- global using Masa . BuildingBlocks . Isolation . Environment ;
8
- global using Masa . Contrib . Data . Contracts . EFCore ;
9
7
global using Masa . Contrib . Dispatcher . Events ;
10
8
global using Masa . Contrib . Isolation . MultiEnvironment ;
11
9
global using Masa . Contrib . Isolation . MultiTenant ;
You can’t perform that action at this time.
0 commit comments