Skip to content

Commit

Permalink
Code formatting for usage summary at shutdown
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdecock committed Jan 9, 2025
1 parent ea605e7 commit d427b2f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 24 deletions.
4 changes: 1 addition & 3 deletions identity-server/hosts/AspNetIdentity/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
{
var usage = app.Services.GetRequiredService<LicenseUsageSummary>();
Console.Write(Summary(usage));
{
Console.ReadKey();
}
Console.ReadKey();
});
}

Expand Down
4 changes: 1 addition & 3 deletions identity-server/hosts/Configuration/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
{
var usage = app.Services.GetRequiredService<LicenseUsageSummary>();
Console.Write(Summary(usage));
{
Console.ReadKey();
}
Console.ReadKey();
});
}

Expand Down
4 changes: 1 addition & 3 deletions identity-server/hosts/EntityFramework/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
{
var usage = app.Services.GetRequiredService<LicenseUsageSummary>();
Console.Write(Summary(usage));
{
Console.ReadKey();
}
Console.ReadKey();
});
}

Expand Down
4 changes: 1 addition & 3 deletions identity-server/hosts/main/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
{
var usage = app.Services.GetRequiredService<LicenseUsageSummary>();
Console.Write(Summary(usage));
{
Console.ReadKey();
}
Console.ReadKey();
});
}

Expand Down
4 changes: 1 addition & 3 deletions templates/src/IdentityServerAspNetIdentity/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@
{
var usage = app.Services.GetRequiredService<LicenseUsageSummary>();
Console.Write(Summary(usage));
{
Console.ReadKey();
}
Console.ReadKey();
});
}

Expand Down
4 changes: 1 addition & 3 deletions templates/src/IdentityServerEmpty/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
{
var usage = app.Services.GetRequiredService<LicenseUsageSummary>();
Console.Write(Summary(usage));
{
Console.ReadKey();
}
Console.ReadKey();
});
}

Expand Down
4 changes: 1 addition & 3 deletions templates/src/IdentityServerEntityFramework/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@
{
var usage = app.Services.GetRequiredService<LicenseUsageSummary>();
Console.Write(Summary(usage));
{
Console.ReadKey();
}
Console.ReadKey();
});
}

Expand Down
4 changes: 1 addition & 3 deletions templates/src/IdentityServerInMem/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
{
var usage = app.Services.GetRequiredService<LicenseUsageSummary>();
Console.Write(Summary(usage));
{
Console.ReadKey();
}
Console.ReadKey();
});
}

Expand Down

0 comments on commit d427b2f

Please sign in to comment.