Skip to content

Commit 12be2e3

Browse files
committed
1. Upgrade to .Net 6.0
2. Support Stmt 3. Move to IoTSharp
1 parent 6570268 commit 12be2e3

File tree

74 files changed

+1890
-843
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1890
-843
lines changed

EFCore.Taos.sln

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ VisualStudioVersion = 17.0.32014.148
55
MinimumVisualStudioVersion = 15.0.26730.03
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{CE6B50B2-34AE-44C9-940A-4E48C3E1B3BC}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Maikebing.Data.Taos", "src\Maikebing.Data.Taos\Maikebing.Data.Taos.csproj", "{EFD6587E-F538-4656-95E3-514EEA16E494}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IoTSharp.Data.Taos", "src\IoTSharp.Data.Taos\IoTSharp.Data.Taos.csproj", "{EFD6587E-F538-4656-95E3-514EEA16E494}"
99
EndProject
10-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Maikebing.EntityFrameworkCore.Taos", "src\EFCore.Taos.Core\Maikebing.EntityFrameworkCore.Taos.csproj", "{9D7B7248-3ADD-4DC3-A800-18CE10FEA752}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IoTSharp.EntityFrameworkCore.Taos", "src\EFCore.Taos.Core\IoTSharp.EntityFrameworkCore.Taos.csproj", "{9D7B7248-3ADD-4DC3-A800-18CE10FEA752}"
1111
EndProject
1212
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{61AA7587-946B-4B2F-92C9-73D0BA670B97}"
1313
ProjectSection(SolutionItems) = preProject
@@ -22,7 +22,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example", "src\Example\Exam
2222
EndProject
2323
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{B24685BC-E919-46BE-ADE8-52AC8697A1F1}"
2424
EndProject
25-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Maikebing.HealthChecks.Taos", "src\Maikebing.HealthChecks.Taos\Maikebing.HealthChecks.Taos.csproj", "{61524D14-E365-4D00-A058-479AAE4D2B49}"
25+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IoTSharp.HealthChecks.Taos", "src\IoTSharp.HealthChecks.Taos\IoTSharp.HealthChecks.Taos.csproj", "{61524D14-E365-4D00-A058-479AAE4D2B49}"
2626
EndProject
2727
Project("{E53339B2-1760-4266-BCC7-CA923CBCF16C}") = "docker-compose", "docker-compose.dcproj", "{1F3895A2-ED79-499F-A6A1-3F88A3D8D7F7}"
2828
EndProject

src/EFCore.Taos.Core/Design/Internal/TaosDesignTimeServices.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
using Microsoft.EntityFrameworkCore.Design;
55
using Microsoft.EntityFrameworkCore.Diagnostics;
66
using Microsoft.EntityFrameworkCore.Scaffolding;
7-
using Maikebing.EntityFrameworkCore.Taos.Diagnostics.Internal;
8-
using Maikebing.EntityFrameworkCore.Taos.Scaffolding.Internal;
9-
using Maikebing.EntityFrameworkCore.Taos.Storage.Internal;
7+
using IoTSharp.EntityFrameworkCore.Taos.Diagnostics.Internal;
8+
using IoTSharp.EntityFrameworkCore.Taos.Scaffolding.Internal;
9+
using IoTSharp.EntityFrameworkCore.Taos.Storage.Internal;
1010
using Microsoft.EntityFrameworkCore.Storage;
1111
using Microsoft.Extensions.DependencyInjection;
1212

13-
namespace Maikebing.EntityFrameworkCore.Taos.Design.Internal
13+
namespace IoTSharp.EntityFrameworkCore.Taos.Design.Internal
1414
{
1515
/// <summary>
1616
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to

src/EFCore.Taos.Core/Diagnostics/Internal/TaosLoggingDefinitions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using Microsoft.EntityFrameworkCore.Diagnostics;
55

6-
namespace Maikebing.EntityFrameworkCore.Taos.Diagnostics.Internal
6+
namespace IoTSharp.EntityFrameworkCore.Taos.Diagnostics.Internal
77
{
88
/// <summary>
99
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to

src/EFCore.Taos.Core/Extensions/TaosDatabaseFacadeExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Reflection;
66
using JetBrains.Annotations;
77
using Microsoft.EntityFrameworkCore.Infrastructure;
8-
using Maikebing.EntityFrameworkCore.Taos.Infrastructure.Internal;
8+
using IoTSharp.EntityFrameworkCore.Taos.Infrastructure.Internal;
99

1010
// ReSharper disable once CheckNamespace
1111
namespace Microsoft.EntityFrameworkCore

src/EFCore.Taos.Core/Extensions/TaosDbContextOptionsBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using JetBrains.Annotations;
77
using Microsoft.EntityFrameworkCore.Diagnostics;
88
using Microsoft.EntityFrameworkCore.Infrastructure;
9-
using Maikebing.EntityFrameworkCore.Taos.Infrastructure.Internal;
9+
using IoTSharp.EntityFrameworkCore.Taos.Infrastructure.Internal;
1010
using Microsoft.EntityFrameworkCore.Utilities;
1111

1212
// ReSharper disable once CheckNamespace

src/EFCore.Taos.Core/Extensions/TaosMigrationBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Reflection;
66
using JetBrains.Annotations;
7-
using Maikebing.EntityFrameworkCore.Taos.Infrastructure.Internal;
7+
using IoTSharp.EntityFrameworkCore.Taos.Infrastructure.Internal;
88

99
// ReSharper disable once CheckNamespace
1010
namespace Microsoft.EntityFrameworkCore.Migrations

src/EFCore.Taos.Core/Extensions/TaosPropertyBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using JetBrains.Annotations;
66
using Microsoft.EntityFrameworkCore.Metadata.Builders;
7-
using Maikebing.EntityFrameworkCore.Taos.Metadata.Internal;
7+
using IoTSharp.EntityFrameworkCore.Taos.Metadata.Internal;
88
using Microsoft.EntityFrameworkCore.Utilities;
99

1010
// ReSharper disable once CheckNamespace

src/EFCore.Taos.Core/Extensions/TaosPropertyExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using JetBrains.Annotations;
55
using Microsoft.EntityFrameworkCore.Metadata;
6-
using Maikebing.EntityFrameworkCore.Taos.Metadata.Internal;
6+
using IoTSharp.EntityFrameworkCore.Taos.Metadata.Internal;
77

88
// ReSharper disable once CheckNamespace
99
namespace Microsoft.EntityFrameworkCore

src/EFCore.Taos.Core/Extensions/TaosServiceCollectionExtensions.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
using Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure;
1010
using Microsoft.EntityFrameworkCore.Migrations;
1111
using Microsoft.EntityFrameworkCore.Query;
12-
using Maikebing.EntityFrameworkCore.Taos.Diagnostics.Internal;
13-
using Maikebing.EntityFrameworkCore.Taos.Infrastructure.Internal;
14-
using Maikebing.EntityFrameworkCore.Taos.Internal;
15-
using Maikebing.EntityFrameworkCore.Taos.Migrations.Internal;
16-
using Maikebing.EntityFrameworkCore.Taos.Query.Internal;
17-
using Maikebing.EntityFrameworkCore.Taos.Storage.Internal;
18-
using Maikebing.EntityFrameworkCore.Taos.Update.Internal;
12+
using IoTSharp.EntityFrameworkCore.Taos.Diagnostics.Internal;
13+
using IoTSharp.EntityFrameworkCore.Taos.Infrastructure.Internal;
14+
using IoTSharp.EntityFrameworkCore.Taos.Internal;
15+
using IoTSharp.EntityFrameworkCore.Taos.Migrations.Internal;
16+
using IoTSharp.EntityFrameworkCore.Taos.Query.Internal;
17+
using IoTSharp.EntityFrameworkCore.Taos.Storage.Internal;
18+
using IoTSharp.EntityFrameworkCore.Taos.Update.Internal;
1919
using Microsoft.EntityFrameworkCore.Storage;
2020
using Microsoft.EntityFrameworkCore.Update;
2121
using Microsoft.EntityFrameworkCore.Utilities;

src/EFCore.Taos.Core/Infrastructure/Internal/TaosOptionsExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.EntityFrameworkCore.Infrastructure;
88
using Microsoft.Extensions.DependencyInjection;
99

10-
namespace Maikebing.EntityFrameworkCore.Taos.Infrastructure.Internal
10+
namespace IoTSharp.EntityFrameworkCore.Taos.Infrastructure.Internal
1111
{
1212
/// <summary>
1313
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to

0 commit comments

Comments
 (0)