Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Manifest Cleanup documentation #704 #705

Merged
merged 6 commits into from
Nov 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion content/tutorials/extensions/dnn-manifest-schema/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@ Some component types are applicable only to the package type of the same name; g

* [`Cleanup`](https://www.dnnsoftware.com/wiki/cleanup-component). List of files that must be deleted during installation or upgrade of the package.

You can list the files individually in the manifest.
- You can list the files individually in the manifest.
- You can also remove folders. These have to be empty, so you need to remove the files first.

```

Expand All @@ -315,6 +316,9 @@ Some component types are applicable only to the package type of the same name; g
<file />
...
</files>
<folder>
<path>DesktopModules/MyModule/DeleteFolder</path>
</folder>
</component>

```
Expand Down
Loading