ServiceEntryPoint.AssemblySearchPathsConfig Property

Definition

Gets or sets the path to a config JSON file used for adding additional assembly search paths.

public:
 property System::String ^ AssemblySearchPathsConfig { System::String ^ get(); void set(System::String ^ value); };
[System.Runtime.Serialization.DataMember(IsRequired=false, Name="assemblySearchPathsConfig")]
public string? AssemblySearchPathsConfig { get; set; }
[<System.Runtime.Serialization.DataMember(IsRequired=false, Name="assemblySearchPathsConfig")>]
member this.AssemblySearchPathsConfig : string with get, set
Public Property AssemblySearchPathsConfig As String

Property Value

Attributes

Remarks

This file should contain an array of paths to directories and/or assemblies that are to be used to resolve assemblies if neither this service's AssemblyLoadContext, or one of its friends can resolve the assembly. The paths can either be relative to the location of this file, or absolute. This property is only applicable for services running inside dotnet Host processes.

Applies to