Skip to content

Commit

Permalink
Merge branch 'edi-api-client-use-vostok-cluster-client'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Kozulin committed May 24, 2021
2 parents 9689937 + 5043a9c commit a7ddef6
Show file tree
Hide file tree
Showing 22 changed files with 649 additions and 817 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# История изменений

## v1.8.1 - 2021.05.11
- EdiApiClient переведен на ClusterClient
- Добавлены конструкторы для работы через Singular в классы `TransformerConnectorEdiApiClient`, `InternalEdiApiHttpClient` и `MessagesEdiApiHttpClient`.

## v1.7.10 - 2020.04.02
- Добавлен параметр `enableKeepAlive` в конструктор классов `TransformerConnectorEdiApiClient`, `InternalEdiApiHttpClient` и `MessagesEdiApiHttpClient`.

Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.0.50" PrivateAssets="All" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.4.194" PrivateAssets="All" />
</ItemGroup>

</Project>
225 changes: 0 additions & 225 deletions EdiApi.Client/Annotations.cs

This file was deleted.

7 changes: 6 additions & 1 deletion EdiApi.Client/EdiApi.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>8.0</LangVersion>
<AssemblyName>SkbKontur.EdiApi.Client</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<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" />
</ItemGroup>

</Project>
9 changes: 9 additions & 0 deletions EdiApi.Client/Http/AuthCredentials.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace SkbKontur.EdiApi.Client.Http
{
public class AuthCredentials
{
public string PortalSid { get; set; }
public string Login { get; set; }
public string Password { get; set; }
}
}
Loading

0 comments on commit a7ddef6

Please sign in to comment.