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.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

SpotifyWorker.csproj 1.1KB

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk.Worker">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <UserSecretsId>dotnet-SpotifyWorker-32F09870-7D1D-49C3-A41E-BCD7B23F1454</UserSecretsId>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Google.Protobuf" Version="3.21.5" />
  10. <PackageReference Include="Grpc" Version="2.46.3" />
  11. <PackageReference Include="Grpc.AspNetCore.Server" Version="2.48.0" />
  12. <PackageReference Include="Grpc.Tools" Version="2.48.0">
  13. <PrivateAssets>all</PrivateAssets>
  14. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  15. </PackageReference>
  16. <PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
  17. <PackageReference Include="protobuf-net.Grpc" Version="1.0.171" />
  18. <PackageReference Include="System.Net.Http" Version="4.3.4" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\gRPCServer\SpotifyService.csproj" />
  22. <ProjectReference Include="..\IdentityProvider\IdentityProvider.csproj" />
  23. </ItemGroup>
  24. </Project>