.NET Runtime Environment
info
This article serves as a thorough introduction to Cloud Engine’s .NET runtime environment. To quickly get started with Cloud Engine, see Getting Started With Cloud Engine.
A .NET project has to have an app.sln under its root directory for Cloud Engine to correctly identify it as a .NET project. The structure of a .NET project often looks like this:
├── web
| ├── StartUp.cs
| ├── Program.cs
| ├── web.csproj
| └── wwwroot
| ├── css
| ├── lib
| └── js
├── app.sln
└── global.json
If you are looking to start a new project, we recommend that you use our .NET sample project as a boilerplate.