Update the Manifest File of a Solution
To update the manifest version or convert the manifest file format, run the following command with the appropriate flag:
fsoc solution fix <flags>
Flag |
Description |
Example Output (Successful Execution) |
--manifest-format yaml |
Convert the manifest file format to YAML. |
Expand
fsoc solution fix --manifest-format yaml
Manifest format changed to yaml.
Manifest file manifest.yaml updated successfully.
Removing old manifest file "manifest.json" (backed up in "/var/folders/f2/bqcq6lws1r36dlrzr6d771f80000gn/T/solutionjson-manifest-backup-2336470887.json").
1 change(s) made to the solution.
|
--manifest-format json |
Convert the manifest file format to JSON. |
Expand
fsoc solution fix --manifest-format json
Manifest format changed to json.
Manifest file manifest.json updated successfully.
Removing old manifest file "manifest.yaml" (backed up in "/var/folders/f2/bqcq6lws1r36dlrzr6d771f80000gn/T/solutionyaml-manifest-backup-2336470887.yaml").
1 change(s) made to the solution.
|
--manifest-version --solution-type |
Update the manifest file version to the latest version. You are required to specify a solution type of component or module. |
Expand
fsoc solution fix --manifest-format json --manifest-version --solution-type application
• The solution type "application" requires additional component(s): please add an application object
Manifest version upgraded to 1.1.0.
• Manifest format is already as requested; not changed.
Manifest file manifest.json updated successfully.
1 change(s) made to the solution.
|