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.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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>