Skip to content

Commit

Permalink
Switch to dev Azure AD B2C
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhoffmeister committed Feb 15, 2022
1 parent 487c818 commit 73a15fb
Show file tree
Hide file tree
Showing 49 changed files with 1,523 additions and 373 deletions.
25 changes: 25 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/azds.yaml
**/bin
**/charts
**/docker-compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md
4 changes: 2 additions & 2 deletions Asaph.Bootstrapper/Asaph.Bootstrapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.32.0.39516">
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.33.0.40503">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.354">
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.376">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
6 changes: 5 additions & 1 deletion Asaph.Bootstrapper/Services.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public static class Services
/// </summary>
/// <param name="services">Services.</param>
/// <param name="configuration">Configuration.</param>
public static void AddAsaphServices(
/// <returns><see cref="IServiceCollection"/>.</returns>
public static IServiceCollection AddAsaphServices(
this IServiceCollection services, IConfiguration configuration)
{
// Get Azure AD B2C configuration
Expand All @@ -41,6 +42,9 @@ public static void AddAsaphServices(
.AddTransient<
IAsyncRepository<SongDirector>,
AggregateSongDirectorRepository>();

// Return the service collection reference
return services;
}
}
}
6 changes: 3 additions & 3 deletions Asaph.Core.UnitTests/Asaph.Core.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

<ItemGroup>
<PackageReference Include="FluentResults" Version="3.1.0" />
<PackageReference Include="Microsoft.Graph" Version="4.11.0" />
<PackageReference Include="Microsoft.Graph" Version="4.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Moq" Version="4.16.1" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.32.0.39516">
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.33.0.40503">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.354">
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.376">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
4 changes: 2 additions & 2 deletions Asaph.Core/Asaph.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

<ItemGroup>
<PackageReference Include="FluentResults" Version="3.1.0" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.32.0.39516">
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.33.0.40503">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.354">
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.376">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Loading

0 comments on commit 73a15fb

Please sign in to comment.