feat(aihit): init + docker + cicd
This commit is contained in:
16
PARR.AIHITLoader/AihitLoaderInstaller.cs
Normal file
16
PARR.AIHITLoader/AihitLoaderInstaller.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using PARR.BLL;
|
||||
|
||||
namespace PARR.AIHITLoader
|
||||
{
|
||||
public static class AihitLoaderInstaller
|
||||
{
|
||||
public static void InstallAihitLoaderServices(this IServiceCollection services, IConfiguration configuration)
|
||||
{
|
||||
services.InstallBllServices(configuration);
|
||||
|
||||
//todo: config e.t.c
|
||||
}
|
||||
}
|
||||
}
|
||||
13
PARR.AIHITLoader/PARR.AIHITLoader.csproj
Normal file
13
PARR.AIHITLoader/PARR.AIHITLoader.csproj
Normal file
@@ -0,0 +1,13 @@
|
||||
<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" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user