Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which NuGet package contains System.Web.Routing?

Tags:

asp.net

nuget

I'd like to handle my web application references using NuGet. Which NuGet package contains System.Web.Routing?

I've searched the NuGet website.

like image 798
Shaun Luttin Avatar asked Dec 24 '22 20:12

Shaun Luttin


1 Answers

It's not in a NuGet package. It's in System.Web assembly, part of the .NET Framework. You can tell by looking at the assembly of the Route Class on MSDN.

like image 120
mason Avatar answered Jan 15 '23 18:01

mason