Browse Source

Fix project dep

tags/v1.1.0^2
nemanja.grkovic 3 years ago
parent
commit
2687ea7d66

+ 0
- 1
GrpcShared/Interfaces/ITrackService.cs View File

@@ -18,6 +18,5 @@ namespace GrpcShared.Interfaces
Task<SingleTrackResponse> ListSingleTrackAsync(SingleTrackRequest request);
Task<MultipleTrackResponse> ListMultipleTrackAsync(MultipleTrackRequest request);
Task SaveTracks(SaveTracksRequest request);
Task<Microsoft.AspNetCore.Components.Authorization.AuthenticationState> GetAuthenticationStateAsync();
}
}

+ 1
- 0
IdentityProvider/IdentityProvider.csproj View File

@@ -19,6 +19,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\gRPCServer\SpotifyService.csproj" />
<ProjectReference Include="..\GrpcShared\GrpcShared.csproj" />
<ProjectReference Include="..\NemAnCore\NemAnBlazor.csproj" />
</ItemGroup>

+ 1
- 1
gRPCServer/Services/TrackService.cs View File

@@ -107,7 +107,7 @@ namespace SpotifyService.Services
var query = UriUtil(param);


await client.PutAsync($"me/tracks/{query}", null);
await client.PutAsync($"me/tracks/{query}", null);


}

+ 0
- 1
gRPCServer/SpotifyService.csproj View File

@@ -22,7 +22,6 @@

<ItemGroup>
<ProjectReference Include="..\GrpcShared\GrpcShared.csproj" />
<ProjectReference Include="..\IdentityProvider\IdentityProvider.csproj" />
<ProjectReference Include="..\NemAnCore\NemAnBlazor.csproj" />
</ItemGroup>


Loading…
Cancel
Save