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
EnableLoadingModsKey
public readonly DefiningConfigKey<bool> EnableLoadingModsKey
Field Value
NuGetGamePackSourcesKey
public readonly DefiningConfigKey<List<NuGetSource>> NuGetGamePackSourcesKey
Field Value
NuGetLibSourcesKey
public readonly DefiningConfigKey<List<NuGetSource>> NuGetLibSourcesKey
Field Value
NuGetModSourcesKey
public readonly DefiningConfigKey<List<NuGetSource>> NuGetModSourcesKey
Field Value
Properties
Description
Gets a description of the config items found in this section.
public override string Description { get; }
Property Value
Id
Gets the mod-unique identifier of this section.
public override string Id { get; }
Property Value
LoadingLibsEnabled
Gets whether checking NuGet feeds to load mod's library dependencies is enabled.
public bool LoadingLibsEnabled { get; set; }
Property Value
LoadingModsEnabled
Gets whether checking NuGet feeds to load mod's other-mod dependencies is enabled.
public bool LoadingModsEnabled { get; set; }
Property Value
NuGetGamePackSources
Gets the NuGet feeds to check for game packs.
public List<NuGetSource> NuGetGamePackSources { get; set; }
Property Value
NuGetLibSources
Gets the NuGet feeds to check for libraries.
public List<NuGetSource> NuGetLibSources { get; set; }
Property Value
NuGetModSources
Gets the NuGet feeds to check for mods.
public List<NuGetSource> NuGetModSources { get; set; }
Property Value
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; }