From a3ebe80a70c40be60851aed1efb5f0a775c3f380 Mon Sep 17 00:00:00 2001 From: Erwin van der Valk Date: Fri, 7 Feb 2025 10:27:53 +0100 Subject: [PATCH] added solution filters --- .../clients/identity-server-clients.slnf | 40 +++++++++++++++++++ identity-server/identity-server.slnf | 26 ++++++++++++ .../perf/identity-server-perf.slnf | 8 ++++ templates/templates.slnf | 14 +++++++ 4 files changed, 88 insertions(+) create mode 100644 identity-server/clients/identity-server-clients.slnf create mode 100644 identity-server/identity-server.slnf create mode 100644 identity-server/perf/identity-server-perf.slnf create mode 100644 templates/templates.slnf diff --git a/identity-server/clients/identity-server-clients.slnf b/identity-server/clients/identity-server-clients.slnf new file mode 100644 index 000000000..0a4eb7c24 --- /dev/null +++ b/identity-server/clients/identity-server-clients.slnf @@ -0,0 +1,40 @@ +{ + "solution": { + "path": "..\\..\\products.sln", + "projects": [ + "identity-server\\clients\\src\\APIs\\DPoPApi\\DPoPApi.csproj", + "identity-server\\clients\\src\\APIs\\ResourceBasedApi\\ResourceBasedApi.csproj", + "identity-server\\clients\\src\\APIs\\SimpleApi\\SimpleApi.csproj", + "identity-server\\clients\\src\\ConsoleCibaClient\\ConsoleCibaClient.csproj", + "identity-server\\clients\\src\\ConsoleClientCredentialsFlow\\ConsoleClientCredentialsFlow.csproj", + "identity-server\\clients\\src\\ConsoleClientCredentialsFlowCallingIdentityServerApi\\ConsoleClientCredentialsFlowCallingIdentityServerApi.csproj", + "identity-server\\clients\\src\\ConsoleClientCredentialsFlowDPoP\\ConsoleClientCredentialsFlowDPoP.csproj", + "identity-server\\clients\\src\\ConsoleClientCredentialsFlowPostBody\\ConsoleClientCredentialsFlowPostBody.csproj", + "identity-server\\clients\\src\\ConsoleCode\\ConsoleCode.csproj", + "identity-server\\clients\\src\\ConsoleCustomGrant\\ConsoleExtensionGrant.csproj", + "identity-server\\clients\\src\\ConsoleDcrClient\\ConsoleDcrClient.csproj", + "identity-server\\clients\\src\\ConsoleDeviceFlow\\ConsoleDeviceFlow.csproj", + "identity-server\\clients\\src\\ConsoleEphemeralMtlsClient\\ConsoleEphemeralMtlsClient.csproj", + "identity-server\\clients\\src\\ConsoleIntrospectionClient\\ConsoleIntrospectionClient.csproj", + "identity-server\\clients\\src\\ConsoleMTLSClient\\ConsoleMTLSClient.csproj", + "identity-server\\clients\\src\\ConsoleParameterizedScopeClient\\ConsoleParameterizedScopeClient.csproj", + "identity-server\\clients\\src\\ConsolePrivateKeyJwtClient\\ConsolePrivateKeyJwtClient.csproj", + "identity-server\\clients\\src\\ConsoleResourceIndicators\\ConsoleResourceIndicators.csproj", + "identity-server\\clients\\src\\ConsoleResourceOwnerFlow\\ConsoleResourceOwnerFlow.csproj", + "identity-server\\clients\\src\\ConsoleResourceOwnerFlowPublic\\ConsoleResourceOwnerFlowPublic.csproj", + "identity-server\\clients\\src\\ConsoleResourceOwnerFlowReference\\ConsoleResourceOwnerFlowReference.csproj", + "identity-server\\clients\\src\\ConsoleResourceOwnerFlowRefreshToken\\ConsoleResourceOwnerFlowRefreshToken.csproj", + "identity-server\\clients\\src\\ConsoleResourceOwnerFlowUserInfo\\ConsoleResourceOwnerFlowUserInfo.csproj", + "identity-server\\clients\\src\\ConsoleScopesResources\\ConsoleScopesResources.csproj", + "identity-server\\clients\\src\\Constants\\Constants.csproj", + "identity-server\\clients\\src\\JsOidc\\JsOidc.csproj", + "identity-server\\clients\\src\\MvcAutomaticTokenManagement\\MvcAutomaticTokenManagement.csproj", + "identity-server\\clients\\src\\MvcCode\\MvcCode.csproj", + "identity-server\\clients\\src\\MvcDPoP\\MvcDPoP.csproj", + "identity-server\\clients\\src\\MvcHybridBackChannel\\MvcHybridBackChannel.csproj", + "identity-server\\clients\\src\\MvcJarJwt\\MvcJarJwt.csproj", + "identity-server\\clients\\src\\MvcJarUriJwt\\MvcJarUriJwt.csproj", + "identity-server\\clients\\src\\WindowsConsoleSystemBrowser\\WindowsConsoleSystemBrowser.csproj" + ] + } +} diff --git a/identity-server/identity-server.slnf b/identity-server/identity-server.slnf new file mode 100644 index 000000000..91ab7ddfd --- /dev/null +++ b/identity-server/identity-server.slnf @@ -0,0 +1,26 @@ +{ + "solution": { + "path": "..\\products.sln", + "projects": [ + "identity-server\\hosts\\AspNetIdentity\\Host.AspNetIdentity.csproj", + "identity-server\\hosts\\Configuration\\Host.Configuration.csproj", + "identity-server\\hosts\\EntityFramework\\Host.EntityFramework.csproj", + "identity-server\\hosts\\main\\Host.Main.csproj", + "identity-server\\migrations\\AspNetIdentityDb\\AspNetIdentityDb.csproj", + "identity-server\\migrations\\IdentityServerDb\\IdentityServerDb.csproj", + "identity-server\\src\\AspNetIdentity\\Duende.IdentityServer.AspNetIdentity.csproj", + "identity-server\\src\\Configuration.EntityFramework\\Duende.IdentityServer.Configuration.EntityFramework.csproj", + "identity-server\\src\\Configuration\\Duende.IdentityServer.Configuration.csproj", + "identity-server\\src\\EntityFramework.Storage\\Duende.IdentityServer.EntityFramework.Storage.csproj", + "identity-server\\src\\EntityFramework\\Duende.IdentityServer.EntityFramework.csproj", + "identity-server\\src\\IdentityServer\\Duende.IdentityServer.csproj", + "identity-server\\src\\Storage\\Duende.IdentityServer.Storage.csproj", + "identity-server\\test\\Configuration.IntegrationTests\\Configuration.IntegrationTests.csproj", + "identity-server\\test\\EntityFramework.IntegrationTests\\EntityFramework.IntegrationTests.csproj", + "identity-server\\test\\EntityFramework.Storage.IntegrationTests\\EntityFramework.Storage.IntegrationTests.csproj", + "identity-server\\test\\EntityFramework.Storage.UnitTests\\EntityFramework.Storage.UnitTests.csproj", + "identity-server\\test\\IdentityServer.IntegrationTests\\IdentityServer.IntegrationTests.csproj", + "identity-server\\test\\IdentityServer.UnitTests\\IdentityServer.UnitTests.csproj" + ] + } +} \ No newline at end of file diff --git a/identity-server/perf/identity-server-perf.slnf b/identity-server/perf/identity-server-perf.slnf new file mode 100644 index 000000000..79c10ad3e --- /dev/null +++ b/identity-server/perf/identity-server-perf.slnf @@ -0,0 +1,8 @@ +{ + "solution": { + "path": "..\\..\\products.sln", + "projects": [ + "identity-server\\perf\\IdentityServer.PerfTests\\IdentityServer.PerfTests.csproj" + ] + } +} diff --git a/templates/templates.slnf b/templates/templates.slnf new file mode 100644 index 000000000..9295da94f --- /dev/null +++ b/templates/templates.slnf @@ -0,0 +1,14 @@ +{ + "solution": { + "path": "..\\products.sln", + "projects": [ + "templates\\build\\build.csproj", + "templates\\src\\BffLocalApi\\BffLocalApi.csproj", + "templates\\src\\BffRemoteApi\\BffRemoteApi.csproj", + "templates\\src\\IdentityServerAspNetIdentity\\IdentityServerAspNetIdentity.csproj", + "templates\\src\\IdentityServerEmpty\\IdentityServerEmpty.csproj", + "templates\\src\\IdentityServerEntityFramework\\IdentityServerEntityFramework.csproj", + "templates\\src\\IdentityServerInMem\\IdentityServerInMem.csproj" + ] + } +} \ No newline at end of file