Skip to content

Commit

Permalink
Merge pull request #400 from solliancenet/jdh-coreworker-namespace
Browse files Browse the repository at this point in the history
Update Core Worker namespace and assembly name
  • Loading branch information
ciprianjichici authored Dec 15, 2023
2 parents 35267f2 + 8399078 commit ddd3424
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/dotnet/CoreWorker/ChangeFeedWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Microsoft.ApplicationInsights;
using Microsoft.ApplicationInsights.DataContracts;

namespace CoreWorker
namespace FoundationaLLM.Core.Worker
{
/// <summary>
/// Background service that runs the Change Feed Processor.
Expand Down Expand Up @@ -45,4 +45,4 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
}
}
}
}
}
2 changes: 2 additions & 0 deletions src/dotnet/CoreWorker/CoreWorker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>dotnet-CoreWorker-66b793a2-9018-4ae5-9ed4-b893e8a3e240</UserSecretsId>
<AssemblyName>FoundationaLLM.Core.Worker</AssemblyName>
<RootNamespace>FoundationaLLM.Core.Worker</RootNamespace>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<DockerfileContext>..\..</DockerfileContext>
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/CoreWorker/Program.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Azure.Identity;
using FoundationaLLM.Core.Models.Configuration;
using CoreWorker;
using FoundationaLLM.Core.Interfaces;
using FoundationaLLM.Core.Services;
using FoundationaLLM.Core.Worker;

var builder = Host.CreateApplicationBuilder(args);

Expand Down

0 comments on commit ddd3424

Please sign in to comment.