如果没有安装 .NET 2,是否可以编译 .NET 2 WinForms 应用程序以在 .NET 4 上运行?
最近,我收到一位客户投诉,说我编写的一个小型 .NET 2.0 应用程序无法在他的 Windows 7 计算机上运行。
经过调查,发现他的机器上没有c:\Windows\Microsoft.NET\Framework\v2.0.50727
文件夹,只有V4.0的文件夹。
我不知道这样的星座是可能的。
我的问题:
如果在客户端计算机上找不到 .NET 2 运行时,是否可以以某种方式指示我的应用程序使用 .NET 4 运行时?
Recently I got a customer complaint, that a small .NET 2.0 application I wrote did not run on his Windows 7 computer.
After investigating, I found out that there was no folder c:\Windows\Microsoft.NET\Framework\v2.0.50727
on his machine, just the folder for V4.0.
I was unaware that such a constellation is even possible.
My question:
Is it somehow possible to instruct my application to use the .NET 4 runtime, if no .NET 2 runtime is found on a client machine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找
app.config 中的 元素。例如,您可以编写一个 app.config 文件:
I think you're looking for the
<supportedRuntime>
element in app.config.So for example, you can write an app.config file of: