From 916dd0bb822994b80df9443e876399e98914ddd5 Mon Sep 17 00:00:00 2001 From: Mark Appleton Date: Wed, 7 May 2025 14:11:49 +0100 Subject: [PATCH 1/2] #698 Version Providers added to more projects --- .../VersionProvider.cs | 31 +++++++++++++++ .../StartupExtenstions.cs | 3 +- .../VersionProvider.cs | 38 +++++++++++++++++++ .../VersionProvider.cs | 31 +++++++++++++++ .../StartupExtensions.cs | 6 ++- .../VersionProvider.cs | 37 ++++++++++++++++++ .../VersionInfo.cs | 2 +- .../Config/CloudscribeFeatures.cs | 4 +- .../17595de8-d27a-4304-bded-76b61a16ad19.json | 2 +- 9 files changed, 148 insertions(+), 6 deletions(-) create mode 100644 src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs create mode 100644 src/cloudscribe.Core.SimpleContent/VersionProvider.cs create mode 100644 src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs create mode 100644 src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/VersionProvider.cs diff --git a/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs b/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs new file mode 100644 index 000000000..195a1b6cd --- /dev/null +++ b/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs @@ -0,0 +1,31 @@ +using System; +using System.Reflection; +using cloudscribe.Versioning; +using cloudscribe.Web.Common; + +namespace cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5 +{ + public class VersionProvider : IVersionProvider + { + public string Name { get { return "cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5"; } } + + public Guid ApplicationId { get { return new Guid("f93067b4-919d-4910-acd1-4b3b1c210ecf"); } } + + public Version CurrentVersion + { + + get + { + + var version = new Version(2, 0, 0, 0); + var versionString = typeof(CloudscribeCommonResources).Assembly.GetCustomAttribute().Version; + if (!string.IsNullOrWhiteSpace(versionString)) + { + Version.TryParse(versionString, out version); + } + + return version; + } + } + } +} diff --git a/src/cloudscribe.Core.SimpleContent/StartupExtenstions.cs b/src/cloudscribe.Core.SimpleContent/StartupExtenstions.cs index fbe66631c..312af2d52 100644 --- a/src/cloudscribe.Core.SimpleContent/StartupExtenstions.cs +++ b/src/cloudscribe.Core.SimpleContent/StartupExtenstions.cs @@ -5,6 +5,7 @@ using cloudscribe.SimpleContent.Models; using cloudscribe.SimpleContent.Web.Design; using cloudscribe.SimpleContent.Web.TagHelpers; +using cloudscribe.Versioning; using cloudscribe.Web.Navigation.Caching; using Microsoft.AspNetCore.Authorization; using Microsoft.Extensions.Configuration; @@ -34,7 +35,7 @@ public static IServiceCollection AddCloudscribeCoreIntegrationForSimpleContent( services.AddScoped(); services.AddScoped(); services.AddScoped(); - + services.AddScoped(); if (configuration != null) { diff --git a/src/cloudscribe.Core.SimpleContent/VersionProvider.cs b/src/cloudscribe.Core.SimpleContent/VersionProvider.cs new file mode 100644 index 000000000..e5f110f55 --- /dev/null +++ b/src/cloudscribe.Core.SimpleContent/VersionProvider.cs @@ -0,0 +1,38 @@ +using cloudscribe.Core.SimpleContent.Integration; +using cloudscribe.Versioning; +using cloudscribe.Web.Common; +using System; +using System.Reflection; + +namespace cloudscribe.Core.SimpleContent +{ + public class VersionProvider : IVersionProvider + { + private Assembly assembly = typeof(AuthorNameResolver).Assembly; + + public string Name + { + get { return assembly.GetName().Name; } + + } + + public Guid ApplicationId { get { return new Guid("f94177b4-919d-4910-acd1-4b3b1c210ecf"); } } + + public Version CurrentVersion + { + + get + { + + var version = new Version(2, 0, 0, 0); + var versionString = typeof(CloudscribeCommonResources).Assembly.GetCustomAttribute().Version; + if (!string.IsNullOrWhiteSpace(versionString)) + { + Version.TryParse(versionString, out version); + } + + return version; + } + } + } +} \ No newline at end of file diff --git a/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs b/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs new file mode 100644 index 000000000..a34bf0dec --- /dev/null +++ b/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs @@ -0,0 +1,31 @@ +using cloudscribe.Versioning; +using cloudscribe.Web.Common; +using System; +using System.Reflection; + +namespace cloudscribe.SimpleContent.CompiledViews.Bootstrap5 +{ + public class VersionProvider : IVersionProvider + { + public string Name { get { return "cloudscribe.SimpleContent.CompiledViews.Bootstrap5"; } } + + public Guid ApplicationId { get { return new Guid("f94067b4-919d-4910-acd1-4b3b1c210ecf"); } } + + public Version CurrentVersion + { + + get + { + + var version = new Version(2, 0, 0, 0); + var versionString = typeof(CloudscribeCommonResources).Assembly.GetCustomAttribute().Version; + if (!string.IsNullOrWhiteSpace(versionString)) + { + Version.TryParse(versionString, out version); + } + + return version; + } + } + } +} \ No newline at end of file diff --git a/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/StartupExtensions.cs b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/StartupExtensions.cs index 1d2a1580d..9b3938264 100644 --- a/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/StartupExtensions.cs +++ b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/StartupExtensions.cs @@ -1,6 +1,8 @@ -using cloudscribe.SimpleContent.ContentTemplates.Configuration; +using cloudscribe.SimpleContent.ContentTemplates.Bootstrap5; +using cloudscribe.SimpleContent.ContentTemplates.Configuration; using cloudscribe.SimpleContent.ContentTemplates.Services; using cloudscribe.SimpleContent.Models; +using cloudscribe.Versioning; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection.Extensions; @@ -26,7 +28,7 @@ IConfiguration configuration services.Configure(configuration.GetSection("ContentTemplateSettings:ImageWithContentOptions")); services.TryAddScoped(); - + services.AddScoped(); diff --git a/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/VersionProvider.cs b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/VersionProvider.cs new file mode 100644 index 000000000..08e8967aa --- /dev/null +++ b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/VersionProvider.cs @@ -0,0 +1,37 @@ +using cloudscribe.Versioning; +using cloudscribe.Web.Common; +using System; +using System.Reflection; + +namespace cloudscribe.SimpleContent.ContentTemplates.Bootstrap5 +{ + public class VersionProvider : IVersionProvider + { + private Assembly assembly = typeof(ContentTemplateResources).Assembly; + + public string Name + { + get { return assembly.GetName().Name; } + + } + + public Guid ApplicationId { get { return new Guid("f94167b4-919d-4910-acd1-4b3b1c210ecf"); } } + + public Version CurrentVersion + { + + get + { + + var version = new Version(2, 0, 0, 0); + var versionString = typeof(CloudscribeCommonResources).Assembly.GetCustomAttribute().Version; + if (!string.IsNullOrWhiteSpace(versionString)) + { + Version.TryParse(versionString, out version); + } + + return version; + } + } + } +} \ No newline at end of file diff --git a/src/cloudscribe.SimpleContent.Web/VersionInfo.cs b/src/cloudscribe.SimpleContent.Web/VersionInfo.cs index d88357314..46e2876f7 100644 --- a/src/cloudscribe.SimpleContent.Web/VersionInfo.cs +++ b/src/cloudscribe.SimpleContent.Web/VersionInfo.cs @@ -16,7 +16,7 @@ namespace cloudscribe.SimpleContent.Web { public class VersionInfo : IVersionProvider { - public string Name { get { return "cloudscribe.SimpleContent"; } } + public string Name { get { return "cloudscribe.SimpleContent.Web"; } } public Guid ApplicationId { get { return new Guid("f83067b4-919d-4910-acd1-4b3b1c210ecf"); } } diff --git a/src/sourceDev.WebApp/Config/CloudscribeFeatures.cs b/src/sourceDev.WebApp/Config/CloudscribeFeatures.cs index 631f496c0..6695c745d 100644 --- a/src/sourceDev.WebApp/Config/CloudscribeFeatures.cs +++ b/src/sourceDev.WebApp/Config/CloudscribeFeatures.cs @@ -6,6 +6,7 @@ using System.IO; using System.Collections.Generic; using cloudscribe.SimpleContent.Models; +using cloudscribe.Versioning; namespace Microsoft.Extensions.DependencyInjection { @@ -77,7 +78,8 @@ public static IServiceCollection SetupCloudscribeFeatures( IConfiguration config ) { - + services.AddScoped(); + services.AddScoped(); services.AddCloudscribeLogging(config); services.AddScoped(); diff --git a/src/sourceDev.WebApp/nodb_storage/projects/f83067b4-919d-4910-acd1-4b3b1c210ecf/siteuser/17595de8-d27a-4304-bded-76b61a16ad19.json b/src/sourceDev.WebApp/nodb_storage/projects/f83067b4-919d-4910-acd1-4b3b1c210ecf/siteuser/17595de8-d27a-4304-bded-76b61a16ad19.json index 8c27f5968..a188ae728 100644 --- a/src/sourceDev.WebApp/nodb_storage/projects/f83067b4-919d-4910-acd1-4b3b1c210ecf/siteuser/17595de8-d27a-4304-bded-76b61a16ad19.json +++ b/src/sourceDev.WebApp/nodb_storage/projects/f83067b4-919d-4910-acd1-4b3b1c210ecf/siteuser/17595de8-d27a-4304-bded-76b61a16ad19.json @@ -1 +1 @@ -{"AuthorBio":"","Comment":"","NormalizedEmail":"ADMIN@ADMIN.COM","NormalizedUserName":"ADMIN","EmailConfirmed":true,"EmailConfirmSentUtc":null,"AgreementAcceptedUtc":null,"LockoutEndDateUtc":null,"NewEmail":"","NewEmailApproved":false,"LastPasswordChangeUtc":"2024-06-03T14:17:55.2771124Z","MustChangePwd":false,"PasswordHash":"AQAAAAIAAYagAAAAEGVnALS6pFN3EERYv0nYhCQ4jy0t3WB+uYVRUM40L55rqYdKv3yw1MmjWvEYd6x2Pw==","CanAutoLockout":true,"AccessFailedCount":0,"RolesChanged":false,"SecurityStamp":"S7ZJ6RCVYLDHBWTECX2S2GQXJKWUXNSL","Signature":"","TwoFactorEnabled":false,"BrowserKey":"a1490bf5-7bc0-4c51-8781-50e43a7f2698","Id":"17595de8-d27a-4304-bded-76b61a16ad19","SiteId":"f83067b4-919d-4910-acd1-4b3b1c210ecf","Email":"admin@admin.com","UserName":"admin","DisplayName":"Admin","FirstName":"","LastName":"","AvatarUrl":"","DateOfBirth":null,"CreatedUtc":"2016-08-04T12:03:50.2175089Z","LastModifiedUtc":"2016-08-04T12:03:50.2175089Z","DisplayInMemberList":true,"Gender":"","IsLockedOut":false,"LastLoginUtc":"2024-12-11T14:19:23.5104068Z","PhoneNumber":"","PhoneNumberConfirmed":false,"AccountApproved":true,"TimeZoneId":"","WebSiteUrl":""} \ No newline at end of file +{"AuthorBio":"","Comment":"","NormalizedEmail":"ADMIN@ADMIN.COM","NormalizedUserName":"ADMIN","EmailConfirmed":true,"EmailConfirmSentUtc":null,"AgreementAcceptedUtc":null,"LockoutEndDateUtc":null,"NewEmail":"","NewEmailApproved":false,"LastPasswordChangeUtc":"2024-06-03T14:17:55.2771124Z","MustChangePwd":false,"PasswordHash":"AQAAAAIAAYagAAAAEGVnALS6pFN3EERYv0nYhCQ4jy0t3WB+uYVRUM40L55rqYdKv3yw1MmjWvEYd6x2Pw==","CanAutoLockout":true,"AccessFailedCount":0,"RolesChanged":false,"SecurityStamp":"S7ZJ6RCVYLDHBWTECX2S2GQXJKWUXNSL","Signature":"","TwoFactorEnabled":false,"BrowserKey":"443ec848-e7da-49e2-9617-806793b4da1f","Id":"17595de8-d27a-4304-bded-76b61a16ad19","SiteId":"f83067b4-919d-4910-acd1-4b3b1c210ecf","Email":"admin@admin.com","UserName":"admin","DisplayName":"Admin","FirstName":"","LastName":"","AvatarUrl":"","DateOfBirth":null,"CreatedUtc":"2016-08-04T12:03:50.2175089Z","LastModifiedUtc":"2016-08-04T12:03:50.2175089Z","DisplayInMemberList":true,"Gender":"","IsLockedOut":false,"LastLoginUtc":"2025-05-07T10:40:36.453754Z","PhoneNumber":"","PhoneNumberConfirmed":false,"AccountApproved":true,"TimeZoneId":"","WebSiteUrl":""} \ No newline at end of file From b7f9960d1ff3901385f5b01847f21ed330456147 Mon Sep 17 00:00:00 2001 From: Jim Kerslake <39943820+JimKerslake@users.noreply.github.com> Date: Fri, 22 Aug 2025 10:20:08 +0100 Subject: [PATCH 2/2] v8.5 dev --- .../cloudscribe.ContentUtils.csproj | 2 +- ...pleContent.CompiledViews.Bootstrap4.csproj | 2 +- ...pleContent.CompiledViews.Bootstrap5.csproj | 2 +- .../cloudscribe.Core.SimpleContent.csproj | 14 ++++----- .../cloudscribe.MetaWeblog.csproj | 2 +- ...pleContent.CompiledViews.Bootstrap4.csproj | 2 +- ...pleContent.CompiledViews.Bootstrap5.csproj | 2 +- ...Content.ContentTemplates.Bootstrap4.csproj | 2 +- ...Content.ContentTemplates.Bootstrap5.csproj | 2 +- ...loudscribe.SimpleContent.MetaWeblog.csproj | 8 ++--- .../cloudscribe.SimpleContent.Models.csproj | 4 +-- ...SimpleContent.Storage.EFCore.Common.csproj | 2 +- ....SimpleContent.Storage.EFCore.MSSQL.csproj | 2 +- ....SimpleContent.Storage.EFCore.MySQL.csproj | 2 +- ...leContent.Storage.EFCore.PostgreSql.csproj | 4 +-- ...SimpleContent.Storage.EFCore.SQLite.csproj | 2 +- ...udscribe.SimpleContent.Storage.NoDb.csproj | 2 +- ...oudscribe.SimpleContent.Syndication.csproj | 6 ++-- .../cloudscribe.SimpleContent.Web.csproj | 16 +++++----- src/sourceDev.WebApp/sourceDev.WebApp.csproj | 30 +++++++++---------- update_version.ps1 | 6 ++-- 21 files changed, 57 insertions(+), 57 deletions(-) diff --git a/src/cloudscribe.ContentUtils/cloudscribe.ContentUtils.csproj b/src/cloudscribe.ContentUtils/cloudscribe.ContentUtils.csproj index 8fc240c28..5d3d09c8a 100644 --- a/src/cloudscribe.ContentUtils/cloudscribe.ContentUtils.csproj +++ b/src/cloudscribe.ContentUtils/cloudscribe.ContentUtils.csproj @@ -2,7 +2,7 @@ Content utilities for html and markdown - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;blog,content diff --git a/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap4/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap4.csproj b/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap4/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap4.csproj index 8326fe5ad..d2c3cd415 100644 --- a/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap4/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap4.csproj +++ b/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap4/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap4.csproj @@ -2,7 +2,7 @@ Bootstrap 4 pre-compiled views for cloudscribe Core and SimpleContent integration - 8.4.0 + 8.5.0 net8.0 Joe Audette true diff --git a/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5.csproj b/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5.csproj index 6959e8579..109f69415 100644 --- a/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5.csproj +++ b/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5.csproj @@ -2,7 +2,7 @@ Bootstrap 5 pre-compiled views for cloudscribe Core and SimpleContent integration - 8.4.0 + 8.5.0 net8.0 Joe Audette true diff --git a/src/cloudscribe.Core.SimpleContent/cloudscribe.Core.SimpleContent.csproj b/src/cloudscribe.Core.SimpleContent/cloudscribe.Core.SimpleContent.csproj index 8689c5991..f6556719d 100644 --- a/src/cloudscribe.Core.SimpleContent/cloudscribe.Core.SimpleContent.csproj +++ b/src/cloudscribe.Core.SimpleContent/cloudscribe.Core.SimpleContent.csproj @@ -2,7 +2,7 @@ integration library for integrating cloudscribe SimpleContent with cloudscribe Core multi-tenant web app foundation - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;blog @@ -29,12 +29,12 @@ - - - - - - + + + + + + diff --git a/src/cloudscribe.MetaWeblog/cloudscribe.MetaWeblog.csproj b/src/cloudscribe.MetaWeblog/cloudscribe.MetaWeblog.csproj index 72d3cecc7..8a4c51082 100644 --- a/src/cloudscribe.MetaWeblog/cloudscribe.MetaWeblog.csproj +++ b/src/cloudscribe.MetaWeblog/cloudscribe.MetaWeblog.csproj @@ -2,7 +2,7 @@ a re-useable implementation of the metaweblog api for asp.net core - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;metaweblog;api;asp.net core diff --git a/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap4/cloudscribe.SimpleContent.CompiledViews.Bootstrap4.csproj b/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap4/cloudscribe.SimpleContent.CompiledViews.Bootstrap4.csproj index b80c03c7d..991064bb1 100644 --- a/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap4/cloudscribe.SimpleContent.CompiledViews.Bootstrap4.csproj +++ b/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap4/cloudscribe.SimpleContent.CompiledViews.Bootstrap4.csproj @@ -2,7 +2,7 @@ Bootstrap 4 pre-compiled views for cloudscribe.SimpleContent.Web - 8.4.0 + 8.5.0 net8.0 Joe Audette true diff --git a/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.SimpleContent.CompiledViews.Bootstrap5.csproj b/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.SimpleContent.CompiledViews.Bootstrap5.csproj index db25a08b1..6bf793eb9 100644 --- a/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.SimpleContent.CompiledViews.Bootstrap5.csproj +++ b/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.SimpleContent.CompiledViews.Bootstrap5.csproj @@ -2,7 +2,7 @@ Bootstrap 5 pre-compiled views for cloudscribe.SimpleContent.Web - 8.4.0 + 8.5.0 net8.0 Joe Audette true diff --git a/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap4/cloudscribe.SimpleContent.ContentTemplates.Bootstrap4.csproj b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap4/cloudscribe.SimpleContent.ContentTemplates.Bootstrap4.csproj index be5d24f11..94b1a8b58 100644 --- a/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap4/cloudscribe.SimpleContent.ContentTemplates.Bootstrap4.csproj +++ b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap4/cloudscribe.SimpleContent.ContentTemplates.Bootstrap4.csproj @@ -2,7 +2,7 @@ A set of Content Templates for cloudscribe.SimpleContent using Bootstrap 4 - 8.4.0 + 8.5.0 net8.0 Joe Audette true diff --git a/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5.csproj b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5.csproj index 9a1a0f67d..5ad767957 100644 --- a/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5.csproj +++ b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5.csproj @@ -2,7 +2,7 @@ A set of Content Templates for cloudscribe.SimpleContent using Bootstrap 5 - 8.4.0 + 8.5.0 net8.0 Joe Audette true diff --git a/src/cloudscribe.SimpleContent.MetaWeblog/cloudscribe.SimpleContent.MetaWeblog.csproj b/src/cloudscribe.SimpleContent.MetaWeblog/cloudscribe.SimpleContent.MetaWeblog.csproj index d96d29459..354a7339c 100644 --- a/src/cloudscribe.SimpleContent.MetaWeblog/cloudscribe.SimpleContent.MetaWeblog.csproj +++ b/src/cloudscribe.SimpleContent.MetaWeblog/cloudscribe.SimpleContent.MetaWeblog.csproj @@ -2,7 +2,7 @@ cloudscribe.SimpleContent.MetaWeblog Class Library - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;metaweblog;blog;cms @@ -26,9 +26,9 @@ - - - + + + diff --git a/src/cloudscribe.SimpleContent.Models/cloudscribe.SimpleContent.Models.csproj b/src/cloudscribe.SimpleContent.Models/cloudscribe.SimpleContent.Models.csproj index 8ee52e024..53b5a79fd 100644 --- a/src/cloudscribe.SimpleContent.Models/cloudscribe.SimpleContent.Models.csproj +++ b/src/cloudscribe.SimpleContent.Models/cloudscribe.SimpleContent.Models.csproj @@ -2,7 +2,7 @@ cloudscribe.SimpleContent.Models Class Library - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;blog;cms @@ -25,7 +25,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/src/cloudscribe.SimpleContent.Storage.EFCore.Common/cloudscribe.SimpleContent.Storage.EFCore.Common.csproj b/src/cloudscribe.SimpleContent.Storage.EFCore.Common/cloudscribe.SimpleContent.Storage.EFCore.Common.csproj index 57230ec33..4a0d9a660 100644 --- a/src/cloudscribe.SimpleContent.Storage.EFCore.Common/cloudscribe.SimpleContent.Storage.EFCore.Common.csproj +++ b/src/cloudscribe.SimpleContent.Storage.EFCore.Common/cloudscribe.SimpleContent.Storage.EFCore.Common.csproj @@ -2,7 +2,7 @@ base package - Entity Framework Core implementation of cloudscribe SimpleContent commands and queries - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;commands;queries;ef diff --git a/src/cloudscribe.SimpleContent.Storage.EFCore.MSSQL/cloudscribe.SimpleContent.Storage.EFCore.MSSQL.csproj b/src/cloudscribe.SimpleContent.Storage.EFCore.MSSQL/cloudscribe.SimpleContent.Storage.EFCore.MSSQL.csproj index aa26165a5..64d67e3b9 100644 --- a/src/cloudscribe.SimpleContent.Storage.EFCore.MSSQL/cloudscribe.SimpleContent.Storage.EFCore.MSSQL.csproj +++ b/src/cloudscribe.SimpleContent.Storage.EFCore.MSSQL/cloudscribe.SimpleContent.Storage.EFCore.MSSQL.csproj @@ -2,7 +2,7 @@ MSSQL Entity Framework Core implementation of cloudscribe SimpleContent commands and queries - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;commands;queries;ef diff --git a/src/cloudscribe.SimpleContent.Storage.EFCore.MySQL/cloudscribe.SimpleContent.Storage.EFCore.MySQL.csproj b/src/cloudscribe.SimpleContent.Storage.EFCore.MySQL/cloudscribe.SimpleContent.Storage.EFCore.MySQL.csproj index a6d970bdc..a216e8b8a 100644 --- a/src/cloudscribe.SimpleContent.Storage.EFCore.MySQL/cloudscribe.SimpleContent.Storage.EFCore.MySQL.csproj +++ b/src/cloudscribe.SimpleContent.Storage.EFCore.MySQL/cloudscribe.SimpleContent.Storage.EFCore.MySQL.csproj @@ -2,7 +2,7 @@ MySQL Entity Framework Core implementation of cloudscribe SimpleContent commands and queries - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;commands;queries;ef diff --git a/src/cloudscribe.SimpleContent.Storage.EFCore.PostgreSql/cloudscribe.SimpleContent.Storage.EFCore.PostgreSql.csproj b/src/cloudscribe.SimpleContent.Storage.EFCore.PostgreSql/cloudscribe.SimpleContent.Storage.EFCore.PostgreSql.csproj index 3c47aa6a3..43a2a78ad 100644 --- a/src/cloudscribe.SimpleContent.Storage.EFCore.PostgreSql/cloudscribe.SimpleContent.Storage.EFCore.PostgreSql.csproj +++ b/src/cloudscribe.SimpleContent.Storage.EFCore.PostgreSql/cloudscribe.SimpleContent.Storage.EFCore.PostgreSql.csproj @@ -2,7 +2,7 @@ PostgreSql Entity Framework Core implementation of cloudscribe SimpleContent commands and queries - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;commands;queries;ef @@ -28,7 +28,7 @@ - + diff --git a/src/cloudscribe.SimpleContent.Storage.EFCore.SQLite/cloudscribe.SimpleContent.Storage.EFCore.SQLite.csproj b/src/cloudscribe.SimpleContent.Storage.EFCore.SQLite/cloudscribe.SimpleContent.Storage.EFCore.SQLite.csproj index e1f7cf3f8..52d4cc987 100644 --- a/src/cloudscribe.SimpleContent.Storage.EFCore.SQLite/cloudscribe.SimpleContent.Storage.EFCore.SQLite.csproj +++ b/src/cloudscribe.SimpleContent.Storage.EFCore.SQLite/cloudscribe.SimpleContent.Storage.EFCore.SQLite.csproj @@ -2,7 +2,7 @@ SQLite Entity Framework Core implementation of cloudscribe SimpleContent commands and queries - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;commands;queries;ef diff --git a/src/cloudscribe.SimpleContent.Storage.NoDb/cloudscribe.SimpleContent.Storage.NoDb.csproj b/src/cloudscribe.SimpleContent.Storage.NoDb/cloudscribe.SimpleContent.Storage.NoDb.csproj index a6c32bc51..9283d5207 100644 --- a/src/cloudscribe.SimpleContent.Storage.NoDb/cloudscribe.SimpleContent.Storage.NoDb.csproj +++ b/src/cloudscribe.SimpleContent.Storage.NoDb/cloudscribe.SimpleContent.Storage.NoDb.csproj @@ -2,7 +2,7 @@ cloudscribe.SimpleContent.Storage implemented with NoDb file system storage - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;blog;json diff --git a/src/cloudscribe.SimpleContent.Syndication/cloudscribe.SimpleContent.Syndication.csproj b/src/cloudscribe.SimpleContent.Syndication/cloudscribe.SimpleContent.Syndication.csproj index 0734a43db..55d2ae87d 100644 --- a/src/cloudscribe.SimpleContent.Syndication/cloudscribe.SimpleContent.Syndication.csproj +++ b/src/cloudscribe.SimpleContent.Syndication/cloudscribe.SimpleContent.Syndication.csproj @@ -2,7 +2,7 @@ cloudscribe.SimpleContent.Syndication Class Library - 8.4.0 + 8.5.0 net8.0 Joe Audette syndication;rss;atom;cloudscribe @@ -28,9 +28,9 @@ - + - + diff --git a/src/cloudscribe.SimpleContent.Web/cloudscribe.SimpleContent.Web.csproj b/src/cloudscribe.SimpleContent.Web/cloudscribe.SimpleContent.Web.csproj index b4f4abbc4..15c62058f 100644 --- a/src/cloudscribe.SimpleContent.Web/cloudscribe.SimpleContent.Web.csproj +++ b/src/cloudscribe.SimpleContent.Web/cloudscribe.SimpleContent.Web.csproj @@ -2,7 +2,7 @@ A simple, yet flexible content and blog engine for ASP.NET Core that can work with or without a database - 8.4.0 + 8.5.0 net8.0 Joe Audette cloudscribe;blog,content @@ -40,13 +40,13 @@ - - - - - - - + + + + + + + diff --git a/src/sourceDev.WebApp/sourceDev.WebApp.csproj b/src/sourceDev.WebApp/sourceDev.WebApp.csproj index f6c6c08e3..1e5a5a4bc 100644 --- a/src/sourceDev.WebApp/sourceDev.WebApp.csproj +++ b/src/sourceDev.WebApp/sourceDev.WebApp.csproj @@ -49,25 +49,25 @@ - - - + + + - - - - - + + + + + - - - - - - - + + + + + + + diff --git a/update_version.ps1 b/update_version.ps1 index 0ed4dd017..e38bfecf4 100644 --- a/update_version.ps1 +++ b/update_version.ps1 @@ -16,9 +16,9 @@ $directory = "src" # Define the old & new versions -$oldVersion = '8\.3' # slash needed ! -$newVersion = "8.4.0" -$newWildcardVersion = "8.4.*" +$oldVersion = '8\.4' # slash needed ! +$newVersion = "8.5.0" +$newWildcardVersion = "8.5.*" # Get all .csproj files in the directory and subdirectories