Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

CompilationPipeline.GetAssemblies

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static Assembly[] GetAssemblies(AssembliesType assembliesType);

Returns

Assembly[] Array of script assemblies compiled by Unity.

Description

Get all script assemblies compiled by Unity, filtered by AssembliesType.

This is a build-time view of the assemblies that Unity's compilation pipeline produces from your script files, including predefined assemblies like Assembly-CSharp and any assemblies you define with Assembly Definition (.asmdef) files.

It returns an array of Assembly objects, which are metadata descriptions, not to be confused with loaded System.Reflection.Assembly instances. Each entry includes information such as the assembly name, its source files, output path, references, defines, and compiler options.

The assemblies are filtered by AssembliesType so you can determine what the Player build would compile while in the Editor. This API is Editor-only and reflects the project's script structure regardless of whether those assemblies are currently loaded or successfully compiled into the runtime.

Important: Don't confuse this with the view of assemblies loaded into the current runtime execution context, which can be obtained through CurrentAssemblies.GetLoadedAssemblies.

Additional resources: Assembly.