Did the framework2.0 execute the projet developed in VS2003?

chidambaram

Well-known member
Joined
Dec 27, 2007
Messages
62
Location
Chennai,India
Programming Experience
Beginner
i developed my vb.net project in VS2003, client machine has only the framework 2.0 not has framework 1.0.

i created the exe for my project, did my project run on client machine, or makes any problem?

thanks
subha
 
.Net has something called "Platform-backwards compatibility", which means an older assembly (version 1) can run on newer CLR (version 2). See for example CoDe Magazine - Article: What's New in .NET 2.0 for Assemblies and Versioning?

Differentiate this from setup projects, which may be configured to use a specific .Net version and install this as prerequisite during setup. If this happens and both .Net versions is finally installed the CLR will run the app in default version.
 
Back
Top