Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,23 @@ You can see an example of how you could zip your repository before uploading it,

## Deployment failed

### File missing: The .umbraco file cannot be found in the root of the repository

The `.umbraco` file is missing or has been renamed. This file needs to be present in the root of the zipped package.

### File format Error: The .umbraco file is not valid

The `.umbraco` file has invalid characters. Sometimes people need to change the folder structure of the repository and change the name of the default project.
Take care that the base field is not using backslashes ('\') as folder deminitor.

Below is an example of the default `.umbraco` file that comes with a new Umbraco Cloud project.

```
[project]
base = "src/UmbracoProject"
csproj = "UmbracoProject.csproj"
```

### Cannot apply update because the following packages would be downgraded: Package: Umbraco.{abc}, Version: {x.y.z}

The service goes through all .csproj-files contained in the uploaded package, and compares that to the versions running in your left-most cloud environment.
Expand Down
Loading