Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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,8 +1,9 @@
// 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/

using BootstrapBlazor.Components;
using Microsoft.Extensions.DependencyInjection.Extensions;

namespace Microsoft.Extensions.DependencyInjection;

Expand All @@ -12,10 +13,10 @@ namespace Microsoft.Extensions.DependencyInjection;
public static class BootstrapBlazoIP2RegionExtensions
{
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