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.

SpotifyService.csproj 1.6KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <UserSecretsId>2d734739-67f9-4962-a0ef-c43fbc662a6b</UserSecretsId>
  7. <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
  8. <DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Google.Api.CommonProtos" Version="2.6.0" />
  12. <PackageReference Include="Grpc.AspNetCore" Version="2.40.0" />
  13. <PackageReference Include="Grpc.AspNetCore.Web" Version="2.47.0" />
  14. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="6.0.8" />
  15. <PackageReference Include="Microsoft.Extensions.Http.Polly" Version="6.0.8" />
  16. <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
  17. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  18. <PackageReference Include="Polly" Version="7.2.3" />
  19. <PackageReference Include="protobuf-net.Grpc" Version="1.0.171" />
  20. <PackageReference Include="protobuf-net.Grpc.AspNetCore" Version="1.0.152" />
  21. <PackageReference Include="protobuf-net.Grpc.AspNetCore.Reflection" Version="1.0.152" />
  22. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\GrpcShared\GrpcShared.csproj" />
  26. <ProjectReference Include="..\IdentityProvider\IdentityProvider.csproj" />
  27. <ProjectReference Include="..\NemAnBlazor\NemAnBlazor.csproj" />
  28. </ItemGroup>
  29. </Project>