本文介绍了从.Net 2.0迁移到.Net 3.0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我正在使用Visual Studio 2005,并且有两个.Net构建的代码
Framework 2.0和.Net Compact Framework 2.0(两个独立的版本) 。


我想在.Net Framework 3.0和.Net

Compact Framework 3.0中构建和测试代码。我找不到任何关于如何在Visual Studio 2005中设置

环境以使用.Net Framework 3.0和.Net

Compact Framework 3.0进行构建和设置两者的指南.Net Framework 3.0和

..Net Compact Framework 3.0环境测试代码(新版本)。


也许是因为.Net 3.0也是新?任何推荐的教程?

提前感谢,

乔治

Hello everyone,
I am using Visual Studio 2005 and have some code built by both .Net
Framework 2.0 and .Net Compact Framework 2.0 (two separate builds).

I want to build and test the code in both .Net Framework 3.0 and .Net
Compact Framework 3.0. I can not find any guide about how to setup
environment in Visual Studio 2005 to utilize .Net Framework 3.0 and .Net
Compact Framework 3.0 to make builds, and setup both .Net Framework 3.0 and
..Net Compact Framework 3.0 environment to test the code (new build).

Maybe it is because .Net 3.0 is too new? Any tutorials to recommend?
thanks in advance,
George

推荐答案



为什么你想首先这样做?

Why you want to do that in the first place?




你真的无所事事。 V3.0实际上是V2.0,添加了一些新的

的东西,旧的V2.0位没有改变。由于您的应用程序没有使用任何新的V3.0位(WCF,WWF等),所以如果您构建

,您的代码将不会改变在V3.0环境中。

You don''t really have anything to do. V3.0 is actually V2.0 with some new
stuff added, the old V2.0 bits didn''t change. Since your app isn''t using
any of the new V3.0 bits (WCF, WWF etc), your code won''t change if you build
it in a V3.0 environment.




我个人避风港'我看了很多.NET 3.0的东西,但我会假设

第一步是安装.NET 3.0 Framework SDK并且通过那个

令牌,各种元素将会在Visual Studio 2005中可用。

I personally haven''t looked at much .NET 3.0 stuff, but I would assume
the first step is to install the .NET 3.0 Framework SDK and by that
token the various elements will be available in Visual Studio 2005.



向您介绍新增内容和更改......

introduces you to the new additions and changes...


这篇关于从.Net 2.0迁移到.Net 3.0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 14:32