[feat] ApiHttpClient新增DownloadFileAsync,支持从多个地址下载文件到本地。适用于内网集群部署时的文件下载,主要用在星尘中,某节点内网地址和公网地址并存时。
智能大石头
authored at
2025-12-16 18:33:15
X
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<AssemblyTitle>回声服务器</AssemblyTitle>
<Description>网络回声服务端,把收到的数据原样发回去,用于网络性能压测</Description>
<Company>新生命开发团队</Company>
<Copyright>©2002-2025 NewLife</Copyright>
<VersionPrefix>1.0</VersionPrefix>
<VersionSuffix>$([System.DateTime]::Now.ToString(`yyyy.MMdd`))</VersionSuffix>
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(VersionPrefix).*</AssemblyVersion>
<Deterministic>false</Deterministic>
<OutputPath>..\..\Bin\EchoServer</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NewLife.Stardust" Version="3.5.2025.1113" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\NewLife.Core\NewLife.Core.csproj" />
</ItemGroup>
</Project>
|