an atproto pds written in F# (.NET 9) 🦒
pds fsharp giraffe dotnet atproto
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 871a0179c4ef860921cfda57d6dfbfda0491f59e 20 lines 672 B view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 <PropertyGroup> 3 <TargetFramework>net9.0</TargetFramework> 4 <GenerateDocumentationFile>true</GenerateDocumentationFile> 5 </PropertyGroup> 6 7 <ItemGroup> 8 <Compile Include="Config.fs" /> 9 <Compile Include="Cid.fs" /> 10 <Compile Include="DagCbor.fs" /> 11 <Compile Include="Crypto.fs" /> 12 <Compile Include="DidResolver.fs" /> 13 <Compile Include="Library.fs" /> 14 </ItemGroup> 15 16 <ItemGroup> 17 <PackageReference Include="BouncyCastle.Cryptography" Version="2.6.2" /> 18 <PackageReference Include="System.Formats.Cbor" Version="10.0.1" /> 19 </ItemGroup> 20</Project>