diff --git a/Resources/Resource.Designer.cs b/Resources/Resource.Designer.cs index 766aff4..036d54c 100644 --- a/Resources/Resource.Designer.cs +++ b/Resources/Resource.Designer.cs @@ -1,73 +1,60 @@ +#pragma warning disable 1591 //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4952 +// Runtime Version:4.0.30319.34011 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ +[assembly: global::Android.Runtime.ResourceDesignerAttribute("SharedSettingsAbstraction.Resource", IsApplication=false)] + namespace SharedSettingsAbstraction { - - - public partial class Resource - { - - public partial class Attribute - { - - private Attribute() - { - } - } - - public partial class Drawable - { - - // aapt resource value: 0x7f020000 - public const int Icon = 2130837504; - - private Drawable() - { - } - } - - public partial class Id - { - - // aapt resource value: 0x7f050000 - public const int MyButton = 2131034112; - - private Id() - { - } - } - - public partial class Layout - { - - // aapt resource value: 0x7f030000 - public const int Main = 2130903040; - - private Layout() - { - } - } - - public partial class String - { - - // aapt resource value: 0x7f040001 - public const int ApplicationName = 2130968577; - - // aapt resource value: 0x7f040000 - public const int Hello = 2130968576; - - private String() - { - } - } - } + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] + public partial class Resource + { + + static Resource() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + public partial class Attribute + { + + static Attribute() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Attribute() + { + } + } + + public partial class String + { + + // aapt resource value: 0x7f020001 + public static int ApplicationName = 2130837505; + + // aapt resource value: 0x7f020000 + public static int Hello = 2130837504; + + static String() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private String() + { + } + } + } } +#pragma warning restore 1591 diff --git a/Setting/CastingSettingException.cs b/Setting/CastingSettingException.cs index 5846933..280c209 100644 --- a/Setting/CastingSettingException.cs +++ b/Setting/CastingSettingException.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; -namespace GravatarSyncro.Android.Client.Setting +namespace SharedSettingsAbstraction.Setting { class CastingSettingException : Exception { diff --git a/Setting/SettingsKey.cs b/Setting/SettingsKey.cs index 88bd375..a838086 100644 --- a/Setting/SettingsKey.cs +++ b/Setting/SettingsKey.cs @@ -20,7 +20,7 @@ namespace SharedSettingsAbstraction.Setting public class SettingsKey { public string key { get; private set; } - public T value { private get; private set; } + private T value; public string Description { get; set; } public string Title { get; set; } private string _preferenceName;