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.

NemAnBlazor.csproj 860B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Blazored.SessionStorage" Version="2.2.0" />
  9. <PackageReference Include="Grpc.Net.Client" Version="2.47.0" />
  10. <PackageReference Include="Grpc.Net.Client.Web" Version="2.47.0" />
  11. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.7" />
  12. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.7" PrivateAssets="all" />
  13. <PackageReference Include="protobuf-net.Grpc" Version="1.0.171" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\GrpcShared\GrpcShared.csproj" />
  17. </ItemGroup>
  18. </Project>