Unity is heavily deprecated, hard to use, and doesn’t support decorators (easily). So I think it adds value to switch over.
Switching over DI is very tricky, and dangerous (much more then the xUnit switch over).
| .contentMatch { | |
| background: limegreen !important; | |
| } |
| .contentTag[title="Filter #prio"]:before | |
| { | |
| content: var(--content); | |
| display: inline !important; | |
| visibility: visible !important; | |
| color: var(--circle-opacity-1) !important; | |
| font-family: var(--font-family) !important; | |
| } | |
| .contentTag[title="Filter #prio"]:hover:before |
| div.project:nth-of-type(5n) { | |
| background: bisque; | |
| } | |
| div.project:nth-of-type(10n) { | |
| background: lavender; | |
| } |
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <Title>Arrange, Act, and Assert</Title> | |
| <Shortcut>aaa</Shortcut> | |
| <Description>Code snippet for the unit test pattern arrange, act, and assert</Description> | |
| <Author>tiesmaster</Author> | |
| <SnippetTypes> | |
| <SnippetType>Expansion</SnippetType> |
| dotnet ef migrations add InitialIdentityServerConfigurationDbMigration -c ConfigurationDbContext -o Migrations/ConfigurationDb | |
| dotnet ef migrations add InitialIdentityServerPersistedGrantDbMigration -c PersistedGrantDbContext -o Migrations/PersistedGrantDb | |
| dotnet ef database update -c IdentityServer4.EntityFramework.DbContexts.ConfigurationDbContext | |
| dotnet ef database update -c IdentityServer4.EntityFramework.DbContexts.PersistedGrantDbContext |