Cannot find System.Web.Hosting in Visual Studio 2012

For your information, I am targeting the .NET Framework 4.5, so there should be no problems with the client profile. But I still can not find it in the link.

+6
source share
1 answer

In the links to your project add a link to System.Web

Add references

then in your program use:

using System.Web.Hosting; 
+18
source

Source: https://habr.com/ru/post/952948/


All Articles