ISKernel:DotNet (Command)

From Lavish Software Wiki
Revision as of 08:00, 1 December 2006 by Lax (talk | contribs)
(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to navigation Jump to search

Syntax

DotNet <app domain> <assembly name> [parameters ...]|-unload <app domain>|-list

  • DotNet <app domain> <assembly name> [parameters ...]
Loads an assembly with the given long name or filename with path into the given application domain.
  • DotNet -unload <app domain>
Destroys an application domain, unloading all assemblies in it
  • DotNet -list
Lists active application domains
Application domains and assembly limitations are described in Inner Space .NET 2.0 Support

Examples

dotnet hello "HelloWorld, Version=1.0.0.0, Culture=neutral, PublicKeyToken=05f54132edf4cc0c"
dotnet hello "C:\\Program Files\\Hello World\\HelloWorld.exe"
dotnet -list hello
dotnet -unload hello

See Also