The REGION_ID is an abbreviated code that Google assigns
based on the region you select when you create your app. The code does not
correspond to a country or province, even though some region IDs may appear
similar to commonly used country and province codes. For apps created after
February 2020, REGION_ID.r is included in
App Engine URLs. For existing apps created before this date, the
region ID is optional in the URL.
Learn more about region IDs.
This quickstart demonstrates how to create and deploy an app that displays a
short message.
You can use the sample application in this quickstart for any supported version of .NET, by specifying the runtime version
and operating system in your app.yaml file.
By default, App Engine uses the latest available LTS .NET version if you don't
specify a runtime version in your app.yaml file.
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
Roles required to select or create a project
roles/resourcemanager.projectCreator), which contains the
resourcemanager.projects.create permission. Learn how to grant
roles.
Verify that billing is enabled for your Google Cloud project.
Enable the Cloud Build API.
Roles required to enable APIs
To enable APIs, you need the Service Usage Admin IAM
role (roles/serviceusage.serviceUsageAdmin), which
contains the serviceusage.services.enable permission. Learn how to grant
roles.
Install the Google Cloud CLI.
If you're using an external identity provider (IdP), you must first sign in to the gcloud CLI with your federated identity.
To initialize the gcloud CLI, run the following command:
gcloud initIn the Google Cloud console, on the project selector page, select or create a Google Cloud project.
Roles required to select or create a project
roles/resourcemanager.projectCreator), which contains the
resourcemanager.projects.create permission. Learn how to grant
roles.
Verify that billing is enabled for your Google Cloud project.
Enable the Cloud Build API.
Roles required to enable APIs
To enable APIs, you need the Service Usage Admin IAM
role (roles/serviceusage.serviceUsageAdmin), which
contains the serviceusage.services.enable permission. Learn how to grant
roles.
Install the Google Cloud CLI.
If you're using an external identity provider (IdP), you must first sign in to the gcloud CLI with your federated identity.
To initialize the gcloud CLI, run the following command:
gcloud initTo get the permissions that you need to complete this quickstart, ask your administrator to grant you the following IAM roles:
roles/appengine.appAdmin)
on the projectroles/cloudbuild.builds.editor)
on the projectroles/storage.objectAdmin)
on the projectroles/logging.viewer)
on the projectroles/iam.serviceAccountUser)
on the service accountroles/artifactregistry.reader)
on the projectroles/cloudbuild.builds.builder)
on the projectroles/storage.objectViewer)
on the projectFor more information about granting roles, see Manage access to projects, folders, and organizations.
You might also be able to get the required permissions through custom roles or other predefined roles.
Initialize your App Engine app with your project and choose its region:
gcloud app create --project=[YOUR_PROJECT_ID]
When prompted, select the region where you want to locate your App Engine application.
Install the following on your local machine:
Install the .NET Core SDK, LTS version.
If you are using Visual Studio, you must use version 2015 or later. Images are available for ASP.NET Core apps written for .NET Core 1.0, 1.1, 2.0 and 2.1.
App Engine is regional, which means the infrastructure that runs your apps is located in a specific region, and Google manages it so that it is available redundantly across all of the zones within that region.
Meeting your latency, availability, or durability requirements are primary factors for selecting the region where your apps are run. You can generally select the region nearest to your app's users, but you should consider the locations where App Engine is available as well as the locations of the other Google Cloud products and services that your app uses. Using services across multiple locations can affect your app's latency as well as its pricing.
You cannot change an app's region after you set it.
If you already created an App Engine application, you can view its region by doing one of the following:
Run the gcloud app describe command.
Open the App Engine Dashboard in the Google Cloud console. The region appears near the top of the page.
We've created a Hello World app for App Engine so you can quickly
get a feel for deploying an app to the Google Cloud.
The Hello World app is similar to the app created by Visual Studio when an empty
ASP.NET core app is created. The sample app adds an app.yaml file. The
app.yaml file is an App Engine configuration file that specifies your
runtime and other App Engine settings.
Clone the Hello World sample app repository to your local machine.
git clone https://github.com/GoogleCloudPlatform/dotnet-docs-samples
Alternatively, you can download the sample as a zip file and extract it.
Change to the directory that contains the sample code.
cd dotnet-docs-samples/appengine/flexible/HelloWorld
Run the following commands from the dotnet-docs-samples/appengine/flexible/HelloWorld/HelloWorld.Sample directory:
dotnet restore
dotnet run
In your web browser, go to http://localhost:5000. You can see the "Hello World" message from the sample app displayed in the page. In your terminal window, press Ctrl+C to exit the web server.
gcloud app deploy from the command line.https://PROJECT_ID.REGION_ID.r.appspot.com
gcloud app browse
This time, the page that displays the Hello World message is delivered by a web server running on an App Engine instance.
Congratulations! You've deployed your first App Engine app to the App Engine flexible environment!
If you encountered any errors deploying your application, check the troubleshooting tips. See the following sections for information about cleaning up as well as links to possible next steps that you can take.To avoid incurring charges, you can delete your Google Cloud project to stop billing for all the resources used within that project.
Now that you know what it's like to develop and deploy App Engine apps, you can explore the rest of Google Cloud. You already have the Google Cloud CLI installed which gives you the tools to interact with products like Cloud SQL, Cloud Storage, Firestore, and more.
Here are some topics to help continue your learning about App Engine:
Hello World is the simplest possible App Engine app, as it contains only one service, has only one version, and all of the code is located within the app's root directory. This section describes each of the app files in detail.
Program.csThe Hello World app is a simple ASP.NET app:
app.yamlThe app.yaml
file describes the following configuration for your app:
env: flex, indicating your app uses the
App Engine flexible environment.Specifies the runtime used by the app.
For more information on how the .NET runtime works, see The .NET runtime.
For more details about how to design your app to take advantage of versions and services, see An overview of App Engine.
For more details about the configuration settings for App Engine, see Configuring your app with app.yaml.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-06-11 UTC.