开发者

.Net 'Any Framework' configuration

开发者 https://www.devze.com 2023-02-03 17:59 出处:网络
I built a prog开发者_高级运维ram in C# .NET 2.0 that works great also under framework 3.0 and 3.5.

I built a prog开发者_高级运维ram in C# .NET 2.0 that works great also under framework 3.0 and 3.5.

But if .NET Framework 4.0 is the only framework installed, it does not working, it requires the user to install 2.0.

i found the following configuration in google:

<startup>
    <requiredRuntime safemode="true" imageVersion="v4.0.30319" version="v4.0.30319"/>
</startup>

After adding this to the app.config, my program works on .NET Framework 4.0 without any problems!

What i searching for is a .NET 'Any Framework' configuration, that run my program under .NET 2.0 if installed, or else in .NET 4.0.

How to do this?


This doesn't work without configuration by design. .NET 4 uses a different runtime, and when you load a .NET 2 assembly, by default, it loads it in version 2 of the CLR. You can reconfigure it to prevent this behavior, and have it load in v4 of the CLR - but it's not always a good idea. It causes the code you write to be run on a framework different than the one on which it was designed and tested, which can potentially be problematic.

It's typically easier and better to just install the proper requirements on the system. Installing .NET 2 is very easy (and comes by default on Vista+). This has the advantage of running your program on the framework for which it was designed.


Found it!

Here is the configuration for all who need it:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <startup>
    <supportedRuntime version="v2.0.50727"/>
    <supportedRuntime version="v4.0.30319" sku=".NETFramework,Version=v4.0,Profile=Client" />
  </startup>
</configuration>


It is very hard to find a machine that only has 4.0 installed. .NET 2.0 compatible versions are pre-installed on Vista and Win7 machines, they'll run your program without a hitch. You'd have to have a virgin XP machine that never had .NET installed. Maybe a server core. In which case somebody made a bit of a blunder by installing the wrong version of .NET.

Not sure how that happened, smells like a communication problem. Maybe you shouldn't leave it up to somebody else to get this wrong. When the system requirements for your app include support for XP then you'd better make sure it is available. Pretty simple with a Setup project.

Your app.config is otherwise wrong, <requiredRuntime> has been obsolete since .NET 1.0. The proper incantation is <requestedRuntime> and ask for both 2.0.50727 and 4.0


the thing you need to change the minimum requirement for application.

go to project setting change the target framework to 2.0 and i thing it's play same even user have 2.0 or 4.0 Net framework in their system

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号