I don't know of any reason why this wouldn't be possible, but I'd like to make sure there aren't any potential pitfalls or gotchas here.

Can a .NET 4 application depend on a class library that's targeted at .NET 4 Client Profile? Are there any potential problems that could arise?

link|improve this question

1  
Useful reading (with more MSDN links): Difference between .NET 4 Client Profile and Full Framework download – BoltClock Jan 4 at 23:39
@slugster: Those comments on your answer... o_O – BoltClock Jan 5 at 0:09
@Bolt - yeah, I snorted my coffee when I first saw them :) – slugster Jan 5 at 1:42
feedback

3 Answers

up vote 7 down vote accepted

The client profile is a subset of the full .NET Framework. Thus everything in the client profile is included in the full framework, so whether it's a client or web application you're building, you shouldn't run into any problems.

link|improve this answer
If you or your users do run into any problems, I wouldn't rule out a bad .NET Framework installation. – BoltClock Jan 4 at 23:35
feedback

I've never had any issues targeting a .NET 4.0 Client Profile library from a .NET 4.0 web app.

link|improve this answer
feedback

the client profile doesn't include "server" type libraries. most notable is the asp.net framework. so a dll targeting the client profile can run on full .net 4.0 but a dll targeting .net 4.0 cannot run on a computer only containing the client profile.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.