# ExportPackageOptions

> Export package option. Multiple options can be combined together using the | operator.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEditor](/engine/6000.7/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
[Flags]
public enum ExportPackageOptions
```

## Remarks

Additional Resources: [AssetDatabase.ExportPackage](/engine/6000.7/script-reference/unityeditor/assetdatabase/exportpackage.md).

## Fields

| Value                                                                                                            | Description                                                                                                                                 |
| ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| [Default](/engine/6000.7/script-reference/unityeditor/exportpackageoptions/default.md)                           | Default mode. Will not include dependencies or subdirectories nor include Library assets unless specifically included in the asset list.    |
| [IncludeDependencies](/engine/6000.7/script-reference/unityeditor/exportpackageoptions/includedependencies.md)   | In addition to the assets paths listed, all dependent assets will be included as well.                                                      |
| [IncludeLibraryAssets](/engine/6000.7/script-reference/unityeditor/exportpackageoptions/includelibraryassets.md) | The exported package will include all library assets, ie. the project settings located in the Library folder of the project.                |
| [Interactive](/engine/6000.7/script-reference/unityeditor/exportpackageoptions/interactive.md)                   | The export operation will be run asynchronously and reveal the exported package file in a file browser window after the export is finished. |
| [Recurse](/engine/6000.7/script-reference/unityeditor/exportpackageoptions/recurse.md)                           | Will recurse through any subdirectories listed and include all assets inside them.                                                          |
