feat: 升级yi.abp.tool

This commit is contained in:
ccnetcore
2025-07-05 15:23:08 +08:00
parent 52961b459e
commit aff460f555
2 changed files with 3 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<Version>2.0.5</Version> <Version>2.0.6</Version>
<Authors>橙子老哥</Authors> <Authors>橙子老哥</Authors>
<Description>yi-framework框架配套工具</Description> <Description>yi-framework框架配套工具</Description>
<PackageProjectUrl>https://ccnetcore.com</PackageProjectUrl> <PackageProjectUrl>https://ccnetcore.com</PackageProjectUrl>

View File

@@ -1,5 +1,4 @@
using Microsoft.Extensions.DependencyInjection; using Volo.Abp.Http.Client;
using Volo.Abp.Http.Client;
using Yi.Abp.Tool.HttpApi.Client; using Yi.Abp.Tool.HttpApi.Client;
namespace Yi.Abp.Tool namespace Yi.Abp.Tool
@@ -15,7 +14,7 @@ namespace Yi.Abp.Tool
Configure<AbpRemoteServiceOptions>(options => Configure<AbpRemoteServiceOptions>(options =>
{ {
options.RemoteServices.Default = options.RemoteServices.Default =
new RemoteServiceConfiguration("https://ccnetcore.com:19009"); new RemoteServiceConfiguration("https://data.ccnetcore.com:19009");
// new RemoteServiceConfiguration("http://localhost:19002"); // new RemoteServiceConfiguration("http://localhost:19002");
}); });
} }