You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS Version: Windows 10 Enterprise, 10.0.19045 Build 19045
Loading the workspace .env file loads an environment variable with a = in it. This means that it fails to parse things like Connection strings.
Temporary workaround is to disable the environment loading feature (for my case, using python environments, by applying the "python.terminal.activateEnvironment": false setting)
Steps to Reproduce:
create workspace
create .env file
write the line connectionstring=Endpoint=some.endpoint;etc=etc; in said .env file. Use a valid connection string to e.g. an Azure Eventhub, or a local database, or w/e to verify.
Running your code snippets no longer works in the integrated terminal as the VSCode .env parser seems to not read the env file correctly. It works fine in OS native terminals (cmd, PS etc) for Python and TypeScript code, so this is probably an issue with the VSCode env file parser
The text was updated successfully, but these errors were encountered:
Does this issue occur when all extensions are disabled?: Yes/No
Loading the workspace
.env
file loads an environment variable with a=
in it. This means that it fails to parse things like Connection strings.Temporary workaround is to disable the environment loading feature (for my case, using python environments, by applying the
"python.terminal.activateEnvironment": false
setting)Steps to Reproduce:
.env
fileconnectionstring=Endpoint=some.endpoint;etc=etc;
in said.env
file. Use a valid connection string to e.g. an Azure Eventhub, or a local database, or w/e to verify.The text was updated successfully, but these errors were encountered: