@@ -2083,6 +2083,12 @@ command revSBUpdateDeployParams pStack, pTarget, pStandaloneSettings, @xDeployPa
20832083 # AL-2015-02-04: [[ Standalone Resources ]] Add (universal) external names to the deploy parameters
20842084 put pStandaloneSettings ["externals" ] into tExternals
20852085
2086+ revSBAddInclusion "Common" , "scriptLibraries" , pStandaloneSettings
2087+
2088+ if pStandaloneSettings ["includeProfiles" ] is not empty then
2089+ revSBAddInclusion "Profiles" , "scriptLibraries" , pStandaloneSettings
2090+ end if
2091+
20862092 -- auxiliary_stackfiles key might not be empty
20872093 put pStandaloneSettings ["auxiliary_stackfiles" ] into tAuxiliaryStackfiles
20882094
@@ -2161,13 +2167,7 @@ command revSBUpdateDeployParams pStack, pTarget, pStandaloneSettings, @xDeployPa
21612167
21622168 -- If the datagrid is used, then include the library as an aux stack
21632169 if tIncludeDataGrid or "data grid templates" is in the subStacks of stack pStack and there is a stack "revDataGridLibrary" then
2164- local tStackFiles
2165- put the stackFiles of stack "revDataGridLibrary" into tStackFiles
2166- split tStackFiles by return and comma
2167- repeat for each key tStack in tStackFiles
2168- appendToStringList the effective filename of stack tStack , tAuxiliaryStackFiles
2169- end repeat
2170- appendToStringList the effective filename of stack "revDataGridLibrary" , tAuxiliaryStackFiles
2170+ revSBAddDataGridToAuxiliaryStackFiles tAuxiliaryStackFiles
21712171 end if
21722172
21732173 put tAuxiliaryStackFiles into xDeployParams["auxiliary_stackfiles" ]
@@ -2177,6 +2177,16 @@ command revSBUpdateDeployParams pStack, pTarget, pStandaloneSettings, @xDeployPa
21772177 put tLibraryMapping into xDeployParams["library" ]
21782178end revSBUpdateDeployParams
21792179
2180+ command revSBAddDataGridToAuxiliaryStackFiles @xAuxiliaryStackFiles
2181+ local tStackFiles
2182+ put the stackFiles of stack "revDataGridLibrary" into tStackFiles
2183+ split tStackFiles by return and comma
2184+ repeat for each key tStack in tStackFiles
2185+ appendToStringList the effective filename of stack tStack , xAuxiliaryStackFiles
2186+ end repeat
2187+ appendToStringList the effective filename of stack "revDataGridLibrary" , xAuxiliaryStackFiles
2188+ end revSBAddDataGridToAuxiliaryStackFiles
2189+
21802190local sBuiltInInclusions
21812191
21822192private command __InitialiseBuiltInInclusions
0 commit comments