Reputation: 1215
I created a app with VS2012 with version 4.5.
I want to created a setup file, I use InstallSheild12 for this.
In application File step, i add all file of debug folder.
When i Build Installation, Get error
ISDEV : warning -6245: One or more of the project's components contain .NET properties that require the .NET Framework. It is recommended that the release include the .NET Framework.
Which step can i add required file?
Upvotes: 1
Views: 1811
Reputation: 15905
Assuming you mean InstallShield 12, not InstallShield 2012 (yeah it's a bit of a name clash), your best bet is to create or find a prerequisite that installs .NET Framework version 4.5. Unfortunately since it's not built-in, the build won't know that it's .NET, and the warning won't necessarily go away.
(Actually the same advice goes for InstallShield 2012, but that version might include such a prerequisite already; InstallShield 12 is definitely too old for that.)
Upvotes: 1