+ {shouldShowPackageSection && (
+
+
{intlText.PACKAGE_SETUP}
+ {renderSettingRow(intlText.PACKAGE_PATH_LABEL, packagePath.fsPath)}
+
+ )}
+
+ {shouldShowWorkspaceSection && (
+
+
{intlText.PROJECT_SETUP}
+ {renderSettingRow(intlText.WORKSPACE_NAME_LABEL, workspaceName)}
+ {renderSettingRow(intlText.WORKSPACE_FOLDER_LABEL, getWorkspaceFolderPath())}
+ {renderSettingRow(intlText.WORKSPACE_FILE_LABEL, getWorkspaceFilePath())}
+
+ )}
+
+ {shouldShowLogicAppSection && (
+
+
Logic App Details
+ {renderSettingRow(intlText.LOGIC_APP_NAME_LABEL, logicAppName)}
+ {flowType !== 'createLogicApp' && renderSettingRow(intlText.LOGIC_APP_LOCATION_LABEL, getLogicAppLocationPath())}
+ {renderSettingRow(intlText.LOGIC_APP_TYPE_LABEL, getLogicAppTypeDisplay(logicAppType))}
+
+ )}
+
+ {needsDotNetFrameworkStep && (
+
+
Custom Code Configuration
+ {renderSettingRow(intlText.DOTNET_FRAMEWORK_LABEL, getDotNetFrameworkDisplay(targetFramework))}
+ {renderSettingRow(intlText.CUSTOM_CODE_FOLDER_LABEL, functionFolderName)}
+ {renderSettingRow(intlText.CUSTOM_CODE_LOCATION_LABEL, getFunctionLocationPath())}
+ {renderSettingRow(intlText.FUNCTION_WORKSPACE_LABEL, functionNamespace)}
+ {renderSettingRow(intlText.FUNCTION_NAME_LABEL, functionName)}
+
+ )}
+
+ {needsFunctionConfiguration && (
+
+
Function Configuration
+ {renderSettingRow(intlText.RULES_ENGINE_FOLDER_LABEL, functionFolderName)}
+ {renderSettingRow(intlText.RULES_ENGINE_LOCATION_LABEL, getFunctionLocationPath())}
+ {renderSettingRow(intlText.FUNCTION_WORKSPACE_LABEL, functionNamespace)}
+ {renderSettingRow(intlText.FUNCTION_NAME_LABEL, functionName)}
+
+ )}
+
+ {shouldShowWorkflowSection && (
+
+
Workflow Configuration
+ {renderSettingRow(intlText.WORKFLOW_NAME_LABEL, workflowName)}
+ {renderSettingRow(intlText.WORKFLOW_TYPE_LABEL, getWorkflowTypeDisplay(workflowType))}
+
+ )}
+