Skip to content

Commit

Permalink
Merge pull request #8 from ofmaska/master
Browse files Browse the repository at this point in the history
Change dependencies.
  • Loading branch information
starkmsu committed May 12, 2020
2 parents 1f0627c + f9b2464 commit c2a1b74
Show file tree
Hide file tree
Showing 21 changed files with 37 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<None Remove="$(AssemblyName).xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Falcon.Numerics" Version="0.1.1" />
<PackageReference Include="Lykke.HttpClientGenerator" Version="2.5.0" />
<PackageReference Include="Lykke.SettingsReader" Version="5.2.0" />
<PackageReference Include="MAVN.Numerics" Version="1.0.0" />
<PackageReference Include="Refit" Version="4.6.107" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using System;
using MAVN.Numerics;
using JetBrains.Annotations;

namespace MAVN.Service.Tiers.Client.Models.Reports
Expand Down
4 changes: 2 additions & 2 deletions client/MAVN.Service.Tiers.Client/Models/Tiers/TierModel.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using System;
using MAVN.Numerics;
using JetBrains.Annotations;

namespace MAVN.Service.Tiers.Client.Models.Tiers
Expand Down
6 changes: 3 additions & 3 deletions src/MAVN.Service.Tiers.Domain/Entities/CustomerBonuses.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using System;
using MAVN.Numerics;

namespace MAVN.Service.Tiers.Domain.Entities
{
Expand All @@ -9,4 +9,4 @@ public class CustomerBonuses

public Money18 TotalAwardedBonuses { get; set; }
}
}
}
4 changes: 2 additions & 2 deletions src/MAVN.Service.Tiers.Domain/Entities/Tier.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using System;
using MAVN.Numerics;

namespace MAVN.Service.Tiers.Domain.Entities
{
Expand Down
4 changes: 2 additions & 2 deletions src/MAVN.Service.Tiers.Domain/Entities/TierCustomersCount.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using System;
using MAVN.Numerics;

namespace MAVN.Service.Tiers.Domain.Entities
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Lykke.Common" Version="7.5.0" />
<PackageReference Include="Falcon.Numerics" Version="0.1.1" />
<PackageReference Include="MAVN.Numerics" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\client\MAVN.Service.Tiers.Client\MAVN.Service.Tiers.Client.csproj" />
Expand Down
4 changes: 2 additions & 2 deletions src/MAVN.Service.Tiers.Domain/Services/ICustomersService.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using System;
using System.Threading.Tasks;
using Falcon.Numerics;
using MAVN.Numerics;
using MAVN.Service.Tiers.Domain.Entities;

namespace MAVN.Service.Tiers.Domain.Services
Expand Down
4 changes: 2 additions & 2 deletions src/MAVN.Service.Tiers.Domain/Services/ITiersService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Falcon.Numerics;
using MAVN.Numerics;
using MAVN.Service.Tiers.Domain.Entities;

namespace MAVN.Service.Tiers.Domain.Services
Expand Down
6 changes: 3 additions & 3 deletions src/MAVN.Service.Tiers.DomainServices/CustomersService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
using System.Threading;
using System.Threading.Tasks;
using Common.Log;
using Falcon.Numerics;
using MAVN.Numerics;
using Lykke.Common.Log;
using Lykke.RabbitMqBroker.Publisher;
using Lykke.Service.CustomerProfile.Client;
using Lykke.Service.CustomerProfile.Client.Models.Enums;
using MAVN.Service.CustomerProfile.Client;
using MAVN.Service.CustomerProfile.Client.Models.Enums;
using MAVN.Service.Tiers.Contract;
using MAVN.Service.Tiers.Domain.Entities;
using MAVN.Service.Tiers.Domain.Exceptions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ProjectReference Include="..\MAVN.Service.Tiers.Domain\MAVN.Service.Tiers.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Falcon.Service.CustomerProfile.Client" Version="7.7.0" />
<PackageReference Include="Lykke.RabbitMqBroker" Version="7.13.1" />
<PackageReference Include="MAVN.Service.CustomerProfile.Client" Version="1.3.0" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions src/MAVN.Service.Tiers.DomainServices/TiersService.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Common;
using Common.Log;
using Falcon.Numerics;
using MAVN.Numerics;
using Lykke.Common.Log;
using MAVN.Service.Tiers.Domain.Entities;
using MAVN.Service.Tiers.Domain.Repositories;
Expand Down
2 changes: 1 addition & 1 deletion src/MAVN.Service.Tiers.MsSqlRepositories/DataContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Data.Common;
using System.Numerics;
using Falcon.Numerics;
using MAVN.Numerics;
using JetBrains.Annotations;
using Lykke.Common.MsSql;
using MAVN.Service.Tiers.MsSqlRepositories.Entities;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Falcon.Numerics;
using MAVN.Numerics;

namespace MAVN.Service.Tiers.MsSqlRepositories.Entities
{
Expand All @@ -18,4 +18,4 @@ public class CustomerBonusesEntity
[Column("total_awarded_bonuses")]
public Money18 TotalAwardedBonuses { get; set; }
}
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Falcon.Numerics;
using MAVN.Numerics;

namespace MAVN.Service.Tiers.MsSqlRepositories.Entities
{
Expand Down
2 changes: 1 addition & 1 deletion src/MAVN.Service.Tiers/AutofacModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Lykke.Common;
using Lykke.RabbitMqBroker.Publisher;
using Lykke.Sdk;
using Lykke.Service.CustomerProfile.Client;
using MAVN.Service.CustomerProfile.Client;
using Lykke.SettingsReader;
using MAVN.Service.Tiers.Contract;
using MAVN.Service.Tiers.Rabbit.Subscribers;
Expand Down
4 changes: 2 additions & 2 deletions src/MAVN.Service.Tiers/MAVN.Service.Tiers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Falcon.Service.CustomerManagement.Contract" Version="6.0.0" />
<PackageReference Include="Falcon.Service.WalletManagement.Contract" Version="3.8.0" />
<PackageReference Include="Lykke.Sdk" Version="5.17.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
<PackageReference Include="MAVN.Service.CustomerManagement.Contract" Version="1.1.0" />
<PackageReference Include="MAVN.Service.WalletManagement.Contract" Version="1.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\client\MAVN.Service.Tiers.Client\MAVN.Service.Tiers.Client.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Common.Log;
using Lykke.Common.Log;
using Lykke.RabbitMqBroker.Subscriber;
using Lykke.Service.WalletManagement.Contract.Events;
using MAVN.Service.WalletManagement.Contract.Events;
using MAVN.Service.Tiers.Domain.Services;

namespace MAVN.Service.Tiers.Rabbit.Subscribers
Expand Down
2 changes: 1 addition & 1 deletion src/MAVN.Service.Tiers/Settings/AppSettings.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using JetBrains.Annotations;
using Lykke.Sdk.Settings;
using Lykke.Service.CustomerProfile.Client;
using MAVN.Service.CustomerProfile.Client;
using MAVN.Service.Tiers.Settings.Service;

namespace MAVN.Service.Tiers.Settings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Lykke.Logs" Version="7.3.3" />
<PackageReference Include="MAVN.Numerics" Version="1.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="Moq" Version="4.13.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<PackageReference Include="Falcon.Numerics" Version="0.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\MAVN.Service.Tiers.DomainServices\MAVN.Service.Tiers.DomainServices.csproj" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Falcon.Numerics;
using MAVN.Numerics;
using Lykke.Logs;
using MAVN.Service.Tiers.Domain.Entities;
using MAVN.Service.Tiers.Domain.Repositories;
Expand Down

0 comments on commit c2a1b74

Please sign in to comment.