473,398 Members | 2,088 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,398 software developers and data experts.

.NET Framework 3.0?

I think I heard that .NET Framework 3.0 is out. How will that work.. having
both 2.0 and 3.0 on my PC? I.e. how will I know to which framework a given
namespace is corresponding? Or, is there some setting that states which
framework version my Visual Studio is using?

Thanks,
Ron
Nov 27 '06 #1
11 1242
I think I heard that .NET Framework 3.0 is out. How will that work..
having both 2.0 and 3.0 on my PC? I.e. how will I know to which
framework a given namespace is corresponding? Or, is there some
setting that states which framework version my Visual Studio is using?
..NET Framework 3.0 is simply a set of additional assemblies that are built
on top of .NET 2.0. It doesn't replace .NET 2.0, it builds on it. The same
2.0 CLR is in place and types from 2.0 still use the 2.0 assemblies.

Best Regards,
Dustin Campbell
Developer Express Inc.

Nov 27 '06 #2
IMHO, 3.0 should be called 2.5 and what is going to be called 3.5 should be
3.0. There is not a major change in 3.0 that requires the major version
number to be incremented. I think MS made this very cofusing.

"Dustin Campbell" wrote:
I think I heard that .NET Framework 3.0 is out. How will that work..
having both 2.0 and 3.0 on my PC? I.e. how will I know to which
framework a given namespace is corresponding? Or, is there some
setting that states which framework version my Visual Studio is using?

..NET Framework 3.0 is simply a set of additional assemblies that are built
on top of .NET 2.0. It doesn't replace .NET 2.0, it builds on it. The same
2.0 CLR is in place and types from 2.0 still use the 2.0 assemblies.

Best Regards,
Dustin Campbell
Developer Express Inc.

Nov 27 '06 #3
IMHO, 3.0 should be called 2.5 and what is going to be called 3.5
should be 3.0. There is not a major change in 3.0 that requires the
major version number to be incremented. I think MS made this very
cofusing.
Well, 3.5 is still built on CLR 2.0. So, wouldn't that still be confusing
if they called it 3.0?

Best Regards,
Dustin Campbell
Developer Express Inc.
Nov 27 '06 #4
I disagree. Apps targeting v3 will not run on v2 environments. Apps
targeting v3 will also utilize very significant new features in the
Framework that are not offered in v2. Whereas, LINQ in v3.5 is not
significant enough to warrant a major version change.

The fact that v3 is built on v2 is irrelevant to the numbering scheme; if
..NET did not isolate the assemblies so well and .NET Framework was one big,
ugly DLL, no one would be complaining.

Jon

"Bryan" <Br***@discussions.microsoft.comwrote in message
news:5E**********************************@microsof t.com...
IMHO, 3.0 should be called 2.5 and what is going to be called 3.5 should
be
3.0. There is not a major change in 3.0 that requires the major version
number to be incremented. I think MS made this very cofusing.

"Dustin Campbell" wrote:
I think I heard that .NET Framework 3.0 is out. How will that work..
having both 2.0 and 3.0 on my PC? I.e. how will I know to which
framework a given namespace is corresponding? Or, is there some
setting that states which framework version my Visual Studio is using?

..NET Framework 3.0 is simply a set of additional assemblies that are
built
on top of .NET 2.0. It doesn't replace .NET 2.0, it builds on it. The
same
2.0 CLR is in place and types from 2.0 still use the 2.0 assemblies.

Best Regards,
Dustin Campbell
Developer Express Inc.


Nov 27 '06 #5
I disagree. Apps targeting v3 will not run on v2 environments. Apps
targeting v3 will also utilize very significant new features in the
Framework that are not offered in v2. Whereas, LINQ in v3.5 is not
significant enough to warrant a major version change.

The fact that v3 is built on v2 is irrelevant to the numbering scheme;
if .NET did not isolate the assemblies so well and .NET Framework was
one big, ugly DLL, no one would be complaining.
Great points.

Part of the problem is that, up until C# 2.0, Microsoft stayed in sync for
the most part with C#, the .NET runtime and the Base Class Library. That's
what most people find confusing. However, it's important to note that not
everything has been in sync. For example, VB is currently at 8.0.

With the release of .NET 3.5 (if that's what its called at RTM) will have
the following major/minor versions:

CLR - 2.0
BCL - 2.0
C# - 3.0
Additional assemblies that target WinFX and LINQ - 3.5
VB - 9.0

Everyone needs to keep in mind that the CLR, BCL and C# are really "in sync"
with the ECMA standards -- not the Microsoft .NET releases. .NET Framework
3.0 and 3.5 don't actually require any changes to the CLR or the BCL. C#
3.0 is a language update that takes advantage of the .NET Framework 3.5 libraries
and adds some other cool features. However, it is not technically needed
to use the libraries -- C# 2.0 would suffice.

Best Regards,
Dustin Campbell
Developer Express Inc.
Nov 27 '06 #6

"Dustin Campbell" <du*****@no-spam-pleasedevexpress.comwrote in message
news:c1**************************@news.microsoft.c om...

Not to distract from your points in a severe and perhaps annoying tangent,
but ...
For example, VB is currently at 8.0.
Except that VB.NET v2002 was really v1, no matter how many version numbers
Microsoft skipped. VB died at v6; VB.NET and VB 2005 are two generations of
a different language. The side-effect of the confusion is Java-turned-C#
bigots still think people who know VB.NET are losers.
Everyone needs to keep in mind that the CLR, BCL and C# are really "in
sync" with the ECMA standards -- not the Microsoft .NET releases. .NET
Framework 3.0 and 3.5 don't actually require any changes to the CLR or the
BCL. C# 3.0 is a language update that takes advantage of the .NET
Framework 3.5 libraries and adds some other cool features. However, it is
not technically needed to use the libraries -- C# 2.0 would suffice.
Interesting point, but even more interesting is what the situation infers,
that this won't change down the road much, if ever; C# 2.0 was actually done
right all along so no real need for a revision. The new 3.5 features don't
deprecate 2.0 but enhance 2.0.

On the other hand, I'm sure Microsoft will look for ways to optimize the
performance of the CLR on Windows Vista and XNA, where native API tie-ins
will also be optimized. These will entail a version revision at some point,
but I must admit I'm impressed that Microsoft got by this far without yet
another system rewrite.

Jon

Nov 28 '06 #7
I'm glad I could turn the conversation into something totally not what the
original question was. This was very interesting.
Nov 28 '06 #8
On the other hand, I'm sure Microsoft will look for ways to optimize
the performance of the CLR on Windows Vista and XNA, where native API
tie-ins will also be optimized. These will entail a version revision
at some point, but I must admit I'm impressed that Microsoft got by
this far without yet another system rewrite.
I expect this to happen as well but it will likely be in the form of a service
pack since no new metadata or IL instructions would be necessary.

Best Regards,
Dustin Campbell
Developer Express Inc.
Nov 28 '06 #9
Ronald,

I do understand how you feel, confuse basically. I think many people out
there still unsure like "hey, how WCF work in VS 2005, how WPF work in VS
2005" and so. I expect to see new samples from Microsoft site on how to make
use of .Net framework 3.0 in VS 2005. Let's see.

chanmm

"Ronald S. Cook" <rc***@westinis.comwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
>I think I heard that .NET Framework 3.0 is out. How will that work..
having both 2.0 and 3.0 on my PC? I.e. how will I know to which framework
a given namespace is corresponding? Or, is there some setting that states
which framework version my Visual Studio is using?

Thanks,
Ron
Nov 28 '06 #10
Yeah, but how do I tell my Visual Studio 2005 project which version of the
framework I want to use. For example, I currently have the 1.1 and 2.0
framework in my PC. When I create a new VS project and then look at my
references (e.g. System.Data), it says 2.0. How would I force my project to
use the 1.1 framework only (if I needed to)?

Thanks,
Ron

"Dustin Campbell" <du*****@no-spam-pleasedevexpress.comwrote in message
news:c1**************************@news.microsoft.c om...
>I think I heard that .NET Framework 3.0 is out. How will that work..
having both 2.0 and 3.0 on my PC? I.e. how will I know to which
framework a given namespace is corresponding? Or, is there some
setting that states which framework version my Visual Studio is using?

.NET Framework 3.0 is simply a set of additional assemblies that are built
on top of .NET 2.0. It doesn't replace .NET 2.0, it builds on it. The same
2.0 CLR is in place and types from 2.0 still use the 2.0 assemblies.

Best Regards,
Dustin Campbell
Developer Express Inc.

Nov 30 '06 #11
How would I force my project to
use the 1.1 framework only (if I needed to)?
MSBee, but the easier answer is "use VS2003"...

More on topic... does anybody know if/how the new components deploy?
I'm *guessing* (untested) that simply shipping the 3.0 dll via
ClickOnce won't do the job... in which case the 3.0 distinction is
quite a useful reminder that it won't work without a client install. Of
course, not everything does deploy this easily... and there are other
major issues in picking the version... I might have gone with 2.<x>
myself, but I don't work at MS and know nothing of the internal
discussions on the numbering. I just hope (possibly futile) that it was
led by the technical teams, and not the marketing teams...

Marc

Nov 30 '06 #12

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

Similar topics

0
by: Ravindra | last post by:
Well I installed the framework provided by microsoft , the problem is I am able to activate the smart tag in the doc file but when I Click on the Show Detils option in the information bridge the...
3
by: CMan | last post by:
Hi, We are currently trying to install .Net Framework v.1.1 on a server which already has v1.0. We are receiving the following error. Error 1704.An installation for Microsoft .NET Framework...
18
by: Cameron Laird | last post by:
QOTW: "... So I started profiling the code and the slowdown was actually taking place at places where I didn't expect it." -- Guyon Mor?e (and about twenty-three thousand others) " suggestion...
6
by: Joseph Geretz | last post by:
I recently upgraded my server to Windows 2003. The first thing I noticed is that my sample WebService pages no longer worked. The Invoke test button is missing. This is addresed by the following KB...
9
by: Tim D | last post by:
Hi, I originally posted this as a reply to a rather old thread in dotnet.framework.general and didn't get any response. I thought it might be more relevant here; anyone got any ideas? My...
1
by: Harry Simpson | last post by:
I know I drilled down into the Windows folder\Microsoft.net\Framework\v1.1.4322 folder and looked at the version of Mscorcfg.dll to get the SP level from the version number: Mine shows...
3
by: Shadow Lynx | last post by:
At the bottom of the default Error page that appears when Unhandled Exceptions occur, what exactly is the difference between the "Microsoft ..Net Framework Version" and the "ASP.NET Version"? I...
3
dmjpro
by: dmjpro | last post by:
plz send me a good link which can clearify me how the J2EE framework works i want the details information .... plz help thanx
13
by: dancer | last post by:
I have made a new post because when I try to respond to another, I get the error, "Article Rejected -- Ill-formed message id" This is in response to the advice of Juan Libre to install Net...
8
by: Blasting Cap | last post by:
I'm using VS 2005, and have a dll in some code (system.core.dll) that was included in something someone sent me to run on my system. I have production on a server using Framework 2.0 that I want...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.