mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2025-01-18 12:54:20 +01:00
Updated nuget and submodules
This commit is contained in:
parent
e312ffc017
commit
ebb605477c
|
@ -11,10 +11,10 @@
|
|||
<PackageReference Include="Argotic.Common" Version="3000.0.5" />
|
||||
<PackageReference Include="Argotic.Core" Version="3000.0.5" />
|
||||
<PackageReference Include="Argotic.Web" Version="2008.0.2" />
|
||||
<PackageReference Include="Dapper" Version="2.0.138" />
|
||||
<PackageReference Include="Dapper" Version="2.0.143" />
|
||||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.7" />
|
||||
<PackageReference Include="Serilog" Version="2.12.0" />
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.8" />
|
||||
<PackageReference Include="Serilog" Version="3.0.1" />
|
||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
2
ToolQit
2
ToolQit
|
@ -1 +1 @@
|
|||
Subproject commit 0f3a3fb0f9145aad31a44eb25159d0f2a5a1c7fd
|
||||
Subproject commit 9a766eb353a8ec462410f128e774804ec715cefd
|
|
@ -5,6 +5,7 @@
|
|||
@inject IDialogService _dialogService;
|
||||
@inject SyndicationService _syndicationService;
|
||||
|
||||
<title>@_title</title>
|
||||
<div>
|
||||
@if (_isLoading)
|
||||
{
|
||||
|
@ -45,6 +46,8 @@
|
|||
Task.Run(async () => await LoadItems());
|
||||
}
|
||||
}
|
||||
|
||||
private string _title { get; set; } = "List syndication - SharpRss";
|
||||
private string? _cid;
|
||||
HashSet<SyndicationItemData> items = new HashSet<SyndicationItemData>();
|
||||
bool _isLoading = true;
|
||||
|
|
12
WebSharpRSS/Pages/Modify.razor
Normal file
12
WebSharpRSS/Pages/Modify.razor
Normal file
|
@ -0,0 +1,12 @@
|
|||
@page "/Modify"
|
||||
<h3>Modify</h3>
|
||||
|
||||
@code {
|
||||
[Parameter]
|
||||
[SupplyParameterFromQuery(Name = "cid")]
|
||||
public string CategoryId { get; set; } = string.Empty;
|
||||
[Parameter]
|
||||
[SupplyParameterFromQuery(Name = "sid")]
|
||||
public string SyndicationId { get; set; } = string.Empty;
|
||||
|
||||
}
|
|
@ -16,7 +16,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MudBlazor" Version="6.4.1" />
|
||||
<PackageReference Include="MudBlazor" Version="6.6.0" />
|
||||
<PackageReference Include="Serilog.Extensions.Logging" Version="7.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user