The default .NET execution version.

I have several versions of .NET in C: \ WINDOWS \ Microsoft.NET \ Framework \

Which system variable controls what runs by default?

+6
source share
4 answers

There is no "System" variable for this.

Your application (.Net assembly) is compiled for a specific structure and this structure is then used to execute it.

+2
source share

These are separate applications that determine which version of the .NET platform it will run on.

If you are talking about ASP.NET applications, the version on which it will run is installed in IIS.

+3
source share

The application itself has a manifest that tells your system which version of the framework it targets.

0
source share

Your application will determine which ones

0
source share

All Articles