Visual Studio 2010 + .Net Framework 1.1 + Click Deploy

First of all, Winform is based on the .Net Framework 1.1. I have installed 1.1 SDK, but 1.1 is not specified in the Target Framework (VS 2010 Beta 2), so I can not choose the same, the minimum available is 2.0. I have to install add-on or something to create 1.1 applications in VS 2010 beta2. In addition, I use the Clickonce deployment publishing method. I'm not sure if 1.1 supports ClickOnce deployment. Please inform both of these fronts. Many thanks

+4
source share
5 answers

.NET 1.x is not supported by VS2010 (or any future versions). For this you will have to use VS2002 or VS2003.

ClickOnce is only supported for .NET 2.0 or later.

+7
source

.Net 1.1 is not supported on VS 2010. I did not even claim that it was supported on VS 2005 or 2008. I always had VS 2003 installed in VM for maintenance 1.1.

+2
source

Here you can find a way to create your project in .net 1.1 with VS 2008. And I think this is the latest version of VS you can use to create your projects in .net 1.1

+2
source

If you have an application that uses, for example, an application pool using .Net 1.1, compiling for .Net 2.0 is simply not an option.

+1
source

You should simply create your code with .NET 2.0, assuming there is a reason why you cannot create it with .NET 3.5.

0
source

All Articles