### Install NetBeauty as a Global Tool
Source: https://github.com/nulastudio/netbeauty2/blob/master/README.md
Command to install NetBeauty globally as a .NET Core tool.
```bash
dotnet tool install --global nulastudio.nbeauty
```
--------------------------------
### Customizing AppHost Example Structure
Source: https://github.com/nulastudio/netbeauty2/blob/master/README.md
Demonstrates a simplified folder structure for a single application using a customized AppHost, with dependencies in a 'libs' folder.
```bash
├── MyApp # Main folder for the app
│ ├── libs # Dependencies
│ ├── hostfxr.dll ... # DLLs that cannot be moved
│ ├── libloader.dll # Loader (moved if using patch)
│ ├── MyApp.deps.json
│ ├── MyApp.dll
│ ├── MyApp.runtimeconfig.json
│ └── ...
└── MyApp.exe # AppHost
```
--------------------------------
### Configure NetBeauty in .csproj
Source: https://github.com/nulastudio/netbeauty2/blob/master/README.md
Example .csproj file demonstrating various NetBeauty configuration options.
```xml
Popularity: " + movieItem.popularity + "
Vote Count: " + movieItem.vote_count + "
Vote Average: " + movieItem.vote_average;
containerHtml += "
Homepage