Question : vs2005 generate net 1.1

I have developed C# application using VS2005 and Net 2.0 framework.
I now find that my system needs to be deployed on a Windows XP embedded system with flash ROM that has Net 1.1 installed. Net2.0 is not an option.

Is it possible to recompile for Net 1.1?

I am using some fetaures of C#2.0 like partial clases and generics will this be an issue?

Is there a list of the features that I will have to workaround to be 1.1 compatible.

Thanks

Answer : vs2005 generate net 1.1

2.0 is not backwards compatible.

 am not aware of any such tool and even if there was I do not suspect it would be 100% foolproof and you would want to retest everything anyway.

I am assuming you are talking about the source code and since they are syntactically similar, the only real difference between 2.0 and 1.1 and 1.1 would be language features like generics and new framework clases that do not exist in 1.1 or 1.0 or member calls that also do not exist. There are other differences as well but these would form the bulk.

If you are using features in 2.0 that do not exist in 1.1/1.0 there would be no easy way, if at all, for a conversion utility to handle this, so you would need to manually recode in 1.1 to handle these missing features.

It may help to refine the answer if we knew exactly why you need to do this and why you could not just put 2.0 on the machine that has 1.1/1.0 assuming it can support it.
Random Solutions  
 
programming4us programming4us