Skip to content

Commit

Permalink
include bump-vostok-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
belykhvd committed Jan 15, 2025
1 parent b891337 commit 91cb536
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions EdiApi.Client/EdiApi.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Vostok.ClusterClient.Core" Version="0.1.26" />
<PackageReference Include="Vostok.ClusterClient.Singular" Version="0.1.11" />
<PackageReference Include="Vostok.ClusterClient.Tracing" Version="0.1.4" />
<PackageReference Include="Vostok.ClusterClient.Transport" Version="0.1.17" />
<PackageReference Include="Vostok.ClusterClient.Core" Version="0.1.57" />
<PackageReference Include="Vostok.ClusterClient.Singular" Version="0.1.29" />
<PackageReference Include="Vostok.ClusterClient.Tracing" Version="0.1.8" />
<PackageReference Include="Vostok.ClusterClient.Transport" Version="0.1.39" />
</ItemGroup>

</Project>
</Project>
4 changes: 2 additions & 2 deletions EdiApi.Client/Http/BaseEdiApiHttpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,11 @@ private string BuildAuthorizationHeader(AuthCredentials? authCredentials, string
}
if (!string.IsNullOrEmpty(authCredentials?.PortalSid))
{
stringBuilder.Append("," + $"konturediauth_portalsid={authCredentials.PortalSid}");
stringBuilder.Append("," + $"konturediauth_portalsid={authCredentials!.PortalSid}");
}
if (!string.IsNullOrEmpty(authCredentials?.Login))
{
stringBuilder.Append("," + $"konturediauth_login={authCredentials.Login},konturediauth_password={authCredentials.Password}");
stringBuilder.Append("," + $"konturediauth_login={authCredentials!.Login},konturediauth_password={authCredentials.Password}");
}

return stringBuilder.ToString();
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.6",
"version": "2.7-pre.4",
"assemblyVersion": {
"precision": "build"
},
Expand Down

0 comments on commit 91cb536

Please sign in to comment.