Will Applying a Patch to ASP.NET MVC Also Update Associated Components (Web Pages, Web API, SignalR)?

Abdur Montoya 0 Reputation points
2023-08-24T21:41:39.84+00:00

The question is asking whether, when applying a patch to ASP.NET MVC, the other associated components (ASP.NET Web Pages, Web API, and SignalR) will also be updated as part of the patching process. In other words, will the patch affect not only ASP.NET MVC but also these related components?

I'm a novice in this field.

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,303 questions
ASP.NET API
ASP.NET API
ASP.NET: A set of technologies in the .NET Framework for building web applications and XML web services.API: A software intermediary that allows two applications to interact with each other.
303 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 57,646 Reputation points
    2023-08-31T17:29:52.8766667+00:00

    asp.net 4.8 runtime is patched as part of O/S patches. the runtime includes asp.net and webforms.

    MVC, signal/r and webapi are nuget packages added to the project. these are "patched" by updating the version number in specified in packages.config file and rebuilding the project.

    0 comments No comments