Skip to content

Commit b15f836

Browse files
committed
📝 Enhance manifest.tpl.xml with Detailed Comments and Structure
- Added explanatory comments to the manifest template for better understanding. - Included a section for defining project-specific object dependencies. - Provided example object dependencies as a guide for customization. - Emphasized the importance of specifying the project name and framework version. - Improved template structure to facilitate easier customization and clarity for CI pipeline usage.
1 parent 100732d commit b15f836

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

.ci/templates/manifest.tpl.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1+
<!--
2+
This XML manifest file is used for defining a NetSuite customization project.
3+
It specifies project details, framework version, and dependencies.
4+
-->
15
<manifest projecttype="ACCOUNTCUSTOMIZATION">
2-
<projectname>PROJECTNAME</projectname>
6+
<projectname>PROJECTNAME</projectname><!-- Define your project name here. -->
37
<frameworkversion>1.0</frameworkversion>
8+
<dependencies>
9+
<objects>
10+
<!--
11+
Example object dependencies that you can include in your template file.
12+
Modify or add additional objects as needed for your project.
13+
14+
<object>customrole_company_branch_manager</object>
15+
<object>customlist_case_file_brands</object>
16+
<object>customlist_case_file_brands.val_16057214_5782747_394</object>
17+
-->
18+
</objects>
19+
</dependencies>
420
</manifest>

0 commit comments

Comments
 (0)