java - How to give the path for TARGETDIR and SourceDir in wix? -
i new wix installer setup creating. doing standalone java project. want know how give path directory id , name.when give path gives error.
directory id='targetdir' name='sourcedir'
error 3 directory/@id attribute's value, 'program files\ceb', not legal identifier. identifiers may contain ascii characters a-z, a-z, digits, underscores (_), or periods (.). every identifier must begin either letter or underscore. c:\users\user\desktop\setupproject1\setupproject1\product.wxs 32 1 setupproject1
does know how fix this?
the error have listed show have invalid id. looks id set 'program files\ceb'. in wix not valid slash not acceptable. error goes on explaining acceptable. is:
- ascii characters (a-z or a-z)
- digits (0-9)
- underscores (_)
- periods (.)
to fix problem may want change id have value 'program_files_ceb'. past error.
is there specific trying achieve having path in id tag? if not, suggestion should good. if trying direct file installed to, need using directory elements.
Comments
Post a Comment