0

how can I define File/@Source relative to the "wix-library" Project, where I am currently in?

If I use:

<File Id="f1" Source=".\bla"/>

then "." refers to the root of the calling "Windows Installer Package" Project, and for this reason can not be used!

Erik
  • 503
  • 1
  • 7
  • 26
jeromerg
  • 2,997
  • 2
  • 26
  • 36

1 Answers1

8

The variable $(sys.CURRENTDIR) locates to the current directory..:)

<File Id="f1" Source="$(sys.CURRENTDIR)\bla"/>

Natalie Carr
  • 3,707
  • 3
  • 34
  • 68