473,379 Members | 1,520 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

Older versions of .NET

Hello,

I have some systems that have older versions of .NET framework
installed. The company I am contracting with refuses to update the
framework installed on their machines. Is there any way to switch the
version of .NET you can "compile" in? I have Visual Studio 2005.

The versions they have installed:

2.0.50727.42
1.1.4322.2032
v1.0.3705

Thanks!

Johnathan

Mar 31 '07 #1
8 1626
You can install on the machines running 2.0. You said they have 2.0
installed already. If they don't have 2.0 installed on some machines
then you need to use VS 2003 to code and compile.

However why they refuse to install something which is free and useful
is what I don't understand.

Regards,
Sachin Palewar
(Certified Scrum Master)

Palewar Techno Solutions
(Mobile Solutions for Your Business)
www.palewar.com

On Mar 31, 6:37 am, iamlepp...@gmail.com wrote:
Hello,

I have some systems that have older versions of .NET framework
installed. The company I am contracting with refuses to update the
framework installed on their machines. Is there any way to switch the
version of .NET you can "compile" in? I have Visual Studio 2005.

The versions they have installed:

2.0.50727.42
1.1.4322.2032
v1.0.3705

Thanks!

Johnathan

Mar 31 '07 #2
However why they refuse to install something which is free and useful
is what I don't understand.
Because client installations can be very time consuming, cause yet one more
application that may need updates/support and could cause unanticipated
conflicts with other software on the system.

Just because something is free and useful doesn't mean it's a no brainer
when it comes to installing across the enterprise.


Mar 31 '07 #3
They have already had all .NET version installed: .NET1.0, 1.1 and 2.0
(except for .NET3.0, which is add-on the .NET2.0 and you really cannot do
much with it using VS2005 yet).
So, what is the problem, if you use VS2005, which requires .NET2.0?

<ia********@gmail.comwrote in message
news:11*********************@d57g2000hsg.googlegro ups.com...
Hello,

I have some systems that have older versions of .NET framework
installed. The company I am contracting with refuses to update the
framework installed on their machines. Is there any way to switch the
version of .NET you can "compile" in? I have Visual Studio 2005.

The versions they have installed:

2.0.50727.42
1.1.4322.2032
v1.0.3705

Thanks!

Johnathan

Mar 31 '07 #4
On 30 Mar 2007 18:37:41 -0700, ia********@gmail.com wrote:
Hello,

I have some systems that have older versions of .NET framework
installed. The company I am contracting with refuses to update the
framework installed on their machines. Is there any way to switch the
version of .NET you can "compile" in? I have Visual Studio 2005.

The versions they have installed:

2.0.50727.42
1.1.4322.2032
v1.0.3705

Thanks!

Johnathan
There was a Visual Studio Addin called MSBee to allow you to compile
applications targetting the older .NET framework
--
Bits.Bytes
http://bytes.thinkersroom.com
Mar 31 '07 #5
Otherwise, you could use the command line compiler which is coming with each
version of .NET. Though, you have to make sure that when you code in VS.NET
2005 that all your references to System are suppported by the version you
want to compile to.

The compilers are availaible in the folder :
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 (which here the version number
depends on the one you want to compile to)

For VB.NET it is vbc.exe and for C# it's csc.exe.

Have good luck,
Jonathan Boivin
---
jo************@cints.net | http://www.cints.net
<ia********@gmail.coma écrit dans le message de news:
11*********************@d57g2000hsg.googlegroups.c om...
Hello,

I have some systems that have older versions of .NET framework
installed. The company I am contracting with refuses to update the
framework installed on their machines. Is there any way to switch the
version of .NET you can "compile" in? I have Visual Studio 2005.

The versions they have installed:

2.0.50727.42
1.1.4322.2032
v1.0.3705

Thanks!

Johnathan

Mar 31 '07 #6
On Mar 31, 1:30 am, "Sachin Palewar" <pale...@gmail.comwrote:
You can install on the machines running 2.0. You said they have 2.0
installed already. If they don't have 2.0 installed on some machines
then you need to use VS 2003 to code and compile.

However why they refuse to install something which is free and useful
is what I don't understand.

Regards,
Sachin Palewar
(Certified Scrum Master)

Palewar Techno Solutions
(Mobile Solutions for Your Business)www.palewar.com

On Mar 31, 6:37 am, iamlepp...@gmail.com wrote:
Hello,
I have some systems that have older versions of .NET framework
installed. The company I am contracting with refuses to update the
framework installed on their machines. Is there any way to switch the
version of .NET you can "compile" in? I have Visual Studio 2005.
The versions they have installed:
2.0.50727.42
1.1.4322.2032
v1.0.3705
Thanks!
Johnathan- Hide quoted text -

- Show quoted text -
Hmm, I am getting an error message when trying to run a test app
stating I must have some .NET framework installed. I'll have to get
the exact error message and research further. They are refusing to
install because basically they have a very backwards IT department.
Changes to user machines involves an IT person manually going from
station to station. Needless to say, a very time consuming and labor
intensive process. I offered to automate the installation but they
just don't see a need to accomodate me (since I am working for them).

Thanks for the help all.

Apr 1 '07 #7
I have a followup question on this.

Context:
I'm a SQL Server contract developer who is trying to learn C# and .Net while
I am between projects. I have two machines I can configure for training.
Since I don't know who I'm going to contract for next, I want to learn both
..Net 1.1 and 2.0. I currently have Visual Studio 2003 but can get a copy of
2005.

How many of the following statements (if any) are true?

1. Any machine can execute programs built under either .Net 1.1 or 2.0 as
long as the appropriate frameworks are installed.

2. Visual Studio 2003 will only recognize .Net 1.1.

3. With Visual Studio 2005 you can code against either 1.1 or 2.0 but you
will have to use the command line compiler to get the right version.

4. If you have both 1.1 and 2.0 SDKs installed, Visual Studio 2005 will only
show Intellisense prompting for 2.0.

If all of the above are true, I can configure one machine with VS 2003 and
1.1, and the other machine with VS 2005, 1.1 and 2.0. Then everything I
develop will execute on the second machine, and I can still get
version-correct Intellisense prompting by using the different development
environments.

"Jonathan Boivin" wrote:
Otherwise, you could use the command line compiler which is coming with each
version of .NET. Though, you have to make sure that when you code in VS.NET
2005 that all your references to System are suppported by the version you
want to compile to.

The compilers are availaible in the folder :
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 (which here the version number
depends on the one you want to compile to)

For VB.NET it is vbc.exe and for C# it's csc.exe.

Have good luck,
Jonathan Boivin
Apr 1 '07 #8
1. Any machine can execute programs built under either .Net 1.1 or 2.0 as
long as the appropriate frameworks are installed.
Any Windows machine.
>
2. Visual Studio 2003 will only recognize .Net 1.1.
Well, sort of. You can build 1.0 applications with VS .NET 2003, but 1.1 is
the standard.

3. With Visual Studio 2005 you can code against either 1.1 or 2.0 but you
will have to use the command line compiler to get the right version.
I don't think so, I think you can compile for the version you want via a
project setting (just as you can choose 1.0 or 1.1 in VS.NET 2003).
>
4. If you have both 1.1 and 2.0 SDKs installed, Visual Studio 2005 will
only
show Intellisense prompting for 2.0.
SDK has nothing to do with it. VS.NET only shows what the 2.0 Framework
has.
>
If all of the above are true, I can configure one machine with VS 2003 and
1.1, and the other machine with VS 2005, 1.1 and 2.0. Then everything I
develop will execute on the second machine, and I can still get
version-correct Intellisense prompting by using the different development
environments.
You can install everything on one machine without problems. The different
frameworks sit side-by-side as do the different VS.NET versions.
>
"Jonathan Boivin" wrote:
>Otherwise, you could use the command line compiler which is coming with
each
version of .NET. Though, you have to make sure that when you code in
VS.NET
2005 that all your references to System are suppported by the version you
want to compile to.

The compilers are availaible in the folder :
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 (which here the version
number
depends on the one you want to compile to)

For VB.NET it is vbc.exe and for C# it's csc.exe.

Have good luck,
Jonathan Boivin

Apr 1 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: juppie | last post by:
Hello, I'm writing visual XML editor. At the moment I need a DTD parser which will parse DTD (either standalone or internal to XML doc) and give me an access to underlying DTD in convenient...
1
by: Erik Cruz | last post by:
Hi. I know that different .net framework versions can live together, but can I install the newer .net framework 1.1 and after that install the older .net framework 1.0 version? Or do I need to...
0
by: MDGColorado | last post by:
What is the strategy for working on an older version of a solution? We labeled all the solution files in VSS a couple weeks ago. The Get on all the files with the label seems to get all the right...
6
by: Conrad | last post by:
Greetings, In short: Using a new FreeBSD (4.9) PostgreSQL (7.3) server, can I rescue PostgreSQL data from a hard drive pulled from an older (motherboard just died) FreeBSD (4.??) PostgreSQL...
4
by: mike.griffin | last post by:
My name is Mike Griffin and we are adding PostgreSQL support to our product, MyGeneration. MyGeneration pulls meta-data from DBMS systems to generate business objects and stored procedures and...
1
by: thubba2000 | last post by:
We have a web application developed using IBuySpy. In older versions, Autocomplete on all web forms works. In our latest version, it stopped working on all clients. I have gone through all the...
2
by: Jake Barnes | last post by:
At a certain point in my code, I need to blank the value in a file input. The situation comes up when a user first thinks they want to upload something from their harddrive, but then they change...
17
by: Neil | last post by:
A client of mine likes some of the new bells and whistles in Access 2007, and is thinking about converting our A03 format MDB to an A07 format file. However, while some of the users have A07, many...
2
by: Sadeq | last post by:
I'm using Vista, which by default ships with .NET Runtime 3.0. I have also installed VS 2005, which has both runtime and SDK for .NET 2.0. Every now and then, I bump into applications which...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.