From 61b59f665e71fb6a33f476b1a309f7622d46af61 Mon Sep 17 00:00:00 2001 From: samantha-letourneau Date: Sat, 29 Jan 2022 16:44:51 -0500 Subject: [PATCH 1/3] Update to .NET6 --- .../TrackableEntities.Common.Core.csproj | 4 ++-- .../TrackableEntities.EF.Core.Tests.csproj | 8 ++++---- .../TrackableEntities.EF.Core.csproj | 6 +++--- global.json | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj b/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj index 9c4904b..29a2686 100644 --- a/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj +++ b/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj @@ -1,12 +1,12 @@  - netstandard2.0 + net6.0 TrackableEntities.Common.Core 3.1.1 Tony Sneed Tony Sneed - Trackable Entities Common for .NET Standard + Trackable Entities Common for .NET6 Assembly containing TrackingState enum and ITrackable, IMergeable interfaces. false See: https://github.com/TrackableEntities/TrackableEntities.Core/releases/tag/v3.1.1 diff --git a/TrackableEntities.EF.Core.Tests/TrackableEntities.EF.Core.Tests.csproj b/TrackableEntities.EF.Core.Tests/TrackableEntities.EF.Core.Tests.csproj index f2eddc1..fdbabef 100644 --- a/TrackableEntities.EF.Core.Tests/TrackableEntities.EF.Core.Tests.csproj +++ b/TrackableEntities.EF.Core.Tests/TrackableEntities.EF.Core.Tests.csproj @@ -1,15 +1,15 @@  - net5.0 + net6.0 latest false - - - + + + diff --git a/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj b/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj index fe47fea..44130d9 100644 --- a/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj +++ b/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj @@ -1,9 +1,9 @@  - netstandard2.1 + net6.0 true - 5.0.1 + 6.0.1 Tony Sneed Tony Sneed Trackable Entities for EF Core @@ -31,7 +31,7 @@ - + diff --git a/global.json b/global.json index 2cb2ac9..5395ff4 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "5.0.100" + "version": "6.0.101" } } \ No newline at end of file From 4b0ca91a367652ae8281793b427175de5cbd03ad Mon Sep 17 00:00:00 2001 From: samantha-letourneau Date: Sat, 29 Jan 2022 22:08:37 -0500 Subject: [PATCH 2/3] Nuget info ready --- .../TrackableEntities.Common.Core.csproj | 12 ++++++------ .../TrackableEntities.EF.Core.csproj | 13 +++++++------ 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj b/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj index 29a2686..628c640 100644 --- a/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj +++ b/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj @@ -2,18 +2,18 @@ net6.0 - TrackableEntities.Common.Core + TrackableEntities.Common.NET6 3.1.1 Tony Sneed - Tony Sneed + Trackable Entities Common for .NET6 - Assembly containing TrackingState enum and ITrackable, IMergeable interfaces. + Assembly containing TrackingState enum and ITrackable, IMergeable interfaces for .NET6. false - See: https://github.com/TrackableEntities/TrackableEntities.Core/releases/tag/v3.1.1 - change-tracking entity-framework-core n-tier + See: https://github.com/samantha-letourneau/TrackableEntities.Core/releases/tag/v3.1.1 + change-tracking entity-framework-core n-tier;NET6 true MIT - https://github.com/TrackableEntities/TrackableEntities.Core + https://github.com/samantha-letourneau/TrackableEntities.Core icon.png true diff --git a/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj b/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj index 44130d9..03c0aca 100644 --- a/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj +++ b/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj @@ -4,16 +4,17 @@ net6.0 true 6.0.1 - Tony Sneed - Tony Sneed + Tony Sneed; Samantha Létourneau + Trackable Entities for EF Core - Provides an ApplyChanges extension method for DbContext that sets EntityState on trackable entities, so they can be saved by a service in a single transaction. + Provides an ApplyChanges extension method for DbContext that sets EntityState on trackable entities, so they can be saved by a service in a single transaction. Package updated to work with .NET6. MIT - https://github.com/TrackableEntities/TrackableEntities.Core + https://github.com/samantha-letourneau/TrackableEntities.Core icon.png - change-tracking entity-framework-core n-tier - See: https://github.com/TrackableEntities/TrackableEntities.Core/releases/tag/v5.0.1 + change-tracking entity-framework-core n-tier;.NET6 + See: https://github.com/samantha-letourneau/TrackableEntities.Core/releases/tag/v5.0.1 true + TrackableEntities.EF.NET6 From cfbb7d7051b303491484ecdb8424cffd0a8afc11 Mon Sep 17 00:00:00 2001 From: Anthony Sneed Date: Mon, 7 Feb 2022 11:06:58 -0600 Subject: [PATCH 3/3] Adjust project settings. --- .../TrackableEntities.Common.Core.csproj | 28 ++++++----------- .../TrackableEntities.EF.Core.csproj | 30 +++++++------------ 2 files changed, 19 insertions(+), 39 deletions(-) diff --git a/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj b/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj index 628c640..e032c72 100644 --- a/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj +++ b/TrackableEntities.Common.Core/TrackableEntities.Common.Core.csproj @@ -2,30 +2,20 @@ net6.0 - TrackableEntities.Common.NET6 - 3.1.1 + TrackableEntities.Common + 6.0.0 Tony Sneed - - Trackable Entities Common for .NET6 - Assembly containing TrackingState enum and ITrackable, IMergeable interfaces for .NET6. + Tony Sneed + Trackable Entities Common + Assembly containing TrackingState enum and ITrackable, IMergeable interfaces. false - See: https://github.com/samantha-letourneau/TrackableEntities.Core/releases/tag/v3.1.1 - change-tracking entity-framework-core n-tier;NET6 + https://github.com/TrackableEntities/TrackableEntities.Core/releases/tag/v6.0.0 + change-tracking entity-framework-core n-tier true MIT - https://github.com/samantha-letourneau/TrackableEntities.Core + https://github.com/TrackableEntities/TrackableEntities.Core icon.png - true - - - - bin\Debug\netstandard2.0\TrackableEntities.Common.Core.xml - latest - - - - bin\Release\netstandard2.0\TrackableEntities.Common.Core.xml - latest + True diff --git a/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj b/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj index 03c0aca..a3ce671 100644 --- a/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj +++ b/TrackableEntities.EF.Core/TrackableEntities.EF.Core.csproj @@ -2,29 +2,19 @@ net6.0 - true - 6.0.1 - Tony Sneed; Samantha Létourneau - + 6.0.0 + Tony Sneed + Tony Sneed Trackable Entities for EF Core - Provides an ApplyChanges extension method for DbContext that sets EntityState on trackable entities, so they can be saved by a service in a single transaction. Package updated to work with .NET6. + Provides an ApplyChanges extension method for DbContext that sets EntityState on trackable entities, so they can be saved by a service in a single transaction MIT - https://github.com/samantha-letourneau/TrackableEntities.Core + https://github.com/TrackableEntities/TrackableEntities.Core icon.png - change-tracking entity-framework-core n-tier;.NET6 - See: https://github.com/samantha-letourneau/TrackableEntities.Core/releases/tag/v5.0.1 - true + change-tracking entity-framework-core n-tier + https://github.com/TrackableEntities/TrackableEntities.Core/releases/tag/v6.0.0 + true TrackableEntities.EF.NET6 - - - - bin\Debug\netstandard2.1\TrackableEntities.EF.Core.xml - latest - - - - bin\Release\netstandard2.1\TrackableEntities.EF.Core.xml - latest + True @@ -32,7 +22,7 @@ - +