Updated nuget and submodules

This commit is contained in:
Max 2023-07-09 19:28:36 +02:00
parent e312ffc017
commit ebb605477c
6 changed files with 20 additions and 5 deletions

View File

@ -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>

@ -1 +1 @@
Subproject commit 0f3a3fb0f9145aad31a44eb25159d0f2a5a1c7fd
Subproject commit 9a766eb353a8ec462410f128e774804ec715cefd

View File

@ -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;

View 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;
}

View File

@ -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.