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 5259dc4041c642cb16f2aacdc2d9d072058a7c9e 31 lines 1.1 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="Program.fs" /> 18 </ItemGroup> 19 20 <ItemGroup> 21 <PackageReference Include="coverlet.collector" Version="6.0.2" /> 22 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" /> 23 <PackageReference Include="xunit" Version="2.9.2" /> 24 <PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" /> 25 </ItemGroup> 26 27 <ItemGroup> 28 <ProjectReference Include="..\PDSharp\PDSharp.fsproj" /> 29 <ProjectReference Include="..\PDSharp.Core\PDSharp.Core.fsproj" /> 30 </ItemGroup> 31</Project>