replace dependencies and last works ...

This commit is contained in:
2026-04-16 16:11:59 +03:30
parent 34fb077e8b
commit 96c18db58e
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -162,7 +162,7 @@ namespace xIdentityService.Providers
// //
// Set Default Timeout ... // Set Default Timeout ...
httpClient.Timeout = TimeSpan.FromSeconds(DefaultClientTimeout); httpClient.Timeout = TimeSpan.FromSeconds(DefaultClientTimeout == -1 ? 10000 : DefaultClientTimeout);
// //
return httpClient; return httpClient;
+5 -2
View File
@@ -27,8 +27,11 @@
<!-- Local Dependencies --> <!-- Local Dependencies -->
<ItemGroup> <ItemGroup>
<ProjectReference Include="../xDataService/xDataService.csproj" /> <!-- <ProjectReference Include="../xDataService/xDataService.csproj" />
<ProjectReference Include="../xHttpService/xHttpService.csproj" /> <ProjectReference Include="../xHttpService/xHttpService.csproj" /> -->
<PackageReference Include="xDashboard.xDataService" Version="1.0.0" />
<PackageReference Include="xDashboard.xHttpService" Version="1.0.0" />
</ItemGroup> </ItemGroup>
<!-- Dependencies --> <!-- Dependencies -->