Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IFormFile without deprecated Microsoft.AspNetCore.Http.Features

I use IFormFile in class library, Microsoft.AspNetCore.Http.Features has become deprecated. What kind nugget package I need now, for IFormFile in .Net 7

like image 528
giorgi02 Avatar asked Sep 12 '25 05:09

giorgi02


1 Answers

Please read this document:

https://docs.microsoft.com/en-us/aspnet/core/fundamentals/target-aspnetcore

Delete any packages like Microsoft.Extensions.Features in the .csproj file and instead reference the framework.

<ItemGroup>
  <FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
like image 160
Joe G Avatar answered Sep 14 '25 18:09

Joe G