Valid MB-820 Dumps shared by EduDump.com for Helping Passing MB-820 Exam! EduDump.com now offer the newest MB-820 exam dumps, the EduDump.com MB-820 exam questions have been updated and answers have been corrected get the newest EduDump.com MB-820 dumps with Test Engine here:
You are customizing Business Central by using Visual Studio Code. You create a project that will extend Business Central. The AL extension contains JSON files, which are automatically generated and are used to store configuration data For testing purposes, you plan to add the following changes to the files: * Specify that page 21 must be opened after publishing. * Enable debugging * Disable the capability to download the source code You need to add the configurations to the JSON files. Which two configurations should you add? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.
Correct Answer: A,E
1. Requirement: Specify that page 21 (or 27) must be opened after publishing. * Solution: Option A. * Reasoning: The launch.json file controls the behavior of the debugger and the deployment process in Visual Studio Code. To determine which page opens automatically when you press F5 (publish and run), you configure the "startupObjectId" property within launch.json. * Note: While the question mentions page 21 and the option lists 27, this is the only valid option for controlling the startup object. Option C is incorrect because app.json is the manifest file and does not control launch behavior. 2. Requirement: Enable debugging & Disable source code download. * Solution: Option E. * Reasoning: These settings relate to the Intellectual Property (IP) protection of your extension. This configuration belongs in the app.json file (the manifest), specifically under the " resourceExposurePolicy" property. * To enable debugging, you set "allowDebugging": true. * To disable downloading source, you set "allowDownloadingSource": false. * Option B is incorrect because this policy does not belong in launch.json. * Option D is incorrect because it sets allowDownloadingSource to true, which contradicts the requirement to disable it.