Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 1.11 KB

README.md

File metadata and controls

23 lines (16 loc) · 1.11 KB

Plugins Deployment

To deploy a plugin based on Plugin Template project it is recommanded to first use dotnet publish command to produce the output.

For Peernet.Browser.Plugins.MediaPlayer plugin the command would be:

~\Peernet.Browser.Plugins.MediaPlayer>dotnet publish -c Release --no-self-contained

It compiles the project into ~\Peernet.Browser.Plugins.MediaPlayer\bin\Release\net5.0-windows\publish directory. The content of the directory should be deployed to a new subfolder under the Peernet Browser' PluginsLocation (see Plugins System for more details).
.pdb files which are symbol files for the debugger and can be omitted as well as .deps.json files.

Plugins supported Formats

Peernet.Browser.Plugins.ByteViewer

Binary files

Peernet.Browser.Plugins.ImageViewer

Image files

Peernet.Browser.Plugins.MediaPlayer

Video and Audio files

Peernet.Browser.Plugins.TextViewer

Text files