c# – .net 4.0版本中找不到System.Web程序集

前端之家收集整理的这篇文章主要介绍了c# – .net 4.0版本中找不到System.Web程序集前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我将.NET从3.5版本升级到4.0版本,但是在更新程序集System.Web不再工作之后.

我收到以下错误

Warning 1 Could not resolve assembly “System.Web”. The assembly is not in the currently targeted framework “.NETFramework,Version=v4.0,Profile=Client”. Please remove references to assemblies not in the targeted framework or consider retargeting your project.

使用3.5版本它可以正常工作.如何解决这个问题?

解决方法

将项目从ClientProfile更改为完整的.NET 4.0

The .NET Framework 4 Client Profile is a subset of the .NET Framework
4 that is optimized for client applications. It provides functionality
for most client applications,including Windows Presentation
Foundation (WPF),Windows Forms,Windows Communication Foundation
(WCF),and ClickOnce features. This enables faster deployment and a
smaller install package for applications that target the .NET
Framework 4 Client Profile.

Differences between Microsoft .NET 4.0 full Framework and Client Profile

原文链接:https://www.f2er.com/csharp/94302.html

猜你在找的C#相关文章