Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 580 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 580 Bytes

Isol8

Isol8Downloads

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