diff --git a/src/cloudscribe.ContentUtils/cloudscribe.ContentUtils.csproj b/src/cloudscribe.ContentUtils/cloudscribe.ContentUtils.csproj index 8fc240c2..5d3d09c8 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 8326fe5a..d2c3cd41 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/VersionProvider.cs b/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs new file mode 100644 index 00000000..195a1b6c --- /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.CompiledViews.Bootstrap5/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5.csproj b/src/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5.csproj index 6959e857..109f6941 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/StartupExtenstions.cs b/src/cloudscribe.Core.SimpleContent/StartupExtenstions.cs index fbe66631..312af2d5 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 00000000..e5f110f5 --- /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.Core.SimpleContent/cloudscribe.Core.SimpleContent.csproj b/src/cloudscribe.Core.SimpleContent/cloudscribe.Core.SimpleContent.csproj index 8689c599..f6556719 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 72d3cecc..8a4c5108 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 b80c03c7..991064bb 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/VersionProvider.cs b/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/VersionProvider.cs new file mode 100644 index 00000000..a34bf0de --- /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.CompiledViews.Bootstrap5/cloudscribe.SimpleContent.CompiledViews.Bootstrap5.csproj b/src/cloudscribe.SimpleContent.CompiledViews.Bootstrap5/cloudscribe.SimpleContent.CompiledViews.Bootstrap5.csproj index db25a08b..6bf793eb 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 be5d24f1..94b1a8b5 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/StartupExtensions.cs b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/StartupExtensions.cs index 1d2a1580..9b393826 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 00000000..08e8967a --- /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.ContentTemplates.Bootstrap5/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5.csproj b/src/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/cloudscribe.SimpleContent.ContentTemplates.Bootstrap5.csproj index 9a1a0f67..5ad76795 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 d96d2945..354a7339 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 8ee52e02..53b5a79f 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 57230ec3..4a0d9a66 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 aa26165a..64d67e3b 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 a6d970bd..a216e8b8 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 3c47aa6a..43a2a78a 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 e1f7cf3f..52d4cc98 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 a6c32bc5..9283d520 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 0734a43d..55d2ae87 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/VersionInfo.cs b/src/cloudscribe.SimpleContent.Web/VersionInfo.cs index d8835731..46e2876f 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/cloudscribe.SimpleContent.Web/cloudscribe.SimpleContent.Web.csproj b/src/cloudscribe.SimpleContent.Web/cloudscribe.SimpleContent.Web.csproj index b4f4abbc..15c62058 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/Config/CloudscribeFeatures.cs b/src/sourceDev.WebApp/Config/CloudscribeFeatures.cs index 95abf1fa..efc2a65d 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 8c27f596..a188ae72 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 diff --git a/src/sourceDev.WebApp/sourceDev.WebApp.csproj b/src/sourceDev.WebApp/sourceDev.WebApp.csproj index f6c6c08e..1e5a5a4b 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 0ed4dd01..e38bfecf 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