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 acb1d4f2aeabb0d56d22c3b4f3e07a386e8b16a3 26 lines 818 B view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <TargetFramework>net9.0</TargetFramework> 5 <IsPackable>false</IsPackable> 6 <GenerateProgramFile>false</GenerateProgramFile> 7 </PropertyGroup> 8 9 <ItemGroup> 10 <Compile Include="Tests.fs" /> 11 <Compile Include="Program.fs" /> 12 </ItemGroup> 13 14 <ItemGroup> 15 <PackageReference Include="coverlet.collector" Version="6.0.2" /> 16 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" /> 17 <PackageReference Include="xunit" Version="2.9.2" /> 18 <PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" /> 19 </ItemGroup> 20 21 <ItemGroup> 22 <ProjectReference Include="..\PDSharp\PDSharp.fsproj" /> 23 <ProjectReference Include="..\PDSharp.Core\PDSharp.Core.fsproj" /> 24 </ItemGroup> 25 26</Project>