FASTER relay

This commit is contained in:
2024-01-12 16:22:38 +00:00
parent a0e59757b5
commit a22122e824
17 changed files with 726 additions and 33 deletions

View File

@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NostrRelay\NostrRelay.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.FASTER.Core" Version="2.6.1" />
</ItemGroup>
</Project>