Server to help facilitate the bsky-playdate client.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 22 lines 1.0 kB view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <TargetFramework>net9.0</TargetFramework> 5 <ImplicitUsings>enable</ImplicitUsings> 6 <Nullable>enable</Nullable> 7 <IsAspireSharedProject>true</IsAspireSharedProject> 8 </PropertyGroup> 9 10 <ItemGroup> 11 <FrameworkReference Include="Microsoft.AspNetCore.App" /> 12 13 <PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="9.7.0" /> 14 <PackageReference Include="Microsoft.Extensions.ServiceDiscovery" Version="9.4.1" /> 15 <PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.12.0" /> 16 <PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.12.0" /> 17 <PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.12.0" /> 18 <PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.12.0" /> 19 <PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.12.0" /> 20 </ItemGroup> 21 22</Project>