Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ tasks:
vscode:
extensions:
- muhammad-sammy.csharp
- esbenp.prettier-vscode
13 changes: 13 additions & 0 deletions Mesh.Service/IHarperDBConfiguration.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using ;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace Mozab.Service.Comments.Services
{
public interface IHarperConfiguration
{
HarperDbConfiguration GetHarperConfigurations();
}
}
7 changes: 7 additions & 0 deletions dotnetcore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,11 @@
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
<PackageReference Include="HarperDb.Net.Client" Version="1.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
</ItemGroup>

</Project>