启动VSCode时自动启动AWS模块

时间:2017-02-19 14:00:57

标签: powershell amazon-web-services visual-studio-code aws-sdk

VS Code启动后是否可以加载AWS SDK模块?

在OSX上运行,VSCode已安装PowerShell扩展并正常工作。

在终端中我可以输入“powershell”并自动加载AWS模块,因为“Microsoft.PowerShell_profile.ps1”已经

  

导入模块AWSPowerShell.NetCore

     

Set-DefaultAWSRegion -Region eu-west-1

在那里,所以一旦我启动PowerShell就会加载它们。

我希望在VSCode中具有相同的功能,而不必在PowerShell脚本中添加这两行。

1 个答案:

答案 0 :(得分:0)

您可以将模块和脚本添加到launch.json以方便此操作。

可在以下链接中找到更多详细信息:

https://blogs.technet.microsoft.com/heyscriptingguy/2017/02/13/debugging-powershell-script-in-visual-studio-code-part-2/