Skip to content

Commit 376315f

Browse files
committed
Functions tutorial - files are created (pivot)
1 parent d5792f4 commit 376315f

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
@@ -134,12 +134,13 @@ The project template creates a project in your chosen language and installs the
134134
135135
* **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).
136136

137-
Depending on your language, these other files are created:
138-
139137
::: zone pivot="programming-language-csharp"
140138
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.
141139
::: zone-end
142-
::: zone pivot="programming-language-java"
140+
::: zone pivot="programming-language-java"
141+
142+
These files are created:
143+
143144
+ 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.
144145

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

166167
::: zone-end
167168
::: zone pivot="programming-language-powershell"
168-
An HttpExample folder that contains:
169+
170+
An HttpExample folder is created that contains:
169171

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

0 commit comments

Comments
 (0)