Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update document for troubleshooting error #8015

Merged
merged 1 commit into from
Oct 27, 2024
Merged
Changes from all 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 @@ -164,3 +164,28 @@ dotnet --list-sdks
Make sure you see a `6.0` entry in `--list-runtimes` for `Microsoft.AspNetCore.App` and a `6.0` or newer entry for `--list-sdks`.

If you run into issues here, please re-read the prerequisites related to installing .NET.

### I got a "InvalidTemplate" error when deploying a bicep file

> sample error message:
```json
{
"code": "InvalidTemplate",
"message": "Deployment template validation failed: 'The template language version '2.1-experimental' is not recognized.'.",
}
```

Pull latest of the `radius-project/deployment-engine` project.
Run submodule update to update bicep extensibility support for extensible resources:

```bash
git submodule update --init --recursive
```

Build deployment-engine project

```bash
dotnet build
```

After building the Deployment Engine, build the radius project and redeploy bicep file by running steps from [Debugging](#debugging).
Loading