Remove Framework 3.5 dependency

  • Thread starter Thread starter Freddy Coal
  • Start date Start date
F

Freddy Coal

Hi, I'm develop software in VS2008; I create the project using Frame2.0, the
same for the project installer, but when I try to install the program, the
installer ask me for frame 3.5, how I can remove that dependency?

I check the references, and I don't have any reference to frame3.5, and in
the installer I remove of prerequisites the frame3.5.

Thanks in advance for any help.

Freddy Coal.
 
Go to Properties of your project,
Go to the Compile Tab

Click on Advanced Compile Options ( in the bottome left of the tab )

What does "Target Framework Say"

It probably says .Net Framework 3.5

Set that to 2.0

Miro
 
Go to Properties of your project,
Go to the Compile Tab

Click on Advanced Compile Options ( in the bottome left of the tab )

What does "Target Framework Say"

It probably says .Net Framework 3.5

Set that to 2.0

I ran into this same problem myself. The target framework was 2.0. The
only way I got around it was to throw away the VS setup project and
make a setup project with WISE.
 
Miro, thanks for yor answer, I change that for Frame 2.0, but I have the
same problem with the installer, you have another idea?

Thanks in advance for you time.

Freddy Coal
 
Zacks, WISE is very expensive for me, you have another solution?.

Thanks in advance.

Freddy Coal

Go to Properties of your project,
Go to the Compile Tab

Click on Advanced Compile Options ( in the bottome left of the tab )

What does "Target Framework Say"

It probably says .Net Framework 3.5

Set that to 2.0

I ran into this same problem myself. The target framework was 2.0. The
only way I got around it was to throw away the VS setup project and
make a setup project with WISE.
 
How put the Frame2.0 requirement in Innosetup project?; I'm learning to use
that tool, and I download ISTool complement, but I don't understand how put
the requirements in the installation file.

Thanks in advance.

Freddy Coal
 
http://www.blackhillsoftware.com/blog/2006/06/26/using-innosetup-with-the-dotnet-framework/

http://www.codeproject.com/KB/install/dotnetfx_innosetup_instal.aspx

Google is your friend ":-)

http://www.google.nl/search?hl=nl&q=innosetup+.Net+framework&btnG=Zoeken&meta=

HTH

Michel


Freddy Coal said:
How put the Frame2.0 requirement in Innosetup project?; I'm learning to
use that tool, and I download ISTool complement, but I don't understand
how put the requirements in the installation file.

Thanks in advance.

Freddy Coal
 
I also had a similar problem.

What I noticed was that you can Right Click on the properties of the
Setup/Deployment project, go to "Prerequisities" and untick 3.5, and
select 2.0.

This still caused a problem when installing though, despite everything
being set as Framework 2.0.

There is one more setting...

In the setup/deployment project, expand the folder "Detected
Dependecies".
You'll see "Microsoft .NET Framework".
Double click this.
It should open a panel on the left with "Microsoft .NET Framework"
highlighted under "Launch Conditions".

Right click on this, go to Properties, and you'll see a .NET Framework
version option.
Set this back to .NET 2.0 and voila!
 
Back
Top