feat(aihit): init + docker + cicd
This commit is contained in:
16
PARR.AIHITSyncer/AihitSyncerInstaller.cs
Normal file
16
PARR.AIHITSyncer/AihitSyncerInstaller.cs
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
14
PARR.AIHITSyncer/PARR.AIHITSyncer.csproj
Normal file
14
PARR.AIHITSyncer/PARR.AIHITSyncer.csproj
Normal 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>
|
||||
Reference in New Issue
Block a user