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 bbb2a8cf0fd3de5a0f2b816798633a58d16122a5 21 lines 709 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="DidResolver.fs" /> 14 <Compile Include="Library.fs" /> 15 </ItemGroup> 16 17 <ItemGroup> 18 <PackageReference Include="BouncyCastle.Cryptography" Version="2.6.2" /> 19 <PackageReference Include="System.Formats.Cbor" Version="10.0.1" /> 20 </ItemGroup> 21</Project>