You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Volo.Abp.Http.Client.IdentityModel package was using Microsoft.NET.Sdk.Web SDK and it was using .net core 3.1. #2867 removes this dependency so it can be usable by non .net core projects too (like Xamarin and full .net framework).
This PR moves web depended functionality to Volo.Abp.Http.Client.IdentityModel.Web package, which can be a breaking change for existing applications.
Fortunately it is easy to fix.
For web projects depend on the Volo.Abp.Http.Client.IdentityModel package;
Replace the Volo.Abp.Http.Client.IdentityModel reference by the Volo.Abp.Http.Client.IdentityModel.Web reference.
Replace the dependency typeof(AbpHttpClientIdentityModelModule) to typeof(AbpHttpClientIdentityModelWebModule) for your related module class.
For console applications depend on the Volo.Abp.Http.Client.IdentityModel package;
Add Microsoft.Extensions.Hosting package reference to your .csproj file:
Reason: Because the hosting services were coming indirectly from the Volo.Abp.Http.Client.IdentityModel dependency and now we should manually use this package.
Volo.Abp.Http.Client.IdentityModel
package was usingMicrosoft.NET.Sdk.Web
SDK and it was using .net core 3.1. #2867 removes this dependency so it can be usable by non .net core projects too (like Xamarin and full .net framework).This PR moves web depended functionality to
Volo.Abp.Http.Client.IdentityModel.Web
package, which can be a breaking change for existing applications.Fortunately it is easy to fix.
Volo.Abp.Http.Client.IdentityModel
package;Volo.Abp.Http.Client.IdentityModel
reference by theVolo.Abp.Http.Client.IdentityModel.Web
reference.typeof(AbpHttpClientIdentityModelModule)
totypeof(AbpHttpClientIdentityModelWebModule)
for your related module class.Volo.Abp.Http.Client.IdentityModel
package;Microsoft.Extensions.Hosting
package reference to your.csproj
file:Reason: Because the hosting services were coming indirectly from the
Volo.Abp.Http.Client.IdentityModel
dependency and now we should manually use this package.Example change set: 7d94050
The text was updated successfully, but these errors were encountered: