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
1 change: 0 additions & 1 deletion src/ForgingBlazor/ForgingBlazorApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@
using Microsoft.Extensions.Options;
using NetEvolve.ForgingBlazor.Components.Administration;
using NetEvolve.ForgingBlazor.Configurations;
using NetEvolve.ForgingBlazor.Extensibility;

/// <summary>
/// Represents a ForgingBlazor application that can be configured and executed.
/// </summary>
public sealed class ForgingBlazorApplication : IForgingBlazorApplication

Check failure on line 16 in src/ForgingBlazor/ForgingBlazorApplication.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplication' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 16 in src/ForgingBlazor/ForgingBlazorApplication.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplication' could not be found (are you missing a using directive or an assembly reference?)
{
/// <summary>
/// The underlying ASP.NET Core web application.
Expand All @@ -32,7 +31,7 @@
/// </summary>
/// <param name="args">The command-line arguments passed to the application.</param>
/// <returns>A configured <see cref="IForgingBlazorApplicationBuilder"/> instance with default services.</returns>
public static IForgingBlazorApplicationBuilder CreateDefaultBuilder(string[] args) =>

Check failure on line 34 in src/ForgingBlazor/ForgingBlazorApplication.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplicationBuilder' could not be found (are you missing a using directive or an assembly reference?)
new ForgingBlazorApplicationBuilder(args).AddHostingServices().AddConfigurations();

/// <summary>
Expand Down
1 change: 0 additions & 1 deletion src/ForgingBlazor/ForgingBlazorApplicationBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using NetEvolve.ForgingBlazor.Extensibility;

/// <summary>
/// Internal implementation of <see cref="IForgingBlazorApplicationBuilder"/> that configures and builds a ForgingBlazor application.
/// </summary>
internal sealed class ForgingBlazorApplicationBuilder : IForgingBlazorApplicationBuilder

Check failure on line 13 in src/ForgingBlazor/ForgingBlazorApplicationBuilder.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplicationBuilder' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 13 in src/ForgingBlazor/ForgingBlazorApplicationBuilder.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplicationBuilder' could not be found (are you missing a using directive or an assembly reference?)
{
/// <summary>
/// The underlying ASP.NET Core web application builder.
Expand Down Expand Up @@ -41,7 +40,7 @@
/// Builds and returns a configured <see cref="IForgingBlazorApplication"/> instance.
/// </summary>
/// <returns>A configured <see cref="ForgingBlazorApplication"/> instance ready to run.</returns>
public IForgingBlazorApplication Build() => new ForgingBlazorApplication(_builder.Build());

Check failure on line 43 in src/ForgingBlazor/ForgingBlazorApplicationBuilder.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplication' could not be found (are you missing a using directive or an assembly reference?)

/// <summary>
/// Configures the application's configuration settings from various sources including JSON, YAML, environment variables, and user secrets.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Diagnostics.CodeAnalysis;
using Microsoft.Extensions.DependencyInjection;
using NetEvolve.ForgingBlazor.Configurations;
using NetEvolve.ForgingBlazor.Extensibility;

/// <summary>
/// Provides extension methods for <see cref="IForgingBlazorApplicationBuilder"/> to configure hosting and application services.
Expand All @@ -28,7 +27,7 @@
/// <returns>The <see cref="IForgingBlazorApplicationBuilder"/> for method chaining.</returns>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="builder"/> is null.</exception>
/// <exception cref="InvalidOperationException">Thrown when the builder is not of type <see cref="ForgingBlazorApplicationBuilder"/> or when hosting services have already been registered.</exception>
public static IForgingBlazorApplicationBuilder AddHostingServices(this IForgingBlazorApplicationBuilder builder)

Check failure on line 30 in src/ForgingBlazor/ForgingBlazorApplicationBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplicationBuilder' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 30 in src/ForgingBlazor/ForgingBlazorApplicationBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplicationBuilder' could not be found (are you missing a using directive or an assembly reference?)
{
ArgumentNullException.ThrowIfNull(builder);
if (builder is not ForgingBlazorApplicationBuilder forgingBlazorApplicationBuilder)
Expand Down Expand Up @@ -60,7 +59,7 @@
/// <returns>The <see cref="IForgingBlazorApplicationBuilder"/> for method chaining.</returns>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="builder"/> is null.</exception>
/// <exception cref="InvalidOperationException">Thrown when the builder is not of type <see cref="ForgingBlazorApplicationBuilder"/> or when configuration services have already been registered.</exception>
public static IForgingBlazorApplicationBuilder AddConfigurations(this IForgingBlazorApplicationBuilder builder)

Check failure on line 62 in src/ForgingBlazor/ForgingBlazorApplicationBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplicationBuilder' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 62 in src/ForgingBlazor/ForgingBlazorApplicationBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build & Tests / Run Tests / Testing .NET solution

The type or namespace name 'IForgingBlazorApplicationBuilder' could not be found (are you missing a using directive or an assembly reference?)
{
ArgumentNullException.ThrowIfNull(builder);
if (builder is not ForgingBlazorApplicationBuilder forgingBlazorApplicationBuilder)
Expand Down
Loading