Skip to content

Commit f86896e

Browse files
Merge branch 'develop'
2 parents ada676a + 3ff1029 commit f86896e

File tree

12 files changed

+21
-41
lines changed

12 files changed

+21
-41
lines changed

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<!-- Solution version numbers -->
33
<PropertyGroup>
4-
<MajorVersion>1</MajorVersion>
5-
<MinorVersion>2</MinorVersion>
6-
<PatchVersion>8</PatchVersion>
4+
<MajorVersion>2</MajorVersion>
5+
<MinorVersion>0</MinorVersion>
6+
<PatchVersion>0</PatchVersion>
77
</PropertyGroup>
88
<!-- Disable automatic package publishing -->
99
<PropertyGroup>

samples/Hyperbee.MigrationRunner.Couchbase/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
22

3-
FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base
3+
FROM mcr.microsoft.com/dotnet/runtime:9.0 AS base
44
WORKDIR /app
55

6-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
6+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
77
ARG BUILD_CONFIGURATION=Release
88
WORKDIR /src
99
COPY ["samples/Hyperbee.MigrationRunner.Couchbase/Hyperbee.MigrationRunner.Couchbase.csproj", "samples/Hyperbee.MigrationRunner.Couchbase/"]

samples/Hyperbee.MigrationRunner.Couchbase/Hyperbee.MigrationRunner.Couchbase.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,8 @@
5757
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
5858
</PackageReference>
5959
</ItemGroup>
60+
61+
<ItemGroup>
62+
<Folder Include="logs\" />
63+
</ItemGroup>
6064
</Project>

samples/Hyperbee.MigrationRunner.Couchbase/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
// All providers
2121
"FromPaths": [
22-
"..\\..\\..\\..\\..\\samples\\Hyperbee.Migrations.Couchbase.Samples\\bin\\Debug\\net8.0\\Hyperbee.Migrations.Couchbase.Samples.dll"
22+
"..\\..\\..\\..\\..\\samples\\Hyperbee.Migrations.Couchbase.Samples\\bin\\Debug\\net9.0\\Hyperbee.Migrations.Couchbase.Samples.dll"
2323
],
2424
"FromAssemblies": [
2525
]

samples/Hyperbee.MigrationRunner.Couchbase/logs/hyperbee-migrations-20240422.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

samples/Hyperbee.MigrationRunner.MongoDB/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
22

3-
FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base
3+
FROM mcr.microsoft.com/dotnet/runtime:9.0 AS base
44
WORKDIR /app
55

6-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
6+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
77
ARG BUILD_CONFIGURATION=Release
88
WORKDIR /src
99
COPY ["samples/Hyperbee.MigrationRunner.MongoDB/Hyperbee.MigrationRunner.MongoDB.csproj", "samples/Hyperbee.MigrationRunner.MongoDB/"]

samples/Hyperbee.MigrationRunner.MongoDB/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// All providers
1616
"FromPaths": [
17-
"..\\..\\..\\..\\..\\samples\\Hyperbee.Migrations.MongoDB.Samples\\bin\\Debug\\net8.0\\Hyperbee.Migrations.MongoDB.Samples.dll"
17+
"..\\..\\..\\..\\..\\samples\\Hyperbee.Migrations.MongoDB.Samples\\bin\\Debug\\net9.0\\Hyperbee.Migrations.MongoDB.Samples.dll"
1818
],
1919
"FromAssemblies": [
2020
]

samples/Hyperbee.MigrationRunner.Postgres/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
22

3-
FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base
3+
FROM mcr.microsoft.com/dotnet/runtime:9.0 AS base
44
WORKDIR /app
55

6-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
6+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
77
ARG BUILD_CONFIGURATION=Release
88
WORKDIR /src
99
COPY ["samples/Hyperbee.MigrationRunner.Postgres/Hyperbee.MigrationRunner.Postgres.csproj", "samples/Hyperbee.MigrationRunner.Postgres/"]

samples/Hyperbee.MigrationRunner.Postgres/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// All providers
1616
"FromPaths": [
17-
"..\\..\\..\\..\\..\\samples\\Hyperbee.Migrations.Postgres.Samples\\bin\\Debug\\net8.0\\Hyperbee.Migrations.Postgres.Samples.dll"
17+
"..\\..\\..\\..\\..\\samples\\Hyperbee.Migrations.Postgres.Samples\\bin\\Debug\\net9.0\\Hyperbee.Migrations.Postgres.Samples.dll"
1818
],
1919
"FromAssemblies": [
2020
]

src/Hyperbee.Migrations.Providers.Postgres/Hyperbee.Migrations.Providers.Postgres.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
2626
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
2727
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
28-
<PackageReference Include="Npgsql" Version="8.0.5" />
29-
<PackageReference Include="Npgsql.DependencyInjection" Version="8.0.5" />
28+
<PackageReference Include="Npgsql" Version="9.0.1" />
29+
<PackageReference Include="Npgsql.DependencyInjection" Version="9.0.1" />
3030
</ItemGroup>
3131

3232
<ItemGroup>

0 commit comments

Comments
 (0)