Skip to content

Commit

Permalink
114: Moved common logging package to SOFTURE
Browse files Browse the repository at this point in the history
  • Loading branch information
jarmatys committed Aug 13, 2024
1 parent 15ace8c commit 67ec2a9
Show file tree
Hide file tree
Showing 34 changed files with 35 additions and 408 deletions.
2 changes: 0 additions & 2 deletions API/ASSISTENTE.API/ASSISTENTE.API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@

<ItemGroup>
<ProjectReference Include="..\ASSISTENTE.Common.Authentication\ASSISTENTE.Common.Authentication.csproj" />
<ProjectReference Include="..\ASSISTENTE.Common.Logging\ASSISTENTE.Common.Logging.csproj" />
<ProjectReference Include="..\ASSISTENTE.Common.Observability\ASSISTENTE.Common.Observability.csproj" />
<ProjectReference Include="..\ASSISTENTE.Contract.Requests.Internal\ASSISTENTE.Contract.Requests.Internal.csproj" />
<ProjectReference Include="..\ASSISTENTE.Module\ASSISTENTE.Module.csproj" />
<ProjectReference Include="..\ASSISTENTE.MessageBroker.Rabbit\ASSISTENTE.MessageBroker.Rabbit.csproj" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions API/ASSISTENTE.API/ApiSettings.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using ASSISTENTE.Client.Internal.Settings;
using ASSISTENTE.Common.Authentication.Settings;
using ASSISTENTE.Common.Logging.Settings;
using ASSISTENTE.Common.Observability.Settings;
using ASSISTENTE.Infrastructure.Embeddings.Settings;
using ASSISTENTE.Infrastructure.LLM.Settings;
using ASSISTENTE.Infrastructure.Qdrant.Settings;
using ASSISTENTE.MessageBroker.Rabbit.Settings;
using ASSISTENTE.Module;
using ASSISTENTE.Persistence.Configuration.Settings;
using SOFTURE.Common.Logging.Settings;
using SOFTURE.MessageBroker.Rabbit.Settings;

namespace ASSISTENTE.API;

Expand Down
8 changes: 4 additions & 4 deletions API/ASSISTENTE.API/Common/Extensions/CommonExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using ASSISTENTE.Common.Authentication;
using ASSISTENTE.Common.Authentication.Settings;
using ASSISTENTE.Common.Logging;
using ASSISTENTE.Common.Logging.Settings;
using ASSISTENTE.Common.Observability;
using ASSISTENTE.Common.Observability.Settings;
using ASSISTENTE.MessageBroker.Rabbit;
using ASSISTENTE.MessageBroker.Rabbit.Settings;
using SOFTURE.Common.Correlation;
using SOFTURE.Common.Logging;
using SOFTURE.Common.Logging.Settings;
using SOFTURE.MessageBroker.Rabbit;
using SOFTURE.MessageBroker.Rabbit.Settings;
using SOFTURE.Settings.Extensions;

namespace ASSISTENTE.API.Common.Extensions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="SOFTURE.Common.Logging" Version="0.0.7" />
<PackageReference Include="SOFTURE.Results" Version="0.0.9" />
<PackageReference Include="SOFTURE.Settings" Version="0.0.9" />
</ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion API/ASSISTENTE.Application/ASSISTENTE.Application.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<ItemGroup>
<ProjectReference Include="..\ASSISTENTE.Application.Abstractions\ASSISTENTE.Application.Abstractions.csproj" />
<ProjectReference Include="..\ASSISTENTE.Application.Middlewares\ASSISTENTE.Application.Middlewares.csproj" />
<ProjectReference Include="..\ASSISTENTE.Common.Logging\ASSISTENTE.Common.Logging.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="SOFTURE.Common.HealthCheck" Version="0.0.2" />
<PackageReference Include="SOFTURE.Common.HealthCheck" Version="0.0.5" />
<PackageReference Include="SOFTURE.Results" Version="0.0.9" />
</ItemGroup>

Expand Down
19 changes: 0 additions & 19 deletions API/ASSISTENTE.Common.Logging/ASSISTENTE.Common.Logging.csproj

This file was deleted.

44 changes: 0 additions & 44 deletions API/ASSISTENTE.Common.Logging/DependencyInjection.cs

This file was deleted.

50 changes: 0 additions & 50 deletions API/ASSISTENTE.Common.Logging/Extensions/LogExtensions.cs

This file was deleted.

23 changes: 0 additions & 23 deletions API/ASSISTENTE.Common.Logging/HealthChecks/SeqHealthCheck.cs

This file was deleted.

6 changes: 0 additions & 6 deletions API/ASSISTENTE.Common.Logging/Settings/ISeqSettings.cs

This file was deleted.

7 changes: 0 additions & 7 deletions API/ASSISTENTE.Common.Logging/Settings/SeqSettings.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="OpenAI-DotNet" Version="8.1.0" />
<PackageReference Include="SOFTURE.Common.HealthCheck" Version="0.0.2" />
<PackageReference Include="SOFTURE.Common.HealthCheck" Version="0.0.5" />
<PackageReference Include="SOFTURE.Results" Version="0.0.9" />
<PackageReference Include="SOFTURE.Settings" Version="0.0.9" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Qdrant.Client" Version="1.8.0" />
<PackageReference Include="SOFTURE.Common.HealthCheck" Version="0.0.2" />
<PackageReference Include="SOFTURE.Common.HealthCheck" Version="0.0.5" />
<PackageReference Include="SOFTURE.Results" Version="0.0.9" />
<PackageReference Include="SOFTURE.Settings" Version="0.0.9" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

<ItemGroup>
<ProjectReference Include="..\ASSISTENTE.Application.Abstractions\ASSISTENTE.Application.Abstractions.csproj" />
<ProjectReference Include="..\ASSISTENTE.Common.Logging\ASSISTENTE.Common.Logging.csproj" />
<ProjectReference Include="..\ASSISTENTE.Infrastructure.CodeParser\ASSISTENTE.Infrastructure.CodeParser.csproj"/>
<ProjectReference Include="..\ASSISTENTE.Infrastructure.MarkDownParser\ASSISTENTE.Infrastructure.MarkDownParser.csproj"/>
<ProjectReference Include="..\ASSISTENTE.Infrastructure.Embeddings\ASSISTENTE.Infrastructure.Embeddings.csproj"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using ASSISTENTE.Application.Abstractions.ValueObjects;
using ASSISTENTE.Common.Logging.Extensions;
using ASSISTENTE.Infrastructure.CodeParser.Contracts;
using Microsoft.Extensions.Logging;
using SOFTURE.Common.Logging.Extensions;

namespace ASSISTENTE.Infrastructure.Services.Parsers;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using ASSISTENTE.Application.Abstractions.ValueObjects;
using ASSISTENTE.Common.Logging.Extensions;
using ASSISTENTE.Infrastructure.MarkDownParser.Contracts;
using Microsoft.Extensions.Logging;
using SOFTURE.Common.Logging.Extensions;

namespace ASSISTENTE.Infrastructure.Services.Parsers;

Expand Down

This file was deleted.

100 changes: 0 additions & 100 deletions API/ASSISTENTE.MessageBroker.Rabbit/DependencyInjection.cs

This file was deleted.

Loading

0 comments on commit 67ec2a9

Please sign in to comment.