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.

IdentityProvider.csproj 473B

123456789101112131415161718
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <Protobuf Include="Protos\greet.proto" GrpcServices="Server" />
  9. <Protobuf Include="Protos\auth.proto" GrpcServices="Server" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Grpc.AspNetCore" Version="2.40.0" />
  13. </ItemGroup>
  14. </Project>