user369484
user369484

Reputation: 23

Including .Net Framework 3.5 SP1 in prerequisites for VS 2005 Setup Project

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

Answers (2)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038710

By specifying a launch condition in your setup project:

alt text
(source: ultidev.com)

Upvotes: 0

Kris van der Mast
Kris van der Mast

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

Related Questions