A PowerShell module to handle AssemblyLoadContext management for module authoring.
# Install the module from PSGallery
Install-Module Isol8
# Create a new .dll file for your module, and update the NestedModules in the manifest
$Params = @{
Name = 'MyModule'
ManifestPath = "$Dir/MyModule.psd1"
Path = "$Dir/dependencies"
}
New-Isol8Assembly @Params