feat: Исправлены docker файлы
This commit is contained in:
@@ -8,10 +8,12 @@ ARG BUILD_CONFIGURATION=Release
|
|||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY ["NuGet.config", "."]
|
COPY ["NuGet.config", "."]
|
||||||
COPY ["PARR.AIHITLoaderWorker/PARR.AIHITLoaderWorker.csproj", "PARR.AIHITLoaderWorker/"]
|
COPY ["PARR.AIHITLoaderWorker/PARR.AIHITLoaderWorker.csproj", "PARR.AIHITLoaderWorker/"]
|
||||||
COPY ["PARR.AIHITLoader/PARR.AIHITLoader.csproj", "PARR.AIHITLoader/"]
|
|
||||||
COPY ["PARR.AIHITMainLoader/PARR.AIHITMainLoader.csproj", "PARR.AIHITMainLoader/"]
|
COPY ["PARR.AIHITMainLoader/PARR.AIHITMainLoader.csproj", "PARR.AIHITMainLoader/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
|
COPY ["PARR.Infrastructure/PARR.Infrastructure.csproj", "PARR.Infrastructure/"]
|
||||||
RUN dotnet restore "./PARR.AIHITLoaderWorker/./PARR.AIHITLoaderWorker.csproj"
|
RUN dotnet restore "./PARR.AIHITLoaderWorker/./PARR.AIHITLoaderWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.AIHITLoaderWorker"
|
WORKDIR "/src/PARR.AIHITLoaderWorker"
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.0" />
|
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ using PARR.AIHITMainLoader.Context;
|
|||||||
using PARR.AIHITMainLoader.Services;
|
using PARR.AIHITMainLoader.Services;
|
||||||
using PARR.AIHITMainLoader.Settings;
|
using PARR.AIHITMainLoader.Settings;
|
||||||
using PARR.BLL;
|
using PARR.BLL;
|
||||||
|
using PARR.Core;
|
||||||
|
using PARR.Infrastructure;
|
||||||
|
|
||||||
namespace PARR.AIHITMainLoader
|
namespace PARR.AIHITMainLoader
|
||||||
{
|
{
|
||||||
@@ -13,6 +15,8 @@ namespace PARR.AIHITMainLoader
|
|||||||
public static void InstallAihitMainLoaderServices(this IServiceCollection services, IConfiguration configuration)
|
public static void InstallAihitMainLoaderServices(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
services.InstallBllServices(configuration);
|
services.InstallBllServices(configuration);
|
||||||
|
services.AddCoreServices(configuration);
|
||||||
|
services.AddInfrastructureServices(configuration);
|
||||||
|
|
||||||
var settings = new WorkerSettings();
|
var settings = new WorkerSettings();
|
||||||
configuration.GetSection(nameof(WorkerSettings)).Bind(settings);
|
configuration.GetSection(nameof(WorkerSettings)).Bind(settings);
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ using PARR.AIHITRelationshipsSyncer.Services.Implementations;
|
|||||||
using PARR.AIHITRelationshipsSyncer.Services.Interfaces;
|
using PARR.AIHITRelationshipsSyncer.Services.Interfaces;
|
||||||
using PARR.AIHITRelationshipsSyncer.Settings;
|
using PARR.AIHITRelationshipsSyncer.Settings;
|
||||||
using PARR.BLL;
|
using PARR.BLL;
|
||||||
|
using PARR.Core;
|
||||||
using PARR.DAL;
|
using PARR.DAL;
|
||||||
|
|
||||||
namespace PARR.AIHITRelationshipsSyncer
|
namespace PARR.AIHITRelationshipsSyncer
|
||||||
@@ -15,6 +16,7 @@ namespace PARR.AIHITRelationshipsSyncer
|
|||||||
public static void InstallAihitRelationshpsSyncerServices(this IServiceCollection services, IConfiguration configuration)
|
public static void InstallAihitRelationshpsSyncerServices(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
services.InstallBllServices(configuration);
|
services.InstallBllServices(configuration);
|
||||||
|
services.AddCoreServices(configuration);
|
||||||
services.InstallDalServices(configuration);
|
services.InstallDalServices(configuration);
|
||||||
|
|
||||||
var settings = new WorkerSettings();
|
var settings = new WorkerSettings();
|
||||||
|
|||||||
@@ -14,8 +14,9 @@ COPY ["PARR.AIHITRelationshipsSyncerWorker/PARR.AIHITRelationshipsSyncerWorker.c
|
|||||||
COPY ["PARR.AIHITRelationshipsSyncer/PARR.AIHITRelationshipsSyncer.csproj", "PARR.AIHITRelationshipsSyncer/"]
|
COPY ["PARR.AIHITRelationshipsSyncer/PARR.AIHITRelationshipsSyncer.csproj", "PARR.AIHITRelationshipsSyncer/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "./PARR.AIHITRelationshipsSyncerWorker/PARR.AIHITRelationshipsSyncerWorker.csproj"
|
RUN dotnet restore "./PARR.AIHITRelationshipsSyncerWorker/PARR.AIHITRelationshipsSyncerWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.AIHITRelationshipsSyncerWorker"
|
WORKDIR "/src/PARR.AIHITRelationshipsSyncerWorker"
|
||||||
|
|||||||
@@ -8,12 +8,12 @@ ARG BUILD_CONFIGURATION=Release
|
|||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY ["NuGet.config", "."]
|
COPY ["NuGet.config", "."]
|
||||||
COPY ["PARR.AIHITSyncerWorker/PARR.AIHITSyncerWorker.csproj", "PARR.AIHITSyncerWorker/"]
|
COPY ["PARR.AIHITSyncerWorker/PARR.AIHITSyncerWorker.csproj", "PARR.AIHITSyncerWorker/"]
|
||||||
COPY ["PARR.AIHITSyncer/PARR.AIHITSyncer.csproj", "PARR.AIHITSyncer/"]
|
|
||||||
COPY ["PARR.AIHITMainSyncer/PARR.AIHITMainSyncer.csproj", "PARR.AIHITMainSyncer/"]
|
COPY ["PARR.AIHITMainSyncer/PARR.AIHITMainSyncer.csproj", "PARR.AIHITMainSyncer/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "./PARR.AIHITSyncerWorker/./PARR.AIHITSyncerWorker.csproj"
|
RUN dotnet restore "./PARR.AIHITSyncerWorker/./PARR.AIHITSyncerWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.AIHITSyncerWorker"
|
WORKDIR "/src/PARR.AIHITSyncerWorker"
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.0" />
|
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||||
|
|||||||
@@ -15,11 +15,12 @@ FROM 10.99.253.167:8090/dotnet/sdk:7.0 AS build
|
|||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY ["NuGet.config", "."]
|
COPY ["NuGet.config", "."]
|
||||||
COPY ["PARR.API/PARR.API.csproj", "PARR.API/"]
|
COPY ["PARR.API/PARR.API.csproj", "PARR.API/"]
|
||||||
COPY ["CHANGELOG.md", "PARR.API/"]
|
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Infrastructure/PARR.Infrastructure.csproj", "PARR.Infrastructure/"]
|
||||||
RUN dotnet restore "PARR.API/PARR.API.csproj"
|
RUN dotnet restore "PARR.API/PARR.API.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.API"
|
WORKDIR "/src/PARR.API"
|
||||||
|
|||||||
@@ -26,6 +26,7 @@
|
|||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
<PackageReference Include="Serilog.AspNetCore" Version="7.0.0" />
|
<PackageReference Include="Serilog.AspNetCore" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||||
|
|||||||
@@ -24,8 +24,10 @@ builder.Host.UseSerilog((context, config) =>
|
|||||||
|
|
||||||
// Add services to the container.
|
// Add services to the container.
|
||||||
builder.Services.InstallDalServices(builder.Configuration);
|
builder.Services.InstallDalServices(builder.Configuration);
|
||||||
|
//---- new ----
|
||||||
builder.Services.AddCoreServices(builder.Configuration);
|
builder.Services.AddCoreServices(builder.Configuration);
|
||||||
builder.Services.AddInfrastructureServices(builder.Configuration);
|
builder.Services.AddInfrastructureServices(builder.Configuration);
|
||||||
|
//---- --- ----
|
||||||
builder.Services.InstallBllServices(builder.Configuration);
|
builder.Services.InstallBllServices(builder.Configuration);
|
||||||
builder.Services.InstallApiServices(builder.Configuration);
|
builder.Services.InstallApiServices(builder.Configuration);
|
||||||
builder.Services.InstallSettings(builder.Configuration);
|
builder.Services.InstallSettings(builder.Configuration);
|
||||||
|
|||||||
@@ -9,10 +9,11 @@ COPY ["NuGet.config", "."]
|
|||||||
COPY ["PARR.EsppOrderLoaderWorker/PARR.EsppOrderLoaderWorker.csproj", "PARR.EsppOrderLoaderWorker/"]
|
COPY ["PARR.EsppOrderLoaderWorker/PARR.EsppOrderLoaderWorker.csproj", "PARR.EsppOrderLoaderWorker/"]
|
||||||
COPY ["PARR.EsppOrderLoader/PARR.EsppOrderLoader.csproj", "PARR.EsppOrderLoader/"]
|
COPY ["PARR.EsppOrderLoader/PARR.EsppOrderLoader.csproj", "PARR.EsppOrderLoader/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
|
||||||
COPY ["PARR.EsppApi/PARR.EsppApi.csproj", "PARR.EsppApi/"]
|
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
|
COPY ["PARR.EsppApi/PARR.EsppApi.csproj", "PARR.EsppApi/"]
|
||||||
RUN dotnet restore "PARR.EsppOrderLoaderWorker/PARR.EsppOrderLoaderWorker.csproj"
|
RUN dotnet restore "PARR.EsppOrderLoaderWorker/PARR.EsppOrderLoaderWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.EsppOrderLoaderWorker"
|
WORKDIR "/src/PARR.EsppOrderLoaderWorker"
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||||
|
|||||||
@@ -9,10 +9,11 @@ COPY ["NuGet.config", "."]
|
|||||||
COPY ["PARR.EsppOrderManagerWorker/PARR.EsppOrderManagerWorker.csproj", "PARR.EsppOrderManagerWorker/"]
|
COPY ["PARR.EsppOrderManagerWorker/PARR.EsppOrderManagerWorker.csproj", "PARR.EsppOrderManagerWorker/"]
|
||||||
COPY ["PARR.EsppOrderManager/PARR.EsppOrderManager.csproj", "PARR.EsppOrderManager/"]
|
COPY ["PARR.EsppOrderManager/PARR.EsppOrderManager.csproj", "PARR.EsppOrderManager/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
|
||||||
COPY ["PARR.EsppApi/PARR.EsppApi.csproj", "PARR.EsppApi/"]
|
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
|
COPY ["PARR.EsppApi/PARR.EsppApi.csproj", "PARR.EsppApi/"]
|
||||||
RUN dotnet restore "PARR.EsppOrderManagerWorker/PARR.EsppOrderManagerWorker.csproj"
|
RUN dotnet restore "PARR.EsppOrderManagerWorker/PARR.EsppOrderManagerWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.EsppOrderManagerWorker"
|
WORKDIR "/src/PARR.EsppOrderManagerWorker"
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||||
|
|||||||
@@ -9,9 +9,10 @@ COPY ["NuGet.config", "."]
|
|||||||
COPY ["PARR.EsppScheduleSyncWorker/PARR.EsppScheduleSyncWorker.csproj", "PARR.EsppScheduleSyncWorker/"]
|
COPY ["PARR.EsppScheduleSyncWorker/PARR.EsppScheduleSyncWorker.csproj", "PARR.EsppScheduleSyncWorker/"]
|
||||||
COPY ["PARR.EsppScheduleSync/PARR.EsppScheduleSync.csproj", "PARR.EsppScheduleSync/"]
|
COPY ["PARR.EsppScheduleSync/PARR.EsppScheduleSync.csproj", "PARR.EsppScheduleSync/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
COPY ["PARR.EsppSync/PARR.EsppSync.csproj", "PARR.EsppSync/"]
|
COPY ["PARR.EsppSync/PARR.EsppSync.csproj", "PARR.EsppSync/"]
|
||||||
RUN dotnet restore "PARR.EsppScheduleSyncWorker/PARR.EsppScheduleSyncWorker.csproj"
|
RUN dotnet restore "PARR.EsppScheduleSyncWorker/PARR.EsppScheduleSyncWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||||
|
|||||||
@@ -9,9 +9,11 @@ COPY ["NuGet.config", "."]
|
|||||||
COPY ["PARR.EsppTemplateSyncWorker/PARR.EsppTemplateSyncWorker.csproj", "PARR.EsppTemplateSyncWorker/"]
|
COPY ["PARR.EsppTemplateSyncWorker/PARR.EsppTemplateSyncWorker.csproj", "PARR.EsppTemplateSyncWorker/"]
|
||||||
COPY ["PARR.EsppTemplateSync/PARR.EsppTemplateSync.csproj", "PARR.EsppTemplateSync/"]
|
COPY ["PARR.EsppTemplateSync/PARR.EsppTemplateSync.csproj", "PARR.EsppTemplateSync/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
|
COPY ["PARR.EsppSync/PARR.EsppSync.csproj", "PARR.EsppSync/"]
|
||||||
RUN dotnet restore "PARR.EsppTemplateSyncWorker/PARR.EsppTemplateSyncWorker.csproj"
|
RUN dotnet restore "PARR.EsppTemplateSyncWorker/PARR.EsppTemplateSyncWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.EsppTemplateSyncWorker"
|
WORKDIR "/src/PARR.EsppTemplateSyncWorker"
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.0" />
|
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||||
|
|||||||
@@ -14,8 +14,9 @@ COPY ["PARR.JobAutoControlWorker/PARR.JobAutoControlWorker.csproj", "PARR.JobAut
|
|||||||
COPY ["PARR.JobAutoControl/PARR.JobAutoControl.csproj", "PARR.JobAutoControl/"]
|
COPY ["PARR.JobAutoControl/PARR.JobAutoControl.csproj", "PARR.JobAutoControl/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "./PARR.JobAutoControlWorker/PARR.JobAutoControlWorker.csproj"
|
RUN dotnet restore "./PARR.JobAutoControlWorker/PARR.JobAutoControlWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.JobAutoControlWorker"
|
WORKDIR "/src/PARR.JobAutoControlWorker"
|
||||||
|
|||||||
@@ -9,9 +9,10 @@ COPY ["NuGet.config", "."]
|
|||||||
COPY ["PARR.MasterWorker/PARR.MasterWorker.csproj", "PARR.MasterWorker/"]
|
COPY ["PARR.MasterWorker/PARR.MasterWorker.csproj", "PARR.MasterWorker/"]
|
||||||
COPY ["PARR.Master/PARR.Master.csproj", "PARR.Master/"]
|
COPY ["PARR.Master/PARR.Master.csproj", "PARR.Master/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "PARR.MasterWorker/PARR.MasterWorker.csproj"
|
RUN dotnet restore "PARR.MasterWorker/PARR.MasterWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.MasterWorker"
|
WORKDIR "/src/PARR.MasterWorker"
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||||
|
|||||||
@@ -10,9 +10,10 @@ COPY ["NuGet.config", "."]
|
|||||||
COPY ["PARR.NextRunWorker/PARR.NextRunWorker.csproj", "PARR.NextRunWorker/"]
|
COPY ["PARR.NextRunWorker/PARR.NextRunWorker.csproj", "PARR.NextRunWorker/"]
|
||||||
COPY ["PARR.NextRun/PARR.NextRun.csproj", "PARR.NextRun/"]
|
COPY ["PARR.NextRun/PARR.NextRun.csproj", "PARR.NextRun/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "./PARR.NextRunWorker/./PARR.NextRunWorker.csproj"
|
RUN dotnet restore "./PARR.NextRunWorker/./PARR.NextRunWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.NextRunWorker"
|
WORKDIR "/src/PARR.NextRunWorker"
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
<PackageReference Include="Elastic.CommonSchema.Serilog" Version="8.6.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="7.0.0" />
|
||||||
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
|
||||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||||
|
|||||||
@@ -10,9 +10,10 @@ COPY ["NuGet.config", "."]
|
|||||||
COPY ["PARR.TemplateActivatorWorker/PARR.TemplateActivatorWorker.csproj", "PARR.TemplateActivatorWorker/"]
|
COPY ["PARR.TemplateActivatorWorker/PARR.TemplateActivatorWorker.csproj", "PARR.TemplateActivatorWorker/"]
|
||||||
COPY ["PARR.TemplateActivator/PARR.TemplateActivator.csproj", "PARR.TemplateActivator/"]
|
COPY ["PARR.TemplateActivator/PARR.TemplateActivator.csproj", "PARR.TemplateActivator/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "./PARR.TemplateActivatorWorker/PARR.TemplateActivatorWorker.csproj"
|
RUN dotnet restore "./PARR.TemplateActivatorWorker/PARR.TemplateActivatorWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.TemplateActivatorWorker"
|
WORKDIR "/src/PARR.TemplateActivatorWorker"
|
||||||
|
|||||||
@@ -10,9 +10,10 @@ COPY ["NuGet.config", "."]
|
|||||||
COPY ["PARR.TemplateDistributorWorker/PARR.TemplateDistributorWorker.csproj", "PARR.TemplateDistributorWorker/"]
|
COPY ["PARR.TemplateDistributorWorker/PARR.TemplateDistributorWorker.csproj", "PARR.TemplateDistributorWorker/"]
|
||||||
COPY ["PARR.TemplateDistributor/PARR.TemplateDistributor.csproj", "PARR.TemplateDistributor/"]
|
COPY ["PARR.TemplateDistributor/PARR.TemplateDistributor.csproj", "PARR.TemplateDistributor/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "./PARR.TemplateDistributorWorker/PARR.TemplateDistributorWorker.csproj"
|
RUN dotnet restore "./PARR.TemplateDistributorWorker/PARR.TemplateDistributorWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.TemplateDistributorWorker"
|
WORKDIR "/src/PARR.TemplateDistributorWorker"
|
||||||
|
|||||||
@@ -11,6 +11,11 @@ ARG BUILD_CONFIGURATION=Release
|
|||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY ["NuGet.config", "."]
|
COPY ["NuGet.config", "."]
|
||||||
COPY ["PARR.TemplateGeneratorWorker/PARR.TemplateGeneratorWorker.csproj", "PARR.TemplateGeneratorWorker/"]
|
COPY ["PARR.TemplateGeneratorWorker/PARR.TemplateGeneratorWorker.csproj", "PARR.TemplateGeneratorWorker/"]
|
||||||
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "./PARR.TemplateGeneratorWorker/PARR.TemplateGeneratorWorker.csproj"
|
RUN dotnet restore "./PARR.TemplateGeneratorWorker/PARR.TemplateGeneratorWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.TemplateGeneratorWorker"
|
WORKDIR "/src/PARR.TemplateGeneratorWorker"
|
||||||
|
|||||||
@@ -14,8 +14,9 @@ COPY ["PARR.TemplateMatcherWorker/PARR.TemplateMatcherWorker.csproj", "PARR.Temp
|
|||||||
COPY ["PARR.TemplateMatcher/PARR.TemplateMatcher.csproj", "PARR.TemplateMatcher/"]
|
COPY ["PARR.TemplateMatcher/PARR.TemplateMatcher.csproj", "PARR.TemplateMatcher/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "./PARR.TemplateMatcherWorker/PARR.TemplateMatcherWorker.csproj"
|
RUN dotnet restore "./PARR.TemplateMatcherWorker/PARR.TemplateMatcherWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.TemplateMatcherWorker"
|
WORKDIR "/src/PARR.TemplateMatcherWorker"
|
||||||
|
|||||||
@@ -14,8 +14,9 @@ COPY ["PARR.TemplateUpdaterWorker/PARR.TemplateUpdaterWorker.csproj", "PARR.Temp
|
|||||||
COPY ["PARR.TemplateUpdater/PARR.TemplateUpdater.csproj", "PARR.TemplateUpdater/"]
|
COPY ["PARR.TemplateUpdater/PARR.TemplateUpdater.csproj", "PARR.TemplateUpdater/"]
|
||||||
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
COPY ["PARR.BLL/PARR.BLL.csproj", "PARR.BLL/"]
|
||||||
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
COPY ["PARR.Common/PARR.Common.csproj", "PARR.Common/"]
|
||||||
COPY ["PARR.Constants/PARR.Constants.csproj", "PARR.Constants/"]
|
COPY ["PARR.Domain/PARR.Domain.csproj", "PARR.Domain/"]
|
||||||
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
COPY ["PARR.DAL/PARR.DAL.csproj", "PARR.DAL/"]
|
||||||
|
COPY ["PARR.Core/PARR.Core.csproj", "PARR.Core/"]
|
||||||
RUN dotnet restore "./PARR.TemplateUpdaterWorker/PARR.TemplateUpdaterWorker.csproj"
|
RUN dotnet restore "./PARR.TemplateUpdaterWorker/PARR.TemplateUpdaterWorker.csproj"
|
||||||
COPY . .
|
COPY . .
|
||||||
WORKDIR "/src/PARR.TemplateUpdaterWorker"
|
WORKDIR "/src/PARR.TemplateUpdaterWorker"
|
||||||
|
|||||||
Reference in New Issue
Block a user