My SQL-server password for example looks like ABcDE1e]"L
and in connection string it escaped as ABcDE1e]"L
.
But after web.config transformation it become looks like ABcDE1e]"L
.
Why it decoded twice?
My SQL-server password for example looks like ABcDE1e]"L
and in connection string it escaped as ABcDE1e]"L
.
But after web.config transformation it become looks like ABcDE1e]"L
.
Why it decoded twice?
Have you tried
'ABcDE1e]";L.'
See if this SO helps (Escape quote in web.config connection string):