Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chores: migrate access mgmt #101

Closed
wants to merge 10 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
48 changes: 24 additions & 24 deletions .github/workflows/_deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,27 +89,27 @@ jobs:
echo "Image: ${IMAGE}"
echo "Tag: ${TAG}"

deploy-terraform:
name: Run terraform deployment

if: inputs.terraform

strategy:
fail-fast: false
matrix:
environment: [at21, at22]

needs:
- build-push

uses: ./.github/workflows/_deploy-app-terraform.yml
with:
environment: ${{ matrix.environment }}
working_dir: ${{ inputs.path }}/deploy
tf_state: ${{ inputs.terraformStateFile }}
tf_args: "-var image=${{ needs.build-push.outputs.image }}"

databaseBootstrap: ${{ inputs.databaseBootstrap }}
databaseName: ${{ inputs.databaseName }}
databaseRoleprefix: ${{ inputs.databaseRoleprefix }}
databaseSchema: ${{ inputs.databaseSchema }}
# deploy-terraform:
# name: Run terraform deployment

# if: inputs.terraform

# strategy:
# fail-fast: false
# matrix:
# environment: [at21, at22]

# needs:
# - build-push

# uses: ./.github/workflows/_deploy-app-terraform.yml
# with:
# environment: ${{ matrix.environment }}
# working_dir: ${{ inputs.path }}/deploy
# tf_state: ${{ inputs.terraformStateFile }}
# tf_args: "-var image=${{ needs.build-push.outputs.image }}"

# databaseBootstrap: ${{ inputs.databaseBootstrap }}
# databaseName: ${{ inputs.databaseName }}
# databaseRoleprefix: ${{ inputs.databaseRoleprefix }}
# databaseSchema: ${{ inputs.databaseSchema }}
5 changes: 0 additions & 5 deletions .justfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,17 @@
# Install node packages required to run scripts - uses pnpm to install the packages
[private]
@install-script-packages:
#!pwsh
pushd .github/scripts
pnpm install

[private]
@install-script-packages-frozen:
#!pwsh
pushd .github/scripts
pnpm install --frozen-lockfile

# Run the script to update solution files
@update-sln-files: install-script-packages-frozen
#!pwsh
./.github/scripts/node_modules/.bin/tsx ./.github/scripts/update-sln-files.mts

# Print all projects metadata
@get-metadata: install-script-packages-frozen
#!pwsh
./.github/scripts/node_modules/.bin/tsx ./.github/scripts/get-metadata.mts
44 changes: 44 additions & 0 deletions Altinn.Authorization.sln
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,22 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{7E2E4A16
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Altinn.Authorization.Hosting.Tests", "src\libs\Altinn.Authorization.Hosting\tests\Altinn.Authorization.Hosting.Tests\Altinn.Authorization.Hosting.Tests.csproj", "{53F3961A-B2F9-4BF8-9365-80D93DB621B2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Altinn.Authorization.AccessManagement", "Altinn.Authorization.AccessManagement", "{AAD00281-4A05-44C6-8D48-0F7F353A9319}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{BD64EDE7-B4EB-4F9D-85E0-FA9D16D4027F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Altinn.AccessManagement.Tests", "src\apps\Altinn.Authorization.AccessManagement\test\Altinn.AccessManagement.Tests\Altinn.AccessManagement.Tests.csproj", "{1147F19E-C547-4D1E-8E12-1A09055B542B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{3B9101A0-330F-45FE-A41F-3195770D55ED}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Altinn.AccessManagement", "src\apps\Altinn.Authorization.AccessManagement\src\Altinn.AccessManagement\Altinn.AccessManagement.csproj", "{0B57252C-2770-402D-9CD5-B67632963A04}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Altinn.AccessManagement.Core", "src\apps\Altinn.Authorization.AccessManagement\src\Altinn.AccessManagement.Core\Altinn.AccessManagement.Core.csproj", "{6A97882B-BD8B-4D70-9791-2FBBC4FE8019}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Altinn.AccessManagement.Integration", "src\apps\Altinn.Authorization.AccessManagement\src\Altinn.AccessManagement.Integration\Altinn.AccessManagement.Integration.csproj", "{30B22C40-7349-4BF3-8D65-2425AE78F1D7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Altinn.AccessManagement.Persistence", "src\apps\Altinn.Authorization.AccessManagement\src\Altinn.AccessManagement.Persistence\Altinn.AccessManagement.Persistence.csproj", "{61DB1AB6-1B8C-4BDA-931E-04FD48A2370B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -102,6 +118,26 @@ Global
{53F3961A-B2F9-4BF8-9365-80D93DB621B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{53F3961A-B2F9-4BF8-9365-80D93DB621B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{53F3961A-B2F9-4BF8-9365-80D93DB621B2}.Release|Any CPU.Build.0 = Release|Any CPU
{1147F19E-C547-4D1E-8E12-1A09055B542B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1147F19E-C547-4D1E-8E12-1A09055B542B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1147F19E-C547-4D1E-8E12-1A09055B542B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1147F19E-C547-4D1E-8E12-1A09055B542B}.Release|Any CPU.Build.0 = Release|Any CPU
{0B57252C-2770-402D-9CD5-B67632963A04}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0B57252C-2770-402D-9CD5-B67632963A04}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0B57252C-2770-402D-9CD5-B67632963A04}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0B57252C-2770-402D-9CD5-B67632963A04}.Release|Any CPU.Build.0 = Release|Any CPU
{6A97882B-BD8B-4D70-9791-2FBBC4FE8019}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6A97882B-BD8B-4D70-9791-2FBBC4FE8019}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6A97882B-BD8B-4D70-9791-2FBBC4FE8019}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6A97882B-BD8B-4D70-9791-2FBBC4FE8019}.Release|Any CPU.Build.0 = Release|Any CPU
{30B22C40-7349-4BF3-8D65-2425AE78F1D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{30B22C40-7349-4BF3-8D65-2425AE78F1D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{30B22C40-7349-4BF3-8D65-2425AE78F1D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{30B22C40-7349-4BF3-8D65-2425AE78F1D7}.Release|Any CPU.Build.0 = Release|Any CPU
{61DB1AB6-1B8C-4BDA-931E-04FD48A2370B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{61DB1AB6-1B8C-4BDA-931E-04FD48A2370B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{61DB1AB6-1B8C-4BDA-931E-04FD48A2370B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{61DB1AB6-1B8C-4BDA-931E-04FD48A2370B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{7A57912A-A922-4866-8BD8-A55CEB91B2FD} = {975139F1-669A-47EF-B6FB-9514471F6058}
Expand All @@ -128,5 +164,13 @@ Global
{C7F9BA45-8010-4B92-8CC7-5050107F2BFE} = {D4E493DD-D9AB-4D68-BD8E-9BE156CD175A}
{7E2E4A16-8A53-4E6A-BC22-832D541E1B92} = {EB54B6F3-D4CE-4C49-90AC-993D59327008}
{53F3961A-B2F9-4BF8-9365-80D93DB621B2} = {7E2E4A16-8A53-4E6A-BC22-832D541E1B92}
{AAD00281-4A05-44C6-8D48-0F7F353A9319} = {7A57912A-A922-4866-8BD8-A55CEB91B2FD}
{BD64EDE7-B4EB-4F9D-85E0-FA9D16D4027F} = {AAD00281-4A05-44C6-8D48-0F7F353A9319}
{1147F19E-C547-4D1E-8E12-1A09055B542B} = {BD64EDE7-B4EB-4F9D-85E0-FA9D16D4027F}
{3B9101A0-330F-45FE-A41F-3195770D55ED} = {AAD00281-4A05-44C6-8D48-0F7F353A9319}
{0B57252C-2770-402D-9CD5-B67632963A04} = {3B9101A0-330F-45FE-A41F-3195770D55ED}
{6A97882B-BD8B-4D70-9791-2FBBC4FE8019} = {3B9101A0-330F-45FE-A41F-3195770D55ED}
{30B22C40-7349-4BF3-8D65-2425AE78F1D7} = {3B9101A0-330F-45FE-A41F-3195770D55ED}
{61DB1AB6-1B8C-4BDA-931E-04FD48A2370B} = {3B9101A0-330F-45FE-A41F-3195770D55ED}
EndGlobalSection
EndGlobal
9 changes: 0 additions & 9 deletions Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"version": "9.0.100",
"rollForward": "latestFeature"
}
}
2 changes: 1 addition & 1 deletion infra/modules/postgres_server/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
postgres_server_sku = var.is_prod_like ? "GP_Standard_D4s_v3" : "B_Standard_B2ms"
postgres_server_sku = var.is_prod_like ? "GP_Standard_D4s_v3" : "B_Standard_B1ms"
}


Expand Down
3 changes: 2 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project>

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>Altinn.Authorization</UserSecretsId>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>12.0</LangVersion>
<!-- <Nullable>enable</Nullable> -->
Expand Down
148 changes: 95 additions & 53 deletions src/Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,54 +1,96 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Altinn.Authorization.ServiceDefaults.Npgsql.Yuniql" Version="2.2.2" />
<PackageVersion Include="Altinn.Authorization.ServiceDefaults" Version="2.2.2" />
<PackageVersion Include="Azure.Identity" Version="1.12.1" />
<PackageVersion Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version=" 1.3.0-beta.1" />
<PackageVersion Include="Azure.ResourceManager.KeyVault" Version="1.3.0" />
<PackageVersion Include="Azure.ResourceManager.PostgreSql" Version="1.1.3" />
<PackageVersion Include="Azure.Security.KeyVault.Secrets" Version="4.6.0" />
<PackageVersion Include="coverlet.collector" Version=" 6.0.2" />
<PackageVersion Include="MassTransit.Azure.ServiceBus.Core" Version=" 8.2.6-develop.1998" />
<PackageVersion Include="MassTransit.Extensions.DependencyInjection" Version=" 7.3.1" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.8" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.8" />
<PackageVersion Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.2.0" />
<PackageVersion Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="8.0.7" />
<PackageVersion Include="Microsoft.Azure.AppConfiguration.AspNetCore" Version=" 8.0.0-preview.3" />
<PackageVersion Include="Microsoft.Extensions.Azure" Version=" 1.7.4" />
<PackageVersion Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="3.1.24" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions" Version="8.0.8" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="8.0.8" />
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageVersion Include="Microsoft.Extensions.Logging.ApplicationInsights" Version="2.22.0" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageVersion Include="Microsoft.Extensions.Telemetry.Abstractions" Version="8.7.0" />
<PackageVersion Include="Microsoft.FeatureManagement.AspNetCore" Version="3.5.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version=" 17.10.0" />
<PackageVersion Include="Moq" Version=" 4.20.70" />
<PackageVersion Include="Nerdbank.Streams" Version="2.11.79" />
<PackageVersion Include="Npgsql.OpenTelemetry" Version=" 8.0.3" />
<PackageVersion Include="Npgsql" Version="8.0.4" />
<PackageVersion Include="OpenTelemetry.Exporter.Console" Version=" 1.9.0" />
<PackageVersion Include="OpenTelemetry.Extensions.Hosting" Version=" 1.9.0" />
<PackageVersion Include="OpenTelemetry.Instrumentation.AspNetCore" Version=" 1.9.0" />
<PackageVersion Include="OpenTelemetry.Instrumentation.Http" Version=" 1.9.0" />
<PackageVersion Include="OpenTelemetry" Version=" 1.9.0" />
<PackageVersion Include="Spectre.Console" Version="0.49.1" />
<PackageVersion Include="StyleCop.Analyzers" Version=" 1.2.0-beta.556" />
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version=" 2.8.2" />
<PackageVersion Include="xunit" Version=" 2.9.0" />
<PackageVersion Include="Yuniql.AspNetCore" Version=" 1.2.25" />
<PackageVersion Include="Yuniql.Core" Version=" 1.3.15" />
<PackageVersion Include="Yuniql.PostgreSql" Version=" 1.3.15" />
</ItemGroup>
</Project>
<ItemGroup>
<PackageVersion Include="Altinn.Authorization.ABAC" Version="0.0.8" />
<PackageVersion Include="Altinn.Authorization.ProblemDetails" Version="3.0.1" />
<PackageVersion Include="Altinn.Authorization.ProblemDetails.Abstractions"
Version="3.0.1" />
<PackageVersion Include="Altinn.Authorization.ServiceDefaults" Version="2.7.0" />
<PackageVersion Include="Altinn.Authorization.ServiceDefaults.Npgsql.Yuniql"
Version="2.7.0" />
<PackageVersion Include="Altinn.Common.AccessToken" Version="4.5.4" />
<PackageVersion Include="Altinn.Common.AccessTokenClient" Version="3.0.10" />
<PackageVersion Include="Altinn.Common.PEP" Version="4.1.2" />
<PackageVersion Include="Altinn.Platform.Models" Version="1.6.1" />
<PackageVersion Include="Altinn.Platform.Storage.Interface" Version="4.0.4" />
<PackageVersion Include="Altinn.Swashbuckle.Abstractions" Version="2.1.1" />
<PackageVersion Include="Altinn.Urn" Version="2.5.1" />
<PackageVersion Include="Altinn.Urn.Swashbuckle" Version="2.5.1" />
<PackageVersion Include="AutoMapper.Extensions.Microsoft.DependencyInjection"
Version="12.0.1" />
<PackageVersion Include="Azure.Extensions.AspNetCore.Configuration.Secrets"
Version="1.3.2" />
<PackageVersion Include="Azure.Identity" Version="1.13.1" />
<PackageVersion Include="Azure.Monitor.OpenTelemetry.AspNetCore" Version="1.3.0-beta.2" />
<PackageVersion Include="Azure.Monitor.OpenTelemetry.Exporter" Version="1.3.0" />
<PackageVersion Include="Azure.ResourceManager.KeyVault" Version="1.3.0" />
<PackageVersion Include="Azure.ResourceManager.PostgreSql" Version="1.2.0" />
<PackageVersion Include="Azure.Security.KeyVault.Certificates" Version="4.7.0" />
<PackageVersion Include="Azure.Security.KeyVault.Secrets" Version="4.7.0" />
<PackageVersion Include="Azure.Storage.Blobs" Version="12.23.0" />
<PackageVersion Include="Azure.Storage.Queues" Version="12.21.0" />
<PackageVersion Include="coverlet.collector" Version=" 6.0.2" />
<PackageVersion Include="Dapper" Version="2.1.35" />
<PackageVersion Include="JWTCookieAuthentication" Version="4.0.1" />
<PackageVersion Include="MassTransit.Azure.ServiceBus.Core"
Version=" 8.2.6-develop.1998" />
<PackageVersion Include="MassTransit.Extensions.DependencyInjection" Version=" 7.3.1" />
<PackageVersion Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect"
Version="9.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
<PackageVersion Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.2.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
<PackageVersion Include="Microsoft.Azure.AppConfiguration.AspNetCore"
Version="8.1.0-preview" />
<PackageVersion Include="Microsoft.Extensions.Azure" Version="1.9.0" />
<PackageVersion Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.AzureKeyVault"
Version="3.1.24" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="8.0.1" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="8.0.8" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions"
Version="8.0.8" />
<PackageVersion Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" />
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging.ApplicationInsights"
Version="2.22.0" />
<PackageVersion Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageVersion Include="Microsoft.Extensions.Telemetry.Abstractions" Version="9.0.0" />
<PackageVersion Include="Microsoft.FeatureManagement.AspNetCore" Version="4.0.0" />
<PackageVersion Include="Microsoft.IdentityModel.Logging" Version="8.2.1" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageVersion Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets"
Version="1.21.0" />
<PackageVersion Include="Moq" Version="4.20.72" />
<PackageVersion Include="Nerdbank.Streams" Version="2.11.79" />
<PackageVersion Include="Npgsql" Version="8.0.5" />
<PackageVersion Include="Npgsql.OpenTelemetry" Version="8.0.5" />
<PackageVersion Include="OpenTelemetry" Version="1.10.0" />
<PackageVersion Include="OpenTelemetry.Exporter.Console" Version="1.10.0" />
<PackageVersion Include="OpenTelemetry.Extensions.Hosting" Version="1.10.0" />
<PackageVersion Include="OpenTelemetry.Instrumentation.AspNetCore" Version=" 1.9.0" />
<PackageVersion Include="OpenTelemetry.Instrumentation.Http" Version="1.10.0" />
<PackageVersion Include="Spectre.Console" Version="0.49.1" />
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
<PackageVersion Include="Swashbuckle.AspNetCore" Version="7.1.0" />
<PackageVersion Include="Swashbuckle.AspNetCore.Annotations" Version="7.1.0" />
<PackageVersion Include="Swashbuckle.AspNetCore.Filters" Version="8.0.2" />
<PackageVersion Include="System.Linq.Async" Version="6.0.1" />
<PackageVersion Include="System.Text.Json" Version="9.0.0" />
<PackageVersion Include="Testcontainers.PostgreSql" Version="4.0.0" />
<PackageVersion Include="xunit" Version="2.9.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageVersion Include="Yuniql.AspNetCore" Version=" 1.2.25" />
<PackageVersion Include="Yuniql.Core" Version=" 1.3.15" />
<PackageVersion Include="Yuniql.PostgreSql" Version=" 1.3.15" />
</ItemGroup>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
</Project>
Loading
Loading