Forcing use of a particular version of the runtime?

  • Thread starter Thread starter Keith
  • Start date Start date
K

Keith

Hello,

I recall that this is possible but I can't find any docs on it.
Specifically, I want to force an assembly to use a particular version ofthe
..NET runtime. I believe this is possible by using properties in the
AssemblyInfo.cs file but the documentation on this is a bit lacking IMO.

Could someone point me in the right direction or provide an example?

Thanks!

Keith
 
Keith said:
Hello,

I recall that this is possible but I can't find any docs on it.
Specifically, I want to force an assembly to use a particular version ofthe
.NET runtime. I believe this is possible by using properties in the
AssemblyInfo.cs file but the documentation on this is a bit lacking IMO.

Could someone point me in the right direction or provide an example?

You can specify the supported runtime for an application in its config
file. See http://msdn2.microsoft.com/en-us/library/9w519wzk.aspx for
documentation on how to do that.
 
Back
Top