Skip to content

Commit d1c2758

Browse files
chore : (release+prerelease) Upgrade .NET to NET 9
1 parent eb2fd76 commit d1c2758

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
publish:
1616
env:
1717
CONFIGURATION: 'Release'
18-
DOTNET_VERSION: '6.0'
18+
DOTNET_VERSION: '9.0'
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
publish:
1111
env:
1212
CONFIGURATION: 'Release'
13-
DOTNET_VERSION: '6.0'
13+
DOTNET_VERSION: '9.0'
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4

NotoriousTest.PostgreSql/PostgreContainerAsyncInfrastructure.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ public PostgreContainerAsyncInfrastructure(bool initialize = false) : base(initi
2525
}
2626

2727
/// <summary>
28-
/// Returns a SQL Server connection connected to the current infrastructure's database.
28+
/// Returns a PostgreSQL connection connected to the current infrastructure's database.
2929
/// </summary>
30-
/// <returns>A SqlConnection instance connected to the current infrastructure's database.</returns>
30+
/// <returns>A NpgsqlConnection instance connected to the current infrastructure's database.</returns>
3131
public NpgsqlConnection GetDatabaseConnection() => new NpgsqlConnection(GetConnectionString(FullDbName));
3232

3333
/// <summary>
34-
/// Returns a SQL Server connection string pointing to the current infrastructure's database.
34+
/// Returns a PostgreSQL connection string pointing to the current infrastructure's database.
3535
/// </summary>
3636
/// <returns>A SqlConnection instance pointing to the current infrastructure's database.</returns>
3737
public string GetDatabaseConnectionString() => GetConnectionString(FullDbName);
@@ -55,7 +55,7 @@ public override async Task Initialize()
5555
/// <summary>
5656
/// Called after the database is created. Override this method to populate the database with data.
5757
/// </summary>
58-
/// <param name="connection">A SqlConnection pointing on the newly created database</param>
58+
/// <param name="connection">A NpgsqlConnection pointing on the newly created database</param>
5959
protected virtual Task PopulateDatabase(NpgsqlConnection connection)
6060
{
6161
return Task.CompletedTask;

0 commit comments

Comments
 (0)