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.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

SpotifyWorker.csproj 1.3KB

1234567891011121314151617181920212223242526272829
  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. <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Google.Protobuf" Version="3.21.5" />
  11. <PackageReference Include="Grpc" Version="2.46.3" />
  12. <PackageReference Include="Grpc.AspNetCore.Server" Version="2.48.0" />
  13. <PackageReference Include="Grpc.Tools" Version="2.48.0">
  14. <PrivateAssets>all</PrivateAssets>
  15. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  16. </PackageReference>
  17. <PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
  18. <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
  19. <PackageReference Include="protobuf-net.Grpc" Version="1.0.171" />
  20. <PackageReference Include="System.Net.Http" Version="4.3.4" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\SpotifyService\SpotifyService.csproj" />
  24. <ProjectReference Include="..\IdentityProvider\IdentityProvider.csproj" />
  25. </ItemGroup>
  26. </Project>