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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>9.0.3</Version>
<Version>9.0.4</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/

Expand All @@ -9,13 +9,13 @@ namespace Microsoft.Extensions.DependencyInjection;
/// <summary>
/// BootstrapBlazor 服务扩展类
/// </summary>
public static class BootstrapBlazoIP2RegionExtensions
public static class ServiceCollectionExtensions
{
Comment thread
sourcery-ai[bot] marked this conversation as resolved.
/// <summary>
/// 添加 AzureOpenAIService 服务
/// 添加 IP2RegionService 服务
/// </summary>
/// <param name="services"></param>
public static IServiceCollection AddBootstrapBlazorIP2RegionfService(this IServiceCollection services)
public static IServiceCollection AddBootstrapBlazorIP2RegionService(this IServiceCollection services)
{
services.AddSingleton<IIpLocatorProvider, IP2RegionService>();
#if NET8_0_OR_GREATER
Expand Down
Loading