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 1.3KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <Optimize>True</Optimize>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <Optimize>False</Optimize>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Blazored.LocalStorage" Version="4.2.0" />
  16. <PackageReference Include="Grpc.Net.Client" Version="2.47.0" />
  17. <PackageReference Include="Grpc.Net.Client.Web" Version="2.47.0" />
  18. <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="6.0.8" />
  19. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.7" />
  20. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.7" PrivateAssets="all" />
  21. <PackageReference Include="protobuf-net.Grpc" Version="1.0.171" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\GrpcShared\GrpcShared.csproj" />
  25. </ItemGroup>
  26. </Project>