Workspace extension with invalid name (defaultproject) found.

The error message “workspace extension with invalid name (defaultproject) found” indicates that there is an issue with the name of the workspace extension you are trying to create. The currently specified name, “defaultproject”, is not valid according to the rules for workspace extension names.

In general, a workspace extension name should follow certain guidelines to ensure its uniqueness and compatibility with the system. Here are some examples of valid and invalid names:

  • Valid names:

    • my-extension
    • workspace-extension
    • project123
  • Invalid names:

    • defaultproject (as mentioned in the error message)
    • extension name with spaces
    • extension-name!

To resolve this issue, you need to choose a different name for your workspace extension that adheres to the required format. It should be a unique and descriptive name without any special characters or spaces. For example, “my-extension” or “workspace-extension” would be valid names.

Read more

Leave a comment