Skip to content

Commit 57c31c4

Browse files
author
欧俊
committed
fix workflows
修改部分扩展方法的命名空间,防止冲突
1 parent 4d89965 commit 57c31c4

4 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/dotnetcore.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
tags:
66
- v*
77

8-
98
jobs:
109
build:
1110

@@ -35,6 +34,4 @@ jobs:
3534
run: dotnet nuget push artifacts/*.symbols.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
3635
- name: Add Source Github NuGet
3736
run: dotnet nuget add source --username ojdev --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/OWNER/index.json"
38-
- name: Publish Symbols to Github NuGet
39-
run: dotnet nuget push artifacts/*.symbols.nupkg --api-key ${{secrets.RABBITMQ_GNUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
4037

src/RabbitMQ.EventBus.AspNetCore/Extensions/DynamicExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace System;
1+
namespace RabbitMQ.EventBus.AspNetCore.Extensions;
22

33
/// <summary>
44
///

src/RabbitMQ.EventBus.AspNetCore/Extensions/IModelExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace RabbitMQ.Client;
1+
namespace RabbitMQ.EventBus.AspNetCore.Extensions;
22
/// <summary>
33
///
44
/// </summary>

src/RabbitMQ.EventBus.AspNetCore/GlobalUsings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
global using RabbitMQ.EventBus.AspNetCore.Attributes;
1111
global using RabbitMQ.EventBus.AspNetCore.Configurations;
1212
global using RabbitMQ.EventBus.AspNetCore.Events;
13+
global using RabbitMQ.EventBus.AspNetCore.Extensions;
1314
global using RabbitMQ.EventBus.AspNetCore.Factories;
1415
global using RabbitMQ.EventBus.AspNetCore.Modules;
1516
global using System;

0 commit comments

Comments
 (0)