-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix blazor samples * fixed blazor client project * tests now use a constant * fix wireup
- Loading branch information
1 parent
53b57ff
commit 39abeb8
Showing
9 changed files
with
109 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Hosts.ServiceDefaults; | ||
public static class AppHostServices | ||
{ | ||
public const string IdentityServer = "identity-server"; | ||
public const string Api = "api"; | ||
public const string IsolatedApi = "api-isolated"; | ||
public const string Bff = "bff"; | ||
public const string BffEf = "bff-ef"; | ||
public const string BffBlazorWebassembly = "bff-blazor-webassembly"; | ||
public const string BffBlazorPerComponent = "bff-blazor-per-component"; | ||
public const string ApiDpop = "api-dpop"; | ||
public const string BffDpop = "bff-dpop"; | ||
public const string Migrations = "migrations"; | ||
|
||
public static string[] All => [ | ||
IdentityServer, | ||
Api, | ||
IsolatedApi, | ||
Bff, | ||
BffEf, | ||
BffBlazorWebassembly, | ||
BffBlazorPerComponent, | ||
ApiDpop, | ||
BffDpop, | ||
Migrations | ||
]; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters