Visual Studio 2005 and .Net framework 1.1

2020-03-06 01:39发布

Is it possible to create and maintain a .Net framework 1.1 application with Visual Studio 2005?

5条回答
我欲成王,谁敢阻挡
2楼-- · 2020-03-06 02:19

Actually, yes, you can, but it's not pretty and you still need .Net 1.1 on the machine. What you can't do is use Visual Studio to compile or build the site or open the solution file. You'll have to build it all from the command line. You'll get either spotty or incorrect intellisense support.

But you can use it like any other text editor to create the source files you need.

查看更多
女痞
3楼-- · 2020-03-06 02:19

MSBuild Toolkit for .NET 1.1 “MSBee” compile from vs2005 to net1.1 bot only in webform, dontwork in asp.net...

查看更多
该账号已被封号
4楼-- · 2020-03-06 02:30

No Visual Studio 2005 only works with the 2.0 .Net Framework. If you want to maintain a 1.1 application you'll need to either use Visual Studio .Net or Visual Studio 2003.

查看更多
神经病院院长
5楼-- · 2020-03-06 02:35

No visual studio 2005 only allows you to work with .net 2.0 and above.

查看更多
贪生不怕死
6楼-- · 2020-03-06 02:39

Actually there is a MSBuild extension that allow this scenario. It is called MSBee and you can find it on CodePlex.

MSBuild Extras – Toolkit for .NET 1.1 “MSBee” is an addition to MSBuild that allows developers to build managed applications using Visual Studio 2005 projects that target .NET 1.1.

查看更多
登录 后发表回答