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 символів.

IdentityProvider.csproj 1.2KB

123456789101112131415161718192021222324252627
  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="Grpc.AspNetCore" Version="2.40.0" />
  9. <PackageReference Include="Grpc.AspNetCore.Web" Version="2.47.0" />
  10. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="6.0.8" />
  11. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  12. <PackageReference Include="protobuf-net.Grpc" Version="1.0.171" />
  13. <PackageReference Include="protobuf-net.Grpc.AspNetCore" Version="1.0.152" />
  14. <PackageReference Include="protobuf-net.Grpc.AspNetCore.Reflection" Version="1.0.152" />
  15. <PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0" />
  16. <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.22.0" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\gRPCServer\SpotifyService.csproj" />
  20. <ProjectReference Include="..\GrpcShared\GrpcShared.csproj" />
  21. <ProjectReference Include="..\NemAnCore\NemAnBlazor.csproj" />
  22. </ItemGroup>
  23. </Project>