what is the C# compiler option for specifying the version of .net framework

Viewed 1131

I have look completely in this two msdn article C# Compiler Options Listed Alphabetically and C# Compiler Options Listed by Category for compiler option for specifying the target framework version which can be used in command line building. I got to know that we can specify the framework version in app.config with supportedRuntime element.

Can we use this element(configuration>startup>supportedRuntime) in web.config also(in case of asp.net application) ?

I have not needed to do it with only command line switch. I just asking this question only because of curious to know about it.

1 Answers
Related