Command Line Interface
Standalone version of Obfuscator.
Args
Plana supports the following command line arguments.
Description:
Usage:
obfuscate [options]
Options:
--workspace <workspace> path to workspace .csproj or .sln
--dry-run dry-run obfuscate [default: False]
--write write obfuscated source code in place [default: False]
--log-level <Error|Normal|Silent|Verbose|Warn> log detail level [default: Normal]
--plugins <plugins> path to plugins directory loaded from [default: ./]
--output <output> path to directory write to
--version Show version information
-?, -h, --help Show help and usage information
Usage:
$ plana-cli obfuscate --workspace ./UdonObfuscator.Testing.csproj --plugins ./Library/plugins --dry-run --rename-symbols --enum-attributes
Options
Workspace
Specify the obfuscation workspace.
If you specify .csproj
file, obfuscator obfuscates project files only.
If you specify .sln
file, obfuscator obfuscates all files in Unity project.
$ plana-cli obfuscate --workspace ./AudioLink.csproj
# or
$ plana-cli obfuscate --workspace ./UnityProject.sln
Dry Run
If you want to try obfuscate, please specify --dry-run
flag. The obfuscator does not write obfuscation results to files.
$ plana-cli obfuscate --dry-run
Write
If you want to write obfuscation result in-place, please specify --write
flag.
$ plana-cli obfuscate --write
Log Level
Specify the level of log to output to console.
$ plana-cli obfuscate --log-level silent
Plugins
Specify the directory of plugins.
$ plana-cli obfuscate --plugins ./plugins
Output
Specify the output directory, if you don't write obfuscation result in-place, specify this opt.
$ plana-cli obfuscate --output ./dist
Official Plugins
Plana does not perform obfuscation processing if no plugin is specified. Therefore, it is necessary to load any plugin depending on the purpose and obfuscation content.