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.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

SpotifyService.csproj 1.3KB

1234567891011121314151617181920212223242526272829
  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. <PackageReference Include="Google.Api.CommonProtos" Version="2.6.0" />
  9. <PackageReference Include="Grpc.AspNetCore" Version="2.40.0" />
  10. <PackageReference Include="Grpc.AspNetCore.Web" Version="2.47.0" />
  11. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="6.0.8" />
  12. <PackageReference Include="Microsoft.Extensions.Http.Polly" Version="6.0.8" />
  13. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  14. <PackageReference Include="Polly" Version="7.2.3" />
  15. <PackageReference Include="protobuf-net.Grpc" Version="1.0.171" />
  16. <PackageReference Include="protobuf-net.Grpc.AspNetCore" Version="1.0.152" />
  17. <PackageReference Include="protobuf-net.Grpc.AspNetCore.Reflection" Version="1.0.152" />
  18. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\GrpcShared\GrpcShared.csproj" />
  22. <ProjectReference Include="..\IdentityProvider\IdentityProvider.csproj" />
  23. <ProjectReference Include="..\NemAnBlazor\NemAnBlazor.csproj" />
  24. </ItemGroup>
  25. </Project>