Skip to content

Commit a799b47

Browse files
Merge pull request #303 from CodebreakerApp/302-rename-postgresql
rename postgresql package (reserved)
2 parents 167f9ef + 68210f7 commit a799b47

12 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/codebreaker-lib-postgresql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches:
88
[ main ]
99
paths:
10-
- 'src/services/common/Codebreaker.Data.PostgreSQL/**'
10+
- 'src/services/common/Codebreaker.Data.Postgres/**'
1111

1212
# Allow manually trigger
1313
workflow_dispatch:
@@ -19,8 +19,8 @@ jobs:
1919
version-suffix: preview.1.
2020
version-number: ${{ github.run_number }}
2121
version-offset: 5
22-
solutionfile-path: src/Codebreaker.Backend.PostgreSQL.sln
23-
projectfile-path: src/services/common/Codebreaker.Data.PostgreSQL/Codebreaker.Data.PostgreSQL.csproj
22+
solutionfile-path: src/Codebreaker.Backend.Postgres.sln
23+
projectfile-path: src/services/common/Codebreaker.Data.PostgreSQL/Codebreaker.Data.Postgres.csproj
2424
dotnet-version: '9.0.x'
2525
artifact-name: codebreaker-postgres
2626
branch-name: main
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Codebreaker.Data.PostgreSQL", "services\common\Codebreaker.Data.PostgreSQL\Codebreaker.Data.PostgreSQL.csproj", "{4557EA75-02C8-B4BF-67BA-F4CA4DF1C78C}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Codebreaker.Data.Postgres", "services\common\Codebreaker.Data.Postgres\Codebreaker.Data.Postgres.csproj", "{2EB171A0-C848-7C0F-62E9-C0229013D73F}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1212
Debug|Any CPU = Debug|Any CPU
1313
Release|Any CPU = Release|Any CPU
1414
EndGlobalSection
1515
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16-
{4557EA75-02C8-B4BF-67BA-F4CA4DF1C78C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17-
{4557EA75-02C8-B4BF-67BA-F4CA4DF1C78C}.Debug|Any CPU.Build.0 = Debug|Any CPU
18-
{4557EA75-02C8-B4BF-67BA-F4CA4DF1C78C}.Release|Any CPU.ActiveCfg = Release|Any CPU
19-
{4557EA75-02C8-B4BF-67BA-F4CA4DF1C78C}.Release|Any CPU.Build.0 = Release|Any CPU
16+
{2EB171A0-C848-7C0F-62E9-C0229013D73F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{2EB171A0-C848-7C0F-62E9-C0229013D73F}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{2EB171A0-C848-7C0F-62E9-C0229013D73F}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{2EB171A0-C848-7C0F-62E9-C0229013D73F}.Release|Any CPU.Build.0 = Release|Any CPU
2020
EndGlobalSection
2121
GlobalSection(SolutionProperties) = preSolution
2222
HideSolutionNode = FALSE

src/services/common/Codebreaker.Data.PostgreSQL/.config/dotnet-tools.json renamed to src/services/common/Codebreaker.Data.Postgres/.config/dotnet-tools.json

File renamed without changes.

src/services/common/Codebreaker.Data.PostgreSQL/Codebreaker.Data.PostgreSQL.csproj renamed to src/services/common/Codebreaker.Data.Postgres/Codebreaker.Data.Postgres.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<PackageId>CNinnovation.Codebreaker.PostgreSQL</PackageId>
4+
<PackageId>CNinnovation.Codebreaker.Postgres</PackageId>
55
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<LangVersion>latest</LangVersion>
88
<Nullable>enable</Nullable>
99
<PackageTags>
10-
Codebreaker;CNinnovation;PostgreSQL
10+
Codebreaker;CNinnovation;Postgres
1111
</PackageTags>
1212
<Description>
1313
This library contains PostgreSQL data access for the Codebreaker backend services.

src/services/common/Codebreaker.Data.PostgreSQL/Configurations/GameConfiguration.cs renamed to src/services/common/Codebreaker.Data.Postgres/Configurations/GameConfiguration.cs

File renamed without changes.

src/services/common/Codebreaker.Data.PostgreSQL/Configurations/MoveConfiguration.cs renamed to src/services/common/Codebreaker.Data.Postgres/Configurations/MoveConfiguration.cs

File renamed without changes.

src/services/common/Codebreaker.Data.PostgreSQL/Directory.Packages.props renamed to src/services/common/Codebreaker.Data.Postgres/Directory.Packages.props

File renamed without changes.

src/services/common/Codebreaker.Data.PostgreSQL/GamesPostgresContext.cs renamed to src/services/common/Codebreaker.Data.Postgres/GamesPostgresContext.cs

File renamed without changes.

src/services/common/Codebreaker.Data.PostgreSQL/GlobalUsings.cs renamed to src/services/common/Codebreaker.Data.Postgres/GlobalUsings.cs

File renamed without changes.

src/services/common/Codebreaker.Data.PostgreSQL/Images/codebreaker.jpeg renamed to src/services/common/Codebreaker.Data.Postgres/Images/codebreaker.jpeg

File renamed without changes.

0 commit comments

Comments
 (0)