Property accessor changed.
All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 43s

This commit is contained in:
2025-07-05 04:08:42 +02:00
parent 01bb81fc73
commit 964fb73c2f
3 changed files with 7 additions and 7 deletions

View File

@ -6,6 +6,8 @@ MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}"
ProjectSection(SolutionItems) = preProject ProjectSection(SolutionItems) = preProject
..\Directory.Packages.props = ..\Directory.Packages.props ..\Directory.Packages.props = ..\Directory.Packages.props
..\NuGet.config = ..\NuGet.config
..\README.md = ..\README.md
EndProjectSection EndProjectSection
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"

View File

@ -53,10 +53,9 @@ namespace MessengerApi
public class Client : IClient public class Client : IClient
{ {
private readonly HttpClient _httpClient; protected readonly Credentials _credentials;
private readonly ILogger _logger; protected readonly HttpClient _httpClient;
protected readonly ILogger _logger;
private Credentials _credentials;
public Client(Credentials credentials, HttpClient httpClient = null, ILogger logger = null) public Client(Credentials credentials, HttpClient httpClient = null, ILogger logger = null)
{ {

View File

@ -11,14 +11,13 @@
<BaseOutputPath>..\out\</BaseOutputPath> <BaseOutputPath>..\out\</BaseOutputPath>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<Title>$(AssemblyName)</Title> <Title>$(AssemblyName)</Title>
<PackageProjectUrl>https://gitea.masita.net/mc/messengerapi-tools</PackageProjectUrl> <PackageProjectUrl>https://gitea.masita.net/mc/messengerapi.Client</PackageProjectUrl>
<RepositoryUrl>https://gitea.masita.net/mc/messengerapi-tools</RepositoryUrl> <RepositoryUrl>https://gitea.masita.net/mc/messengerapi.Client</RepositoryUrl>
<PackageTags>logging;log;logger</PackageTags> <PackageTags>logging;log;logger</PackageTags>
<PackageLicenseExpression>mit-0</PackageLicenseExpression> <PackageLicenseExpression>mit-0</PackageLicenseExpression>
<Description>Messenger API consumer library for .NET.</Description> <Description>Messenger API consumer library for .NET.</Description>
<Copyright>mc @ 2024</Copyright> <Copyright>mc @ 2024</Copyright>
<Authors>mc</Authors> <Authors>mc</Authors>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>