PackageLoadedAssembly Class
Namespace: Stride.Core.AssetsAssembly: Stride.Core.Assets.dll
Represents an assembly that is loaded at runtime by the package.
System.Object →
PackageLoadedAssembly
Derived from PackageLoadedAssembly:
public class PackageLoadedAssembly
| Name | Description | |
|---|---|---|
| Constructors | ||
| PackageLoadedAssembly(ProjectReference, String) | ||
| Properties | ||
| Assembly | Gets or sets the loaded assembly. Could be null if not properly loaded. |
|
| Path | Gets the path of the assembly. |
|
| ProjectReference | Gets the project reference for this assembly. |
|
Constructors
PackageLoadedAssembly(ProjectReference, String)
public PackageLoadedAssembly(ProjectReference projectReference, string path)
Parameters
| Type | Name | Description |
|---|---|---|
| ProjectReference | projectReference | |
| System.String | path |
Properties
Assembly
Gets or sets the loaded assembly. Could be null if not properly loaded.
public Assembly Assembly { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Reflection.Assembly | The assembly. |
Path
Gets the path of the assembly.
public string Path { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The path. |
ProjectReference
Gets the project reference for this assembly.
public ProjectReference ProjectReference { get; }
Property Value
| Type | Description |
|---|---|
| ProjectReference | The project reference. |