-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #443 from Aragas/dev
v5.10.2
- Loading branch information
Showing
58 changed files
with
247 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 0 additions & 30 deletions
30
src/MCM.Abstractions/Base/Global/BaseFluentGlobalSettingsWrapper.cs
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
src/MCM.Abstractions/Base/Global/BaseGlobalSettingsWrapper.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 0 additions & 78 deletions
78
src/MCM.Abstractions/Base/PerCampaign/BasePerCampaignSettingsWrapper.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 0 additions & 78 deletions
78
src/MCM.Abstractions/Base/PerSave/BasePerSaveSettingsWrapper.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/MCM.Abstractions/Definitions/Attributes/v2/SettingPropertyGroupMetadataAttribute.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
|
||
// ReSharper disable once CheckNamespace | ||
namespace MCM.Abstractions.Attributes.v2 | ||
{ | ||
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)] | ||
#if !BANNERLORDMCM_INCLUDE_IN_CODE_COVERAGE | ||
[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage, global::System.Diagnostics.DebuggerNonUserCode] | ||
#endif | ||
#if !BANNERLORDMCM_PUBLIC | ||
internal | ||
#else | ||
public | ||
# endif | ||
sealed class SettingPropertyGroupMetadataAttribute : BaseSettingPropertyAttribute, | ||
IPropertyDefinitionGroupMetadata | ||
{ | ||
public SettingPropertyGroupMetadataAttribute() : base(string.Empty) { } | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/MCM.Abstractions/Definitions/IPropertyDefinitionGroupMetadata.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace MCM.Abstractions | ||
{ | ||
#if !BANNERLORDMCM_PUBLIC | ||
internal | ||
#else | ||
public | ||
# endif | ||
interface IPropertyDefinitionGroupMetadata : IPropertyDefinitionBase | ||
{ } | ||
} |
15 changes: 15 additions & 0 deletions
15
src/MCM.Abstractions/Definitions/Wrapper/PropertyDefinitionGroupMetadataWrapper.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
namespace MCM.Abstractions.Wrapper | ||
{ | ||
#if !BANNERLORDMCM_INCLUDE_IN_CODE_COVERAGE | ||
[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage, global::System.Diagnostics.DebuggerNonUserCode] | ||
#endif | ||
#if !BANNERLORDMCM_PUBLIC | ||
internal | ||
#else | ||
public | ||
# endif | ||
sealed class PropertyDefinitionGroupMetadataWrapper : BasePropertyDefinitionWrapper, IPropertyDefinitionGroupMetadata | ||
{ | ||
public PropertyDefinitionGroupMetadataWrapper(object @object) : base(@object) { } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.