Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where did System.Design go?

Tags:

c#

.net

scintilla

I am making a C# project in which I am using ScintillaNet, and it says:

The referenced assembly "ScintillaNet" could not be resolved because it has a dependency on "System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which 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.

I tried adding a reference to System.Design, but it doesn't exist in my list. Do I need to download it somewhere? I have Microsoft Visual Studio 10.

like image 401
Nilbert Avatar asked Jun 12 '10 23:06

Nilbert


People also ask

Does Amazon ASK system design?

System Design is a key aspect at Amazon Amazonian build reliable, scalable, and cost-optimal performance systems. System design is mandatory to prepare for interviews for all experienced candidates, with 2+ years of experience.

Is system design necessary?

System design has become essential to the software development process. That's why it's good to take a step back and analyze the big-picture impact of good design on the long-term efficiency, longevity, and success of software and information systems.

Do product managers need to know system design?

Technical product managers (TPMs) at big tech companies (FAANG) and startups are required to have a fundamental knowledge of System Design. Historically, System Design fundamentals were usually a requirement for software engineers during interviews, and TPMs were exempt from that expectation.

What is the main purpose of system design?

The goal of system design is to allocate the requirements of a large system to hardware and software components. The system design activity starts after the system requirements analysis has been completed.


1 Answers

Go to the project's properties and select the target framework to be .NET 4.0, not Client Profile

like image 60
statenjason Avatar answered Oct 12 '22 20:10

statenjason