Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions IdentityServer/v7/SessionManagement/Api/Api.csproj

This file was deleted.

27 changes: 0 additions & 27 deletions IdentityServer/v7/SessionManagement/Api/IdentityController.cs

This file was deleted.

43 changes: 0 additions & 43 deletions IdentityServer/v7/SessionManagement/Api/Program.cs

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
var builder = DistributedApplication.CreateBuilder(args);

builder.AddProject<Projects.Api>("api");
builder.AddProject<Projects.SimpleApi>("api");

builder.AddProject<Projects.Client>("client");
var idsrv = builder.AddProject<Projects.IdentityServerHost>("identityserverhost");

builder.AddProject<Projects.IdentityServerHost>("identityserverhost");
builder.AddProject<Projects.Client>("client")
.WaitFor(idsrv);

builder.Build().Run();
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Api\Api.csproj" />
<ProjectReference Include="..\..\Apis\SimpleApi\SimpleApi.csproj" />
<ProjectReference Include="..\Client\Client.csproj" />
<ProjectReference Include="..\IdentityServerHost\IdentityServerHost.csproj" />
</ItemGroup>
Expand Down
12 changes: 6 additions & 6 deletions IdentityServer/v7/SessionManagement/SessionManagement.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ VisualStudioVersion = 17.1.32319.34
MinimumVisualStudioVersion = 15.0.26124.0
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Client", "Client\Client.csproj", "{559CD9B9-3756-41D8-BDC5-1EAC8AAFBF9A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Api", "Api\Api.csproj", "{D2931C0F-E591-4CBA-B487-3EE5A350F218}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IdentityServerHost", "IdentityServerHost\IdentityServerHost.csproj", "{2880B5FF-9B88-476B-9869-E8A76FE65CB8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SessionManagement.AppHost", "SessionManagement.AppHost\SessionManagement.AppHost.csproj", "{BD383672-7EF5-4737-91A9-92918CF2BBA7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspire.ServiceDefaults", "..\Aspire.ServiceDefaults\Aspire.ServiceDefaults.csproj", "{BE3015AC-8269-4D94-AB27-E835CBFC3AFC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleApi", "..\Apis\SimpleApi\SimpleApi.csproj", "{3186E5A3-F3D3-45F4-9915-96E531AA1A62}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -23,10 +23,6 @@ Global
{559CD9B9-3756-41D8-BDC5-1EAC8AAFBF9A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{559CD9B9-3756-41D8-BDC5-1EAC8AAFBF9A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{559CD9B9-3756-41D8-BDC5-1EAC8AAFBF9A}.Release|Any CPU.Build.0 = Release|Any CPU
{D2931C0F-E591-4CBA-B487-3EE5A350F218}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D2931C0F-E591-4CBA-B487-3EE5A350F218}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2931C0F-E591-4CBA-B487-3EE5A350F218}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2931C0F-E591-4CBA-B487-3EE5A350F218}.Release|Any CPU.Build.0 = Release|Any CPU
{2880B5FF-9B88-476B-9869-E8A76FE65CB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2880B5FF-9B88-476B-9869-E8A76FE65CB8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2880B5FF-9B88-476B-9869-E8A76FE65CB8}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -39,6 +35,10 @@ Global
{BE3015AC-8269-4D94-AB27-E835CBFC3AFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BE3015AC-8269-4D94-AB27-E835CBFC3AFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BE3015AC-8269-4D94-AB27-E835CBFC3AFC}.Release|Any CPU.Build.0 = Release|Any CPU
{3186E5A3-F3D3-45F4-9915-96E531AA1A62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3186E5A3-F3D3-45F4-9915-96E531AA1A62}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3186E5A3-F3D3-45F4-9915-96E531AA1A62}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3186E5A3-F3D3-45F4-9915-96E531AA1A62}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
17 changes: 0 additions & 17 deletions IdentityServer/v8/SessionManagement/Api/Api.csproj

This file was deleted.

27 changes: 0 additions & 27 deletions IdentityServer/v8/SessionManagement/Api/IdentityController.cs

This file was deleted.

43 changes: 0 additions & 43 deletions IdentityServer/v8/SessionManagement/Api/Program.cs

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
var builder = DistributedApplication.CreateBuilder(args);

builder.AddProject<Projects.Api>("api");
builder.AddProject<Projects.SimpleApi>("api");

builder.AddProject<Projects.Client>("client");
var idsvr = builder.AddProject<Projects.IdentityServerHost>("identityserverhost");

builder.AddProject<Projects.IdentityServerHost>("identityserverhost");
builder.AddProject<Projects.Client>("client")
.WaitFor(idsvr);

builder.Build().Run();
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Api\Api.csproj" />
<ProjectReference Include="..\..\Apis\SimpleApi\SimpleApi.csproj" />
<ProjectReference Include="..\Client\Client.csproj" />
<ProjectReference Include="..\IdentityServerHost\IdentityServerHost.csproj" />
</ItemGroup>
Expand Down
12 changes: 6 additions & 6 deletions IdentityServer/v8/SessionManagement/SessionManagement.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ VisualStudioVersion = 17.1.32319.34
MinimumVisualStudioVersion = 15.0.26124.0
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Client", "Client\Client.csproj", "{559CD9B9-3756-41D8-BDC5-1EAC8AAFBF9A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Api", "Api\Api.csproj", "{D2931C0F-E591-4CBA-B487-3EE5A350F218}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IdentityServerHost", "IdentityServerHost\IdentityServerHost.csproj", "{2880B5FF-9B88-476B-9869-E8A76FE65CB8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SessionManagement.AppHost", "SessionManagement.AppHost\SessionManagement.AppHost.csproj", "{B209266E-8692-4EBA-95B5-315C8C3B66B6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspire.ServiceDefaults", "..\Aspire.ServiceDefaults\Aspire.ServiceDefaults.csproj", "{9B0ECE6E-7F9A-483D-B974-D61D6A0BA88C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleApi", "..\Apis\SimpleApi\SimpleApi.csproj", "{B2FEB55A-BFF8-48CD-830E-64AD4D15CBA9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -23,10 +23,6 @@ Global
{559CD9B9-3756-41D8-BDC5-1EAC8AAFBF9A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{559CD9B9-3756-41D8-BDC5-1EAC8AAFBF9A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{559CD9B9-3756-41D8-BDC5-1EAC8AAFBF9A}.Release|Any CPU.Build.0 = Release|Any CPU
{D2931C0F-E591-4CBA-B487-3EE5A350F218}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D2931C0F-E591-4CBA-B487-3EE5A350F218}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2931C0F-E591-4CBA-B487-3EE5A350F218}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2931C0F-E591-4CBA-B487-3EE5A350F218}.Release|Any CPU.Build.0 = Release|Any CPU
{2880B5FF-9B88-476B-9869-E8A76FE65CB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2880B5FF-9B88-476B-9869-E8A76FE65CB8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2880B5FF-9B88-476B-9869-E8A76FE65CB8}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -39,6 +35,10 @@ Global
{9B0ECE6E-7F9A-483D-B974-D61D6A0BA88C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9B0ECE6E-7F9A-483D-B974-D61D6A0BA88C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9B0ECE6E-7F9A-483D-B974-D61D6A0BA88C}.Release|Any CPU.Build.0 = Release|Any CPU
{B2FEB55A-BFF8-48CD-830E-64AD4D15CBA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B2FEB55A-BFF8-48CD-830E-64AD4D15CBA9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B2FEB55A-BFF8-48CD-830E-64AD4D15CBA9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B2FEB55A-BFF8-48CD-830E-64AD4D15CBA9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 0 additions & 2 deletions samples.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,6 @@
<Project Path="IdentityServer/v7/ScopesAndResources/IdentityServerHost/IdentityServerHost.csproj" />
</Folder>
<Folder Name="/IdentityServer/v7/SessionManagement/">
<Project Path="IdentityServer/v7/SessionManagement/Api/Api.csproj" />
<Project Path="IdentityServer/v7/SessionManagement/Client/Client.csproj" />
<Project Path="IdentityServer/v7/SessionManagement/IdentityServerHost/IdentityServerHost.csproj" />
<Project Path="IdentityServer/v7/SessionManagement/SessionManagement.AppHost/SessionManagement.AppHost.csproj" />
Expand Down Expand Up @@ -491,7 +490,6 @@
<Project Path="IdentityServer/v8/ScopesAndResources/IdentityServerHost/IdentityServerHost.csproj" />
</Folder>
<Folder Name="/IdentityServer/v8/SessionManagement/">
<Project Path="IdentityServer/v8/SessionManagement/Api/Api.csproj" />
<Project Path="IdentityServer/v8/SessionManagement/Client/Client.csproj" />
<Project Path="IdentityServer/v8/SessionManagement/IdentityServerHost/IdentityServerHost.csproj" />
<Project Path="IdentityServer/v8/SessionManagement/SessionManagement.AppHost/SessionManagement.AppHost.csproj" />
Expand Down
Loading