a list of the most common CLR's out there

  • Thread starter Thread starter Marcus
  • Start date Start date
M

Marcus

I need a list of the most common CLR's out on the market today.
I want to distribute my software which is compiled in VS2003 (c# code).

In my setup project I list all the runtimes that I know of which my
application will target.
Since my application is compiled with VS2003 it targets CLR 1.1.4322. I
also want it to target all versions (or a whole bunch anyway) that has
been released before and after 1.1.4322.

My application as of today targets the following CLRs:
1.0.3705; 1.1.4322; 2.0.50727

These 3 seems to be used widely (since I have not come across any
else).
I searched the Internet for a site that presents a more complete list
of common CLR's, but have not found such a list.

Can anyone help me out making my application work on more customers
PC's without hazzle, by naming som common CLR's?

thanks.
 
These are the three .NET (production-ready) versions Microsoft has released
so far. However, since you are saying your app was written using 1.1 and
want it to be compatible with 2.0, I would recommend you to test your app in
2.0-only PC. There are some breaking changes in 1.1 to 2.0. Refer to
http://www.gotdotnet.com/team/changeinfo/Backwards1.1to2.0/default.aspx for
more on this.

I need a list of the most common CLR's out on the market today.
I want to distribute my software which is compiled in VS2003 (c# code).

In my setup project I list all the runtimes that I know of which my
application will target.
Since my application is compiled with VS2003 it targets CLR 1.1.4322. I
also want it to target all versions (or a whole bunch anyway) that has
been released before and after 1.1.4322.

My application as of today targets the following CLRs:
1.0.3705; 1.1.4322; 2.0.50727

These 3 seems to be used widely (since I have not come across any
else).
I searched the Internet for a site that presents a more complete list
of common CLR's, but have not found such a list.

Can anyone help me out making my application work on more customers
PC's without hazzle, by naming som common CLR's?

thanks.
 
This list is correct (this is 1.0, 1.1 and 2.0). You may find other releases
but they are beta software that shoudln't be used anyway...
 
Back
Top