Can a VB.NET 2003 project work with framework 1.0?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all

I've a project that has been developed with VS .NEt 2003 (which works with framework 1.1). Is there a way to Build this project in order to make it work with framework 1.0

Additionally, is there a way to make a .NET 2002 project work with framework 1.1

Thanks in advance

God Bless
 
* "=?Utf-8?B?bXZhcmdhcw==?= said:
I've a project that has been developed with VS .NEt 2003 (which works
with framework 1.1). Is there a way to Build this project in order to
make it work with framework 1.0?

You can do that with a config file. Notice that VS.NET 2003 will still
compile a .NET 1.1 assembly.
Additionally, is there a way to make a .NET 2002 project work with framework 1.1?

I assume that .NET 1.0 projects will run on .NET 1.1 automatically, but
I never tested that. VS.NET 2002 can only create .NET 1.0 assemblies.
Both versions of the .NET Framework can be installed on the same machine:

"Side-by-Side Execution"
<URL:http://msdn.microsoft.com/library/en-us/dnnetdep/html/sidexsidenet.asp>

Version comparison
<URL:http://msdn.microsoft.com/netframework/productinfo/versioncomparison/>

General changes
<URL:http://www.gotdotnet.com/team/changeinfo/>

Class changes
<URL:http://www.gotdotnet.com/team/upgrade/apiChanges.aspx>
 
Hi,

In the project properties under common properties in build. You
will find supported runtimes click on the change button to change to
framework 1.0

Ken
 
Back
Top