Reputation: 23
I have a problem. The thing is that I am using Visual Studio 2005 and .Net Framework 3.5 sp1. I have created the app and I want to have the .Net Framework prerequisite installed before however I can only select 2.0 . This wont go well since some columns in some of my grids will be arranged differently along with other problems. Is there any add-ins or something I can use to included .Net Framework 3.5 sp1 in my prerequisite list?
Upvotes: 0
Views: 822
Reputation: 1038710
By specifying a launch condition in your setup project:
(source: ultidev.com)
Upvotes: 0
Reputation: 16603
with Visual Studio 2005 you can only create 2.0 projects. Only since VS2008 you could choose a different framework (2.0, 3.0, 3.5 in that case). Since VS2010 you can choose to target 2.0, 3.0, 3.5 & 4.0.
Grz, Kris.
Upvotes: 1