Skip to content

Commit debedb3

Browse files
committed
Merge branch 'master' into refactor-da
2 parents 631e49b + c329139 commit debedb3

7 files changed

Lines changed: 8 additions & 60 deletions

File tree

.github/workflows/auto-pull-request-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup .NET SDK
1919
uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: 9.0.x
21+
dotnet-version: 10.0.x
2222

2323
- name: Test
2424
run: |

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET Core SDK
1818
uses: actions/setup-dotnet@v4
1919
with:
20-
dotnet-version: 9.0.x
20+
dotnet-version: 10.0.x
2121

2222
- name: Build
2323
env:

.github/workflows/issue-check-inactive.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/issue-close-required.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET Core SDK
1616
uses: actions/setup-dotnet@v4
1717
with:
18-
dotnet-version: 9.0.x
18+
dotnet-version: 10.0.x
1919

2020
- name: Publish to Nuget
2121
env:

src/components/BootstrapBlazor.IP2Region/BootstrapBlazor.IP2Region.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<Version>9.0.3</Version>
4+
<Version>9.0.4</Version>
55
</PropertyGroup>
66

77
<PropertyGroup>

src/components/BootstrapBlazor.IP2Region/Extensions/ServiceCollectionExtensions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
1+
// Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

@@ -9,13 +9,13 @@ namespace Microsoft.Extensions.DependencyInjection;
99
/// <summary>
1010
/// BootstrapBlazor 服务扩展类
1111
/// </summary>
12-
public static class BootstrapBlazoIP2RegionExtensions
12+
public static class ServiceCollectionExtensions
1313
{
1414
/// <summary>
15-
/// 添加 AzureOpenAIService 服务
15+
/// 添加 IP2RegionService 服务
1616
/// </summary>
1717
/// <param name="services"></param>
18-
public static IServiceCollection AddBootstrapBlazorIP2RegionfService(this IServiceCollection services)
18+
public static IServiceCollection AddBootstrapBlazorIP2RegionService(this IServiceCollection services)
1919
{
2020
services.AddSingleton<IIpLocatorProvider, IP2RegionService>();
2121
#if NET8_0_OR_GREATER

0 commit comments

Comments
 (0)