From aaf126ecb65018eedd33a6294765e01d9d0e4d35 Mon Sep 17 00:00:00 2001 From: soroshsabz Date: Mon, 1 May 2023 20:15:59 +0430 Subject: [PATCH] Revert .NET Framework to 4.6.2 for more backward compatibility. (fixes #33) --- Build/BSN.Commons.Orm.EntityFramework.nuspec | 9 ++++++--- Build/BSN.Commons.Users.nuspec | 9 ++++++--- Build/build.cake | 2 +- Source/BSN.Commons.Orm.EntityFramework/App.config | 10 +++++----- .../BSN.Commons.Orm.EntityFramework.csproj | 3 ++- .../Properties/AssemblyInfo.cs | 6 +++--- .../BSN.Commons.Orm.EntityFrameworkCore.csproj | 6 +++--- .../BSN.Commons.PresentationInfrastructure.csproj | 6 +++--- Source/BSN.Commons.Users/App.config | 10 +++++----- Source/BSN.Commons.Users/BSN.Commons.Users.csproj | 2 +- Source/BSN.Commons.Users/Properties/AssemblyInfo.cs | 6 +++--- Source/BSN.Commons/BSN.Commons.csproj | 6 +++--- .../BSN.Commons.Orm.EntityFramework.Tests.csproj | 2 +- Test/BSN.Commons.Tests/BSN.Commons.Tests.csproj | 2 +- 14 files changed, 43 insertions(+), 36 deletions(-) diff --git a/Build/BSN.Commons.Orm.EntityFramework.nuspec b/Build/BSN.Commons.Orm.EntityFramework.nuspec index 857dc90..135ae1c 100644 --- a/Build/BSN.Commons.Orm.EntityFramework.nuspec +++ b/Build/BSN.Commons.Orm.EntityFramework.nuspec @@ -2,7 +2,7 @@ BSN.Commons.Orm.EntityFramework - 1.9.0 + 1.9.1 Seyyed Soroosh Hosseinalipour sorosh_sabz, BSN MIT @@ -10,11 +10,14 @@ http://ICON_URL_HERE_OR_DELETE_THIS_LINE false ORM Helpers for using entity framework in enterprise application - Seperate dependencies + + * Revert .Net Framework to 4.6.2 for backward compatiblity + * Seperate dependencies + BSN Co 2020 Commons ORM Enterprise - + diff --git a/Build/BSN.Commons.Users.nuspec b/Build/BSN.Commons.Users.nuspec index 5d79cd7..ec5af84 100644 --- a/Build/BSN.Commons.Users.nuspec +++ b/Build/BSN.Commons.Users.nuspec @@ -2,7 +2,7 @@ BSN.Commons.Users - 1.9.0 + 1.9.1 Seyyed Soroosh Hosseinalipour sorosh_sabz, BSN MIT @@ -10,11 +10,14 @@ http://ICON_URL_HERE_OR_DELETE_THIS_LINE false Some identity and user management facilities in enterprise application - Seperate dependencies + + * Revert .Net Framework to 4.6.2 for backward compatiblity + * Seperate dependencies + BSN Co 2020 Commons Users Enterprise - + diff --git a/Build/build.cake b/Build/build.cake index 7123f2c..140ed55 100644 --- a/Build/build.cake +++ b/Build/build.cake @@ -16,7 +16,7 @@ var artifactsDir = "./artifacts/"; var solutionPath = "../BSN.Commons.sln"; var projectName = "BSN.Commons"; var projectFolder = "../Source/"; -var solutionVersion = "1.9.0"; +var solutionVersion = "1.9.1"; var projects = new List<(string path, string name, string version)> { ("BSN.Commons/", "BSN.Commons.csproj", solutionVersion), diff --git a/Source/BSN.Commons.Orm.EntityFramework/App.config b/Source/BSN.Commons.Orm.EntityFramework/App.config index 7e1d79c..4aab45f 100644 --- a/Source/BSN.Commons.Orm.EntityFramework/App.config +++ b/Source/BSN.Commons.Orm.EntityFramework/App.config @@ -1,17 +1,17 @@ - + -
+
- + - + - \ No newline at end of file + diff --git a/Source/BSN.Commons.Orm.EntityFramework/BSN.Commons.Orm.EntityFramework.csproj b/Source/BSN.Commons.Orm.EntityFramework/BSN.Commons.Orm.EntityFramework.csproj index 0d7ebca..4dbd8e0 100644 --- a/Source/BSN.Commons.Orm.EntityFramework/BSN.Commons.Orm.EntityFramework.csproj +++ b/Source/BSN.Commons.Orm.EntityFramework/BSN.Commons.Orm.EntityFramework.csproj @@ -9,9 +9,10 @@ Properties BSN.Commons.Orm.EntityFramework BSN.Commons.Orm.EntityFramework - v4.8 + v4.6.2 512 true + true diff --git a/Source/BSN.Commons.Orm.EntityFramework/Properties/AssemblyInfo.cs b/Source/BSN.Commons.Orm.EntityFramework/Properties/AssemblyInfo.cs index a8f87d1..ce9b25e 100644 --- a/Source/BSN.Commons.Orm.EntityFramework/Properties/AssemblyInfo.cs +++ b/Source/BSN.Commons.Orm.EntityFramework/Properties/AssemblyInfo.cs @@ -11,9 +11,9 @@ [assembly: AssemblyDescription("ORM Helpers for using entity framework in enterprise application")] [assembly: AssemblyCompany("BSN Company")] [assembly: AssemblyProduct("BSN.Commons.Orm.EntityFramework")] -[assembly: AssemblyVersion("1.9.0")] -[assembly: AssemblyFileVersion("1.9.0")] -[assembly: AssemblyInformationalVersion("1.9.0")] +[assembly: AssemblyVersion("1.9.1")] +[assembly: AssemblyFileVersion("1.9.1")] +[assembly: AssemblyInformationalVersion("1.9.1")] [assembly: AssemblyCopyright("Copyright © 2020-2022 BSN Co.")] [assembly: AssemblyTrademark("")] [assembly: AssemblyConfiguration("")] diff --git a/Source/BSN.Commons.Orm.EntityFrameworkCore/BSN.Commons.Orm.EntityFrameworkCore.csproj b/Source/BSN.Commons.Orm.EntityFrameworkCore/BSN.Commons.Orm.EntityFrameworkCore.csproj index 2459d9c..43a12db 100644 --- a/Source/BSN.Commons.Orm.EntityFrameworkCore/BSN.Commons.Orm.EntityFrameworkCore.csproj +++ b/Source/BSN.Commons.Orm.EntityFrameworkCore/BSN.Commons.Orm.EntityFrameworkCore.csproj @@ -2,8 +2,8 @@ netstandard2.0 - 1.9.0 - 1.9.0 + 1.9.1 + 1.9.1 BSN Developers BSN Company ORM Helpers for using entity framework core in enterprise application @@ -13,7 +13,7 @@ https://github.com/BSVN/Commons.git git Initial of project - 1.9.0 + 1.9.1 diff --git a/Source/BSN.Commons.PresentationInfrastructure/BSN.Commons.PresentationInfrastructure.csproj b/Source/BSN.Commons.PresentationInfrastructure/BSN.Commons.PresentationInfrastructure.csproj index 39b3441..b5ea24f 100644 --- a/Source/BSN.Commons.PresentationInfrastructure/BSN.Commons.PresentationInfrastructure.csproj +++ b/Source/BSN.Commons.PresentationInfrastructure/BSN.Commons.PresentationInfrastructure.csproj @@ -3,9 +3,9 @@ netstandard2.0 Presentation infrastructure layer of BSN.Commons library for enterprise application. - 1.9.0 - 1.9.0 - 1.9.0 + 1.9.1 + 1.9.1 + 1.9.1 BSN Developers BSN Company BSN Co 2019 diff --git a/Source/BSN.Commons.Users/App.config b/Source/BSN.Commons.Users/App.config index 523f48a..df430f3 100644 --- a/Source/BSN.Commons.Users/App.config +++ b/Source/BSN.Commons.Users/App.config @@ -1,17 +1,17 @@ - + -
+
- + - + - \ No newline at end of file + diff --git a/Source/BSN.Commons.Users/BSN.Commons.Users.csproj b/Source/BSN.Commons.Users/BSN.Commons.Users.csproj index 6c45cc9..1ece92b 100644 --- a/Source/BSN.Commons.Users/BSN.Commons.Users.csproj +++ b/Source/BSN.Commons.Users/BSN.Commons.Users.csproj @@ -9,7 +9,7 @@ Properties BSN.Commons.Users BSN.Commons.Users - v4.8 + v4.6.2 512 true diff --git a/Source/BSN.Commons.Users/Properties/AssemblyInfo.cs b/Source/BSN.Commons.Users/Properties/AssemblyInfo.cs index c403ad2..f1cc60f 100644 --- a/Source/BSN.Commons.Users/Properties/AssemblyInfo.cs +++ b/Source/BSN.Commons.Users/Properties/AssemblyInfo.cs @@ -11,9 +11,9 @@ [assembly: AssemblyDescription("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("BSN.Commons.Users")] -[assembly: AssemblyVersion("1.9.0")] -[assembly: AssemblyFileVersion("1.9.0")] -[assembly: AssemblyInformationalVersion("1.9.0")] +[assembly: AssemblyVersion("1.9.1")] +[assembly: AssemblyFileVersion("1.9.1")] +[assembly: AssemblyInformationalVersion("1.9.1")] [assembly: AssemblyCopyright("Copyright © 2022 BSN Co.")] [assembly: AssemblyTrademark("")] [assembly: AssemblyConfiguration("")] diff --git a/Source/BSN.Commons/BSN.Commons.csproj b/Source/BSN.Commons/BSN.Commons.csproj index c0613ca..3c4751a 100644 --- a/Source/BSN.Commons/BSN.Commons.csproj +++ b/Source/BSN.Commons/BSN.Commons.csproj @@ -2,13 +2,13 @@ netstandard2.0 - 1.9.0 - 1.9.0 + 1.9.1 + 1.9.1 BSN Company BSN Developers BSN Co 2019-2022 true - 1.9.0 + 1.9.1 https://github.com/BSVN/Commons Commons library for enterprise application diff --git a/Test/BSN.Commons.Orm.EntityFramework.Tests/BSN.Commons.Orm.EntityFramework.Tests.csproj b/Test/BSN.Commons.Orm.EntityFramework.Tests/BSN.Commons.Orm.EntityFramework.Tests.csproj index 7d3ceed..a6dc816 100644 --- a/Test/BSN.Commons.Orm.EntityFramework.Tests/BSN.Commons.Orm.EntityFramework.Tests.csproj +++ b/Test/BSN.Commons.Orm.EntityFramework.Tests/BSN.Commons.Orm.EntityFramework.Tests.csproj @@ -1,7 +1,7 @@  - net48 + net462 false diff --git a/Test/BSN.Commons.Tests/BSN.Commons.Tests.csproj b/Test/BSN.Commons.Tests/BSN.Commons.Tests.csproj index 403afcf..59bb8c8 100644 --- a/Test/BSN.Commons.Tests/BSN.Commons.Tests.csproj +++ b/Test/BSN.Commons.Tests/BSN.Commons.Tests.csproj @@ -1,7 +1,7 @@  - net472 + net462 false