I guess what I'm getting at is, how can I make my project compatible
with older versions of the .NET framework? When I release this, I
want it to work in 2.0 as well as say, 1.1.....
On Aug 30, 2:35 pm, "Ignacio Machin \( .NET/ C# MVP \)" <machin TA
laceupsolutions.com> wrote:
> Hi,
>
[quoted text clipped - 3 lines]
> I do not undersatnd what you mean, your app require the framework, only
> that.
Ignacio Machin ( .NET/ C# MVP ) - 30 Aug 2007 20:28 GMT
Hi,
>I guess what I'm getting at is, how can I make my project compatible
> with older versions of the .NET framework? When I release this, I
> want it to work in 2.0 as well as say, 1.1.....
In general you need the same framework version. Now, I do not know if a 1.1
program works in 2.0. What I can tell you for sure is that a 2.0 program
does not work in a 1.1 framework !!!
Just include the correct framework with your setup project.
Smithers - 30 Aug 2007 20:49 GMT
While software can be backwards compatable, software generally cannot be
expected to be "forward compatable". This applies to the.NET Framework as
any other software. That is, you cannot expect the .NET Framework 1.1 to be
able to run apps created on a *later* version (e.g., 2.) of the framework...
just like you cannot reasonably expect Microsoft Access 2.0 to be able to
open .mdf files created with MS Access 97.
If you need for an app that you write to work on both 1.1 and 2.0, your only
real chance to make that happen is to create your app using 1.1 (and VS
2003)
-HTH
>I guess what I'm getting at is, how can I make my project compatible
> with older versions of the .NET framework? When I release this, I
[quoted text clipped - 9 lines]
>> I do not undersatnd what you mean, your app require the framework, only
>> that.