Table of Contents

Class NuGetConfigSection

Namespace
MonkeyLoader.NuGet
Assembly
MonkeyLoader.dll
public sealed class NuGetConfigSection : ConfigSection, INestedIdentifiable<Config>, INestedIdentifiable, IIdentifiableOwner<ConfigSection, IDefiningConfigKey>, IIdentifiableOwner<IDefiningConfigKey>, IIdentifiable, IPrioritizable
Inheritance
NuGetConfigSection
Implements
Inherited Members
Extension Methods

Fields

EnableLoadingLibsKey

public readonly DefiningConfigKey<bool> EnableLoadingLibsKey

Field Value

DefiningConfigKey<bool>

EnableLoadingModsKey

public readonly DefiningConfigKey<bool> EnableLoadingModsKey

Field Value

DefiningConfigKey<bool>

NuGetGamePackSourcesKey

public readonly DefiningConfigKey<List<NuGetSource>> NuGetGamePackSourcesKey

Field Value

DefiningConfigKey<List<NuGetSource>>

NuGetLibSourcesKey

public readonly DefiningConfigKey<List<NuGetSource>> NuGetLibSourcesKey

Field Value

DefiningConfigKey<List<NuGetSource>>

NuGetModSourcesKey

public readonly DefiningConfigKey<List<NuGetSource>> NuGetModSourcesKey

Field Value

DefiningConfigKey<List<NuGetSource>>

Properties

Description

Gets a description of the config items found in this section.

public override string Description { get; }

Property Value

string

Id

Gets the mod-unique identifier of this section.

public override string Id { get; }

Property Value

string

LoadingLibsEnabled

Gets whether checking NuGet feeds to load mod's library dependencies is enabled.

public bool LoadingLibsEnabled { get; set; }

Property Value

bool

LoadingModsEnabled

Gets whether checking NuGet feeds to load mod's other-mod dependencies is enabled.

public bool LoadingModsEnabled { get; set; }

Property Value

bool

NuGetGamePackSources

Gets the NuGet feeds to check for game packs.

public List<NuGetSource> NuGetGamePackSources { get; set; }

Property Value

List<NuGetSource>

NuGetLibSources

Gets the NuGet feeds to check for libraries.

public List<NuGetSource> NuGetLibSources { get; set; }

Property Value

List<NuGetSource>

NuGetModSources

Gets the NuGet feeds to check for mods.

public List<NuGetSource> NuGetModSources { get; set; }

Property Value

List<NuGetSource>

Priority

Gets the priority of this item. Use an agreed standard as a base.

public override int Priority { get; }

Property Value

int

An interger used to sort the prioritizable items.
Higher comes first with the default comparer.

Remarks

Controls in which order the sections of a Config are listed.

Version

Gets the semantic version for this config section.
This is used to check if the defined and saved configs are compatible.

public override Version Version { get; }

Property Value

Version