From 11e8c34c9e561350255716a11df38bd5c6155715 Mon Sep 17 00:00:00 2001 From: Rinsen Date: Mon, 8 Dec 2025 22:49:51 +0100 Subject: [PATCH 1/2] Updating --- .aspire/settings.json | 3 +++ .../AspireDatabaseInstaller.AppHost.csproj | 8 +++---- .../InstallationSampleConsoleApp.csproj | 4 ++-- .../Rinsen.DatabaseInstaller.csproj | 24 +++++++++---------- .../Rinsen.DatabaseInstaller.Tests.csproj | 4 ++-- 5 files changed, 23 insertions(+), 20 deletions(-) create mode 100644 .aspire/settings.json diff --git a/.aspire/settings.json b/.aspire/settings.json new file mode 100644 index 0000000..e80a785 --- /dev/null +++ b/.aspire/settings.json @@ -0,0 +1,3 @@ +{ + "appHostPath": "../sample/AspireDatabaseInstaller.AppHost/AspireDatabaseInstaller.AppHost.csproj" +} \ No newline at end of file diff --git a/sample/AspireDatabaseInstaller.AppHost/AspireDatabaseInstaller.AppHost.csproj b/sample/AspireDatabaseInstaller.AppHost/AspireDatabaseInstaller.AppHost.csproj index d164b66..9bf19f2 100644 --- a/sample/AspireDatabaseInstaller.AppHost/AspireDatabaseInstaller.AppHost.csproj +++ b/sample/AspireDatabaseInstaller.AppHost/AspireDatabaseInstaller.AppHost.csproj @@ -1,10 +1,10 @@ - + Exe - net9.0 + net10.0 enable enable true @@ -12,8 +12,8 @@ - - + + diff --git a/sample/InstallationSampleConsoleApp/InstallationSampleConsoleApp.csproj b/sample/InstallationSampleConsoleApp/InstallationSampleConsoleApp.csproj index e6a4059..53936a5 100644 --- a/sample/InstallationSampleConsoleApp/InstallationSampleConsoleApp.csproj +++ b/sample/InstallationSampleConsoleApp/InstallationSampleConsoleApp.csproj @@ -2,7 +2,7 @@ Exe - net9.0 + net10.0 d5edc207-e02d-4b19-91f2-74cf751e8b1d @@ -13,7 +13,7 @@ - + diff --git a/src/Rinsen.DatabaseInstaller/Rinsen.DatabaseInstaller.csproj b/src/Rinsen.DatabaseInstaller/Rinsen.DatabaseInstaller.csproj index 228741b..cca79e9 100644 --- a/src/Rinsen.DatabaseInstaller/Rinsen.DatabaseInstaller.csproj +++ b/src/Rinsen.DatabaseInstaller/Rinsen.DatabaseInstaller.csproj @@ -1,9 +1,9 @@  - net9.0 + net10.0 enable - 0.7.1 + 0.7.2 Rinsen Database Installer Fredrik Rinsén Database installer and version handler for dotnet core projects @@ -23,16 +23,16 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/test/Rinsen.DatabaseInstaller.Tests/Rinsen.DatabaseInstaller.Tests.csproj b/test/Rinsen.DatabaseInstaller.Tests/Rinsen.DatabaseInstaller.Tests.csproj index 8e142e9..52a7268 100644 --- a/test/Rinsen.DatabaseInstaller.Tests/Rinsen.DatabaseInstaller.Tests.csproj +++ b/test/Rinsen.DatabaseInstaller.Tests/Rinsen.DatabaseInstaller.Tests.csproj @@ -1,6 +1,6 @@  - net9.0 + net10.0 false false false @@ -11,7 +11,7 @@ - + all runtime; build; native; contentfiles; analyzers From 1809b11c989a424dc6a7d9e46bae9c43498bc908 Mon Sep 17 00:00:00 2001 From: Rinsen Date: Mon, 8 Dec 2025 23:06:44 +0100 Subject: [PATCH 2/2] Update completed --- sample/AspireDatabaseInstaller.AppHost/Program.cs | 1 + src/Rinsen.DatabaseInstaller/Rinsen.DatabaseInstaller.csproj | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/sample/AspireDatabaseInstaller.AppHost/Program.cs b/sample/AspireDatabaseInstaller.AppHost/Program.cs index 140f68b..8ff5a5d 100644 --- a/sample/AspireDatabaseInstaller.AppHost/Program.cs +++ b/sample/AspireDatabaseInstaller.AppHost/Program.cs @@ -3,6 +3,7 @@ var builder = DistributedApplication.CreateBuilder(args); var sqlServer = builder.AddSqlServer("TestDb") + .WithImageTag("2025-latest") .WithDataVolume() .WithLifetime(ContainerLifetime.Persistent); diff --git a/src/Rinsen.DatabaseInstaller/Rinsen.DatabaseInstaller.csproj b/src/Rinsen.DatabaseInstaller/Rinsen.DatabaseInstaller.csproj index cca79e9..d2d14d6 100644 --- a/src/Rinsen.DatabaseInstaller/Rinsen.DatabaseInstaller.csproj +++ b/src/Rinsen.DatabaseInstaller/Rinsen.DatabaseInstaller.csproj @@ -3,7 +3,7 @@ net10.0 enable - 0.7.2 + 0.8.0 Rinsen Database Installer Fredrik Rinsén Database installer and version handler for dotnet core projects