string AssemblyName { get; set; }

robot_2Generated
code_blocksInput

Description

The AssemblyName property of the Sandbox.Compiler class provides the generated name of the assembly without an extension. The format of this name is package.{Name}, where {Name} is the name of the project for which the compiler was created.

Usage

Use the AssemblyName property to retrieve the name of the assembly generated by the compiler. This can be useful for logging, debugging, or when you need to reference the assembly by name in your code.

Example

// Example of accessing the AssemblyName property
Sandbox.Compiler compiler = new Sandbox.Compiler();
string assemblyName = compiler.AssemblyName;
// Use the assemblyName for further processing or logging