Configure runtime version not using app.exe.config?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

It may sound a little stupid, but I'd really like to know if there is any
other ways to configure an application to run in a specified .NET runtime
version (1.0, 1.1 or 2.0).

Thanks.
 
You mean other than the <supportedRuntime> element in your .config file?

<configuration>
<startup>
<supportedRuntime version="v2.0.41202"/>
</startup>
</configuration>

-Brock
DevelopMentor
http://staff.develop.com/ballen
 
Yes. I want to know if it is possible to create a app domain and specify its
runtime version.

BTW, I got this question when I play with Cassini sample Web server.

I want to modify the code to let me to select a runtime version to host
ASP.NET. The current Cassini code only creates a host running on the runtime
that the controller EXE app runs on.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top