Warn if runtime in app manifest is set too high #697
rvanbekkum
started this conversation in
New Rule
Replies: 1 comment 1 reply
-
Should we also extend the rule (or create a new one) to validate the application/platform property? "application": "23.3.0.0",
"platform": "1.0.0.0", A diagnostic: "Referencing application version 23.3 implicit means the platform needs to be set to 23.0 or greater". "application": "1.0.0.0",
"platform": "23.0.0.0", A diagnostic: "Referencing platform version 23.0 implicit means the application needs to be set to 23.0 or greater" |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Relates to existing rule LC0033.
Please raise a warning/error diagnostic if
runtime
in theapp.json
manifest file is set to a value that is too high.For example, following combination should not be allowed:
as runtime 13.0 is only supported for BC 24.0.0.0 and newer.
Beta Was this translation helpful? Give feedback.
All reactions