Tried following this guide: http://www.advancedinstaller.com/user-g ... -file.html
but my file isn't getting changed. I want to use the properties that are input in my SQLConnectionDlg. Tried with and without brackets:
<add name="LocalSqlServer" connectionString="server=SERVER_PROP;Initial Catalog=DATABASE_PROP;uid=USERNAME_PROP;pwd=PASSWORD_PROP" providerName="System.Data.SqlClient"/>
<add name="LocalSqlServer" connectionString="server=[SERVER_PROP];Initial Catalog=[DATABASE_PROP];uid=[USERNAME_PROP];pwd=[PASSWORD_PROP]" providerName="System.Data.SqlClient"/>
Is there something I need to do to tell the installer to parse the web.config? It's imported under files and folders but haven't changed any properties. I'm able to do script replacements on my sql scripts but not this.
Thanks.