feat(aihit): init + docker + cicd

This commit is contained in:
Mikhail Kuznetsov
2024-01-31 12:26:43 +10:00
parent 56e8477bf1
commit 2fa4d52e72
23 changed files with 450 additions and 20 deletions

View File

@@ -0,0 +1,16 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using PARR.BLL;
namespace PARR.AIHITSyncer
{
public static class AihitSyncerInstaller
{
public static void InstallAihitSyncerServices(this IServiceCollection services, IConfiguration configuration)
{
services.InstallBllServices(configuration);
//todo: config e.t.c
}
}
}

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\PARR.BLL\PARR.BLL.csproj" />
<ProjectReference Include="..\PARR.DAL\PARR.DAL.csproj" />
</ItemGroup>
</Project>