tags:

views:

26

answers:

1

My desktop application requires .net 4.0 full package. Why full package? I am using next api that belongs to full package.

  • System.ComponentModel.Design.CollectionEditor
  • HttpUtility.HtmlEncode
  • HttpUtility.UrlEncode
  • HttpUtility.UrlDecode

Then even I have set in setup project requirements only for .net 4.0 full package, during install this setup shows dialog that requires .net 4.0 client package installation, and then full package.

It looks like end user will be forced to install both packages? Am I missing something?

A: 

There are 2 places where target framework should be set

  • Detected Dependencies -> Microsoft .Net Framework -> Property
  • Setup Project Properties -> Prerequisites...
volody