Sandip
Sandip

Reputation: 112

IExpress command line without using .SED file

Can I create installation (msi) package using IExpress in post build event but without using .SED file?

And if SED file is required then how to change TargetName and SourceFile path from command line?

I have created package but due to paths in SED file, it is not working for Automation build.

Upvotes: 1

Views: 620

Answers (1)

fission
fission

Reputation: 1230

IExpress doesn’t generate MSI files, it generates executables and CAB files only.

SED files are required. There’s no easy way to “override” the TargetName or SourceFiles. You’d have to write some kind of program to edit the SED file on-the-fly.

Upvotes: 1

Related Questions