Manolo
Manolo

Reputation: 1676

.Net 4.5 dll references in 3.5 project

I am reworking a set of dll-library projects that is used by many older projects. The older projects are all built with target Framework 3.5.

Does this mean I can't build the dll-library for .Net 4.5 at all? Or does it just mean that I can't use language features > 3.5?

Upvotes: 1

Views: 1810

Answers (1)

Jeff B
Jeff B

Reputation: 8982

No, unfortunately you can't.

NET 4.5 uses a different compiler than .NET 3.5.

Upvotes: 2

Related Questions