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 9d7be1ecd23a34411aa7d704d9f810ceec71f2e7 25 lines 873 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="DidResolver.fs" /> 18 <Compile Include="Library.fs" /> 19 </ItemGroup> 20 21 <ItemGroup> 22 <PackageReference Include="BouncyCastle.Cryptography" Version="2.6.2" /> 23 <PackageReference Include="System.Formats.Cbor" Version="10.0.1" /> 24 </ItemGroup> 25</Project>