Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

GrpcShared.csproj 832B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Library</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
  10. <PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
  11. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  12. <PackageReference Include="protobuf-net.BuildTools" Version="3.1.17">
  13. <PrivateAssets>all</PrivateAssets>
  14. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  15. </PackageReference>
  16. <PackageReference Include="protobuf-net.Grpc" Version="1.0.171" />
  17. </ItemGroup>
  18. </Project>