AspNet WebApi System.Web.Http.SelfHost namespace is missing?

asp.net-web-api

Solution

It is in a separate nuget http://nuget.org/packages/AspNetWebApi.SelfHost

Problem

I've added AspNetWebApi to my project but want to do some integration testing using the SelfHost feature. However, I've noticed System.Web.Http.SelfHost namespace doesn't exist anywhere. Is there something I'm overlooking?

Original source