From ce0557463efb8e31b08cf785c470dc1136813708 Mon Sep 17 00:00:00 2001 From: linuxchata Date: Thu, 26 Mar 2026 11:10:47 +0100 Subject: [PATCH 1/2] Add central package manager --- Directory.Packages.props | 21 +++++++++++++++++++ .../Shark.AuthorizationServer.Common.csproj | 10 ++++----- .../Shark.AuthorizationServer.Core.csproj | 4 ++-- .../Shark.AuthorizationServer.Domain.csproj | 4 ++-- ....AuthorizationServer.DomainServices.csproj | 4 ++-- ...izationServer.Repositories.InMemory.csproj | 4 ++-- ...orizationServer.Repositories.SqLite.csproj | 6 +++--- .../Shark.AuthorizationServer.Sdk.csproj | 8 +++---- .../Shark.AuthorizationServer.csproj | 4 ++-- .../Shark.Sample.AuthorizationServer.csproj | 10 ++++----- .../Shark.Sample.Client.csproj | 2 +- .../Shark.Sample.ProtectedResource.csproj | 4 ++-- ...hark.AuthorizationServer.Core.Tests.csproj | 12 +++++------ 13 files changed, 57 insertions(+), 36 deletions(-) create mode 100644 Directory.Packages.props diff --git a/Directory.Packages.props b/Directory.Packages.props new file mode 100644 index 0000000..2a3f118 --- /dev/null +++ b/Directory.Packages.props @@ -0,0 +1,21 @@ + + + true + + + + + + + + + + + + + + + + + + diff --git a/src/Shark.AuthorizationServer.Common/Shark.AuthorizationServer.Common.csproj b/src/Shark.AuthorizationServer.Common/Shark.AuthorizationServer.Common.csproj index de6e4ab..2b95673 100644 --- a/src/Shark.AuthorizationServer.Common/Shark.AuthorizationServer.Common.csproj +++ b/src/Shark.AuthorizationServer.Common/Shark.AuthorizationServer.Common.csproj @@ -1,17 +1,17 @@ - + true - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + diff --git a/src/Shark.AuthorizationServer.Core/Shark.AuthorizationServer.Core.csproj b/src/Shark.AuthorizationServer.Core/Shark.AuthorizationServer.Core.csproj index e29fcde..ed1e863 100644 --- a/src/Shark.AuthorizationServer.Core/Shark.AuthorizationServer.Core.csproj +++ b/src/Shark.AuthorizationServer.Core/Shark.AuthorizationServer.Core.csproj @@ -1,11 +1,11 @@ - + true - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Shark.AuthorizationServer.Domain/Shark.AuthorizationServer.Domain.csproj b/src/Shark.AuthorizationServer.Domain/Shark.AuthorizationServer.Domain.csproj index ea60753..418ec9d 100644 --- a/src/Shark.AuthorizationServer.Domain/Shark.AuthorizationServer.Domain.csproj +++ b/src/Shark.AuthorizationServer.Domain/Shark.AuthorizationServer.Domain.csproj @@ -1,11 +1,11 @@ - + true - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Shark.AuthorizationServer.DomainServices/Shark.AuthorizationServer.DomainServices.csproj b/src/Shark.AuthorizationServer.DomainServices/Shark.AuthorizationServer.DomainServices.csproj index f0861fd..9dfc0fd 100644 --- a/src/Shark.AuthorizationServer.DomainServices/Shark.AuthorizationServer.DomainServices.csproj +++ b/src/Shark.AuthorizationServer.DomainServices/Shark.AuthorizationServer.DomainServices.csproj @@ -1,4 +1,4 @@ - + true @@ -9,7 +9,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Shark.AuthorizationServer.Repositories.InMemory/Shark.AuthorizationServer.Repositories.InMemory.csproj b/src/Shark.AuthorizationServer.Repositories.InMemory/Shark.AuthorizationServer.Repositories.InMemory.csproj index 5ca4935..07aa8f7 100644 --- a/src/Shark.AuthorizationServer.Repositories.InMemory/Shark.AuthorizationServer.Repositories.InMemory.csproj +++ b/src/Shark.AuthorizationServer.Repositories.InMemory/Shark.AuthorizationServer.Repositories.InMemory.csproj @@ -1,4 +1,4 @@ - + @@ -9,7 +9,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Shark.AuthorizationServer.Repositories.SqLite/Shark.AuthorizationServer.Repositories.SqLite.csproj b/src/Shark.AuthorizationServer.Repositories.SqLite/Shark.AuthorizationServer.Repositories.SqLite.csproj index fb570a1..8fcadf1 100644 --- a/src/Shark.AuthorizationServer.Repositories.SqLite/Shark.AuthorizationServer.Repositories.SqLite.csproj +++ b/src/Shark.AuthorizationServer.Repositories.SqLite/Shark.AuthorizationServer.Repositories.SqLite.csproj @@ -1,8 +1,8 @@ - + - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Shark.AuthorizationServer.Sdk/Shark.AuthorizationServer.Sdk.csproj b/src/Shark.AuthorizationServer.Sdk/Shark.AuthorizationServer.Sdk.csproj index 757442c..017c2ab 100644 --- a/src/Shark.AuthorizationServer.Sdk/Shark.AuthorizationServer.Sdk.csproj +++ b/src/Shark.AuthorizationServer.Sdk/Shark.AuthorizationServer.Sdk.csproj @@ -1,4 +1,4 @@ - + true @@ -17,9 +17,9 @@ - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Shark.AuthorizationServer/Shark.AuthorizationServer.csproj b/src/Shark.AuthorizationServer/Shark.AuthorizationServer.csproj index a346ca8..b93a8a5 100644 --- a/src/Shark.AuthorizationServer/Shark.AuthorizationServer.csproj +++ b/src/Shark.AuthorizationServer/Shark.AuthorizationServer.csproj @@ -1,4 +1,4 @@ - + @@ -19,7 +19,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Shark.Sample.AuthorizationServer/Shark.Sample.AuthorizationServer.csproj b/src/Shark.Sample.AuthorizationServer/Shark.Sample.AuthorizationServer.csproj index 45c38fb..7db7858 100644 --- a/src/Shark.Sample.AuthorizationServer/Shark.Sample.AuthorizationServer.csproj +++ b/src/Shark.Sample.AuthorizationServer/Shark.Sample.AuthorizationServer.csproj @@ -1,4 +1,4 @@ - + true @@ -55,12 +55,12 @@ - - - + + + true - + diff --git a/src/Shark.Sample.Client/Shark.Sample.Client.csproj b/src/Shark.Sample.Client/Shark.Sample.Client.csproj index 894134b..5f63e8c 100644 --- a/src/Shark.Sample.Client/Shark.Sample.Client.csproj +++ b/src/Shark.Sample.Client/Shark.Sample.Client.csproj @@ -1,7 +1,7 @@ - + diff --git a/src/Shark.Sample.ProtectedResource/Shark.Sample.ProtectedResource.csproj b/src/Shark.Sample.ProtectedResource/Shark.Sample.ProtectedResource.csproj index 52223bd..82aa6ad 100644 --- a/src/Shark.Sample.ProtectedResource/Shark.Sample.ProtectedResource.csproj +++ b/src/Shark.Sample.ProtectedResource/Shark.Sample.ProtectedResource.csproj @@ -1,8 +1,8 @@ - - + + diff --git a/tests/Shark.AuthorizationServer.Core.Tests/Shark.AuthorizationServer.Core.Tests.csproj b/tests/Shark.AuthorizationServer.Core.Tests/Shark.AuthorizationServer.Core.Tests.csproj index d06120f..7620a19 100644 --- a/tests/Shark.AuthorizationServer.Core.Tests/Shark.AuthorizationServer.Core.Tests.csproj +++ b/tests/Shark.AuthorizationServer.Core.Tests/Shark.AuthorizationServer.Core.Tests.csproj @@ -1,4 +1,4 @@ - + false @@ -6,14 +6,14 @@ - - - - + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + true From 9feeeec519f13d96b1a86b7ed6a49ce3c7ab9119 Mon Sep 17 00:00:00 2001 From: linuxchata Date: Thu, 26 Mar 2026 11:25:57 +0100 Subject: [PATCH 2/2] Update package versions --- Directory.Packages.props | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 2a3f118..bf3cf5c 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -3,19 +3,19 @@ true - - + + - - - + + + - + - + \ No newline at end of file