Skip to content

Commit 22f3b9a

Browse files
committed
updates to use NuGet package more
1 parent ba36075 commit 22f3b9a

File tree

13 files changed

+13
-21
lines changed

13 files changed

+13
-21
lines changed

HttpClientCrawler/HttpClientCrawler.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
<PackageReference Include="HtmlAgilityPack" Version="1.12.1" />
2323
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.4" />
2424
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.4" />
25-
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.2" />
25+
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.4" />
2626
</ItemGroup>
2727
</Project>

InquirySpark.Domain/InquirySpark.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
</PackageReference>
1818
<PackageReference Include="System.Drawing.Common" Version="9.0.4" />
1919
<PackageReference Include="System.Text.Json" Version="9.0.4" />
20-
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.2" />
20+
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.4" />
2121
</ItemGroup>
2222
</Project>

OpenWeatherMapClient/OpenWeatherMapClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
2525
<PackageReference Include="System.Runtime.Caching" Version="9.0.4" />
2626
<PackageReference Include="System.Text.Json" Version="9.0.4" />
27-
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.2" />
27+
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.4" />
2828
</ItemGroup>
2929
</Project>

PromptSpark.Domain/PromptSpark.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
2828
<PackageReference Include="System.Text.Json" Version="9.0.4" />
2929
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
30-
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.2" />
30+
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.4" />
3131
</ItemGroup>
3232
<ItemGroup>
3333
<ProjectReference Include="..\WebSpark.Bootswatch\WebSpark.Bootswatch.csproj" />

PromptSpark.Recipe.Console/PromptSpark.Recipe.Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.4" />
1313
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1414
<PackageReference Include="Newtonsoft.Json.Schema" Version="4.0.1" />
15-
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.2" />
15+
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.4" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

PromptSpark.SchemaTest/PromptSpark.SchemaTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="Newtonsoft.Json.Schema" Version="4.0.1" />
12-
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.2" />
12+
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.4" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

TriviaSpark.Domain/TriviaSpark.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
</PackageReference>
1818
<PackageReference Include="System.Drawing.Common" Version="9.0.4" />
1919
<PackageReference Include="System.Text.Json" Version="9.0.4" />
20-
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.2" />
20+
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.4" />
2121
</ItemGroup>
2222
</Project>

WebSpark.Portal/Areas/AsyncSpark/Controllers/CrawlDomainController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using HttpClientCrawler.Crawler;
2-
using Microsoft.AspNetCore.SignalR;
1+
using Microsoft.AspNetCore.SignalR;
2+
using WebSpark.HttpClientUtility.Crawler;
33

44
namespace WebSpark.Portal.Areas.AsyncSpark.Controllers;
55

WebSpark.Portal/Areas/AsyncSpark/Views/CrawlDomain/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@using HttpClientCrawler.Crawler
1+
@using WebSpark.HttpClientUtility.Crawler
22
@model CrawlDomainViewModel
33

44
@{

WebSpark.Portal/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using HttpClientCrawler.Crawler;
21
using HttpClientUtility.MemoryCache;
32
using Microsoft.Extensions.Caching.Memory;
43
using Microsoft.SemanticKernel;
@@ -21,6 +20,7 @@
2120
using WebSpark.Core.Interfaces;
2221
using WebSpark.Core.Models;
2322
using WebSpark.Core.Providers;
23+
using WebSpark.HttpClientUtility.Crawler;
2424
using WebSpark.HttpClientUtility.MemoryCache;
2525
using WebSpark.HttpClientUtility.RequestResult;
2626
using WebSpark.HttpClientUtility.StringConverter;

WebSpark.Portal/WebSpark.Portal.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,10 @@
6666
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
6767
<PackageReference Include="System.Formats.Asn1" Version="9.0.4" />
6868
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
69-
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.2" />
69+
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.4" />
7070
<PackageReference Include="Westwind.AspNetCore.Markdown" Version="3.23.0" />
7171
</ItemGroup>
7272
<ItemGroup>
73-
<ProjectReference Include="..\HttpClientCrawler\HttpClientCrawler.csproj" />
7473
<ProjectReference Include="..\OpenWeatherMapClient\OpenWeatherMapClient.csproj" />
7574
<ProjectReference Include="..\PromptSpark.Domain\PromptSpark.Domain.csproj" />
7675
<ProjectReference Include="..\TriviaSpark.Domain\TriviaSpark.Domain.csproj" />

WebSpark.RecipeCoookbook/WebSpark.RecipeCookbook.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageReference Include="itext.bouncy-castle-adapter" Version="9.1.0" />
1414
<PackageReference Include="itext7" Version="9.1.0" />
1515
<PackageReference Include="itext7.commons" Version="9.1.0" />
16-
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.2" />
16+
<PackageReference Include="WebSpark.HttpClientUtility" Version="1.0.4" />
1717
</ItemGroup>
1818
<ItemGroup>
1919
<ProjectReference Include="..\WebSpark.Core\WebSpark.Core.csproj" />

WebSpark.sln

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PromptSpark.Domain", "Promp
2323
EndProject
2424
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenWeatherMapClient", "OpenWeatherMapClient\OpenWeatherMapClient.csproj", "{32C4C6A4-1846-47DD-890D-96953AE283E0}"
2525
EndProject
26-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HttpClientCrawler", "HttpClientCrawler\HttpClientCrawler.csproj", "{6308CBE4-3388-4FA1-95CC-0AC1F1216204}"
27-
EndProject
2826
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TriviaSpark.Domain", "TriviaSpark.Domain\TriviaSpark.Domain.csproj", "{FC8AF618-B2F6-4971-AE36-8F6E56C3A8FB}"
2927
EndProject
3028
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InquirySpark.Domain", "InquirySpark.Domain\InquirySpark.Domain.csproj", "{A3ACA568-5823-4AD5-8F32-35DCA46B5322}"
@@ -86,10 +84,6 @@ Global
8684
{32C4C6A4-1846-47DD-890D-96953AE283E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
8785
{32C4C6A4-1846-47DD-890D-96953AE283E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
8886
{32C4C6A4-1846-47DD-890D-96953AE283E0}.Release|Any CPU.Build.0 = Release|Any CPU
89-
{6308CBE4-3388-4FA1-95CC-0AC1F1216204}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
90-
{6308CBE4-3388-4FA1-95CC-0AC1F1216204}.Debug|Any CPU.Build.0 = Debug|Any CPU
91-
{6308CBE4-3388-4FA1-95CC-0AC1F1216204}.Release|Any CPU.ActiveCfg = Release|Any CPU
92-
{6308CBE4-3388-4FA1-95CC-0AC1F1216204}.Release|Any CPU.Build.0 = Release|Any CPU
9387
{FC8AF618-B2F6-4971-AE36-8F6E56C3A8FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
9488
{FC8AF618-B2F6-4971-AE36-8F6E56C3A8FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
9589
{FC8AF618-B2F6-4971-AE36-8F6E56C3A8FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -126,7 +120,6 @@ Global
126120
{2D0F6727-B391-4EFA-9C7E-FC3B0A2F1198} = {83E5AC53-6F44-4CDB-9127-01082E0D143F}
127121
{7A6C8941-FBF9-487C-88EB-3D4965881B7A} = {83E5AC53-6F44-4CDB-9127-01082E0D143F}
128122
{32C4C6A4-1846-47DD-890D-96953AE283E0} = {83E5AC53-6F44-4CDB-9127-01082E0D143F}
129-
{6308CBE4-3388-4FA1-95CC-0AC1F1216204} = {83E5AC53-6F44-4CDB-9127-01082E0D143F}
130123
{FC8AF618-B2F6-4971-AE36-8F6E56C3A8FB} = {83E5AC53-6F44-4CDB-9127-01082E0D143F}
131124
{A3ACA568-5823-4AD5-8F32-35DCA46B5322} = {83E5AC53-6F44-4CDB-9127-01082E0D143F}
132125
{B7520185-F7A0-4D6F-B21A-B3AD8CECD4EC} = {83E5AC53-6F44-4CDB-9127-01082E0D143F}

0 commit comments

Comments
 (0)