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 32 lines 1.2 kB view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 <PropertyGroup> 3 <TargetFramework>net9.0</TargetFramework> 4 <IsPackable>false</IsPackable> 5 <GenerateProgramFile>false</GenerateProgramFile> 6 </PropertyGroup> 7 8 <ItemGroup> 9 <Compile Include="Tests.fs" /> 10 <Compile Include="Mst.Tests.fs" /> 11 <Compile Include="BlockStore.Tests.fs" /> 12 <Compile Include="AtUri.Tests.fs" /> 13 <Compile Include="Repository.Tests.fs" /> 14 <Compile Include="Car.Tests.fs" /> 15 <Compile Include="Firehose.Tests.fs" /> 16 <Compile Include="Auth.Tests.fs" /> 17 <Compile Include="Conformance.Tests.fs" /> 18 <Compile Include="Program.fs" /> 19 </ItemGroup> 20 21 <ItemGroup> 22 <PackageReference Include="coverlet.collector" Version="6.0.2" /> 23 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" /> 24 <PackageReference Include="xunit" Version="2.9.2" /> 25 <PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" /> 26 </ItemGroup> 27 28 <ItemGroup> 29 <ProjectReference Include="..\PDSharp\PDSharp.fsproj" /> 30 <ProjectReference Include="..\PDSharp.Core\PDSharp.Core.fsproj" /> 31 </ItemGroup> 32</Project>