Reputation: 125
I have a .NET 3.5 program written in Nemerle. As a project dependency I have a .NET 2.0 library. Can I be sure that when the end-user installs .NET 3.5 my program will work, or will I need to force him to install .NET 2.0 too?
Thanks.
Upvotes: 5
Views: 2457
Reputation: 101604
If you check out the .NET Dependency Chart you'll see that each one is layered on top the other. So, to answer your question, yes. Installing 3.5 will be enough.
Upvotes: 8