Skip to content

Commit b8ab06d

Browse files
Merge pull request #300450 from diberry/diberry/0527-functions-queue-bindings
Functions tutorial - files are created (pivot)
2 parents 1e5c2dd + 376315f commit b8ab06d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

articles/azure-functions/functions-develop-vs-code.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,13 @@ The project template creates a project in your chosen language and installs the
135135
136136
* **Dockerfile** (optional): Lets you create a containerized function app from your project by using an approved base image for your project. You only get this file when you run the command `Azure Functions: Create New Containerized Project...`. You can add a Dockerfile to an existing project using the `func init --docker-only` command in [Core Tools](./functions-core-tools-reference.md#func-init).
137137

138-
Depending on your language, these other files are created:
139-
140138
::: zone pivot="programming-language-csharp"
141139
An HttpExample.cs class library file, the contents of which vary depending on whether your project runs in an [isolated worker process](dotnet-isolated-process-guide.md#project-structure) or [in-process](functions-dotnet-class-library.md#functions-class-library-project) with the Functions host.
142140
::: zone-end
143-
::: zone pivot="programming-language-java"
141+
::: zone pivot="programming-language-java"
142+
143+
These files are created:
144+
144145
+ A pom.xml file in the root folder that defines the project and deployment parameters, including project dependencies and the [Java version](functions-reference-java.md#java-versions). The pom.xml also contains information about the Azure resources that are created during a deployment.
145146

146147
+ A [Functions.java file](functions-reference-java.md#triggers-and-annotations) in your src path that implements the function.
@@ -166,7 +167,8 @@ Files generated depend on the chosen Node.js programming model for Functions:
166167

167168
::: zone-end
168169
::: zone pivot="programming-language-powershell"
169-
An HttpExample folder that contains:
170+
171+
An HttpExample folder is created that contains:
170172

171173
+ The [function.json definition file](functions-reference-powershell.md#folder-structure)
172174
+ A run.ps1 file, which contains the function code.

0 commit comments

Comments
 (0)