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 53fe2116a8a7c626d538d6ab132a437f3b8d4bf8 28 lines 994 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="Mst.fs" /> 13 <Compile Include="BlockStore.fs" /> 14 <Compile Include="Car.fs" /> 15 <Compile Include="AtUri.fs" /> 16 <Compile Include="Repository.fs" /> 17 <Compile Include="Auth.fs" /> 18 <Compile Include="Firehose.fs" /> 19 <Compile Include="DidResolver.fs" /> 20 <Compile Include="Lexicon.fs" /> 21 <Compile Include="Library.fs" /> 22 </ItemGroup> 23 24 <ItemGroup> 25 <PackageReference Include="BouncyCastle.Cryptography" Version="2.6.2" /> 26 <PackageReference Include="System.Formats.Cbor" Version="10.0.1" /> 27 </ItemGroup> 28</Project>