My SSDT database publish is failing because it is erroneously thinking an embedded string is referring to a SQLCMD variable:
EXEC xp_cmdshell 'powershell.exe $(Get-Date).IsDaylightSavingTime()'
I can manually run this statement (in SSMS) and get the desired result (which is regrettably "true") but the publish chokes trying to parse the statement:
SQL Execution error: A fatal error occurred. The variable Get-Date could not be found.
SQL Execution error: A fatal error occurred. Incorrect syntax was encountered while EXEC xp_cmdshell 'powershell.exe $(Get-Date).IsDaylightSavingTime()' was being parsed.
How do I get this statement to not fail the publish without obfuscating it or adding it to the SQLCMD variable list in the database project?
(Or perhaps there is an easier way to check if the server's time zone observes godforsaken DST? The time zone identifiers in the USA say "Standard" regardless if actually prevailing on our developer machines. And changing all references from GETDATE() to GETUTCDATE() is not feasible.)