Show/Hide Toolbars

Thereforeā„¢ Help

Tutorials > Solution Designer > Authentication Methods

Publishing the function to Azure from within Visual Studio Code

Scroll

How do I publish the function to Azure from within the Visual Studio Code?

1. Sign into Azure by clicking the Azure icon in the Activity Bar and then ā€œSign in to Azureā€¦"

VS Code Publish 1

If an error regarding ā€œms-vscode.csharpā€ is show, you can use the following fix:

 

ms-vscode.csharp

Find <Project name>.code-workspace if your project folder and replace the following lines of code

 

 

"extensions": {

         "recommendations": [

                 "ms-vscode.csharp"

         ]

 }

 

 

 

with these lines of code:

 

"extensions": {

         "recommendations": [

                 "ms-dotnettools.csharp"

         ]

 }

 

Ā© 2024 Therefore Corporation, all rights reserved.