Testing with older .Net versions

I have .Net 3.5 on my dev machine, but I'm forced to deploy to a .NET 2.0 machine. Without wiping out the current installation, is there a way to "omit" my .Net version so that it behaves like .Net 2.0? Thanks to

+2


source to share


2 answers


In the properties of your solution in Visual Studio, you can change the Target Framework to ".NET Framework 2.0". Check out this MSDN article for more information.



+6


source


If you are just testing, my solution would be to create a virtual PC with only .NET 2.0.



Then expand it to a test box and make sure everything works.

+5


source







All Articles