From 5ee10a7d1dde0e0ccd2f01e5d01fdce2a678ccd2 Mon Sep 17 00:00:00 2001 From: Kazuki Ota Date: Thu, 26 Sep 2019 12:37:41 +0900 Subject: [PATCH] update files for v6.1.3 --- BuildTools/ReactiveProperty.nuspec | 2 +- BuildTools/pack.bat | 1 + ReactiveProperty.sln | 6 +- .../AssemblyInfo.cs | 36 + .../ReactiveProperty.NETStandard.csproj | 7 +- .../Properties/AssemblyInfo.cs | 4 +- .../ReactiveProperty.Platform.Android.csproj | 3 + .../Resources/Resource.Designer.cs | 1082 ++++++++--------- .../AssemblyInfo.cs | 36 + .../ReactiveProperty.Platform.NET46.csproj | 1 + .../AssemblyInfo.cs | 36 + .../ReactiveProperty.Platform.NetCore.csproj | 1 + ...ReactiveProperty.Platform.Shared.projitems | 3 +- .../Version.cs | 11 + .../Properties/AssemblyInfo.cs | 4 +- .../Properties/AssemblyInfo.cs | 4 +- .../ReactiveProperty.Platform.iOS.csproj | 3 + 17 files changed, 687 insertions(+), 553 deletions(-) create mode 100644 Source/ReactiveProperty.NETStandard/AssemblyInfo.cs create mode 100644 Source/ReactiveProperty.Platform.NET46/AssemblyInfo.cs create mode 100644 Source/ReactiveProperty.Platform.NetCore/AssemblyInfo.cs create mode 100644 Source/ReactiveProperty.Platform.Shared/Version.cs diff --git a/BuildTools/ReactiveProperty.nuspec b/BuildTools/ReactiveProperty.nuspec index 549b6996..7d79b47b 100644 --- a/BuildTools/ReactiveProperty.nuspec +++ b/BuildTools/ReactiveProperty.nuspec @@ -2,7 +2,7 @@ ReactiveProperty - 6.1.2 + 6.1.3 ReactiveProperty neuecc xin9le okazuki neuecc xin9le okazuki diff --git a/BuildTools/pack.bat b/BuildTools/pack.bat index 44954eff..ad479388 100644 --- a/BuildTools/pack.bat +++ b/BuildTools/pack.bat @@ -1 +1,2 @@ +msbuild ..\ReactiveProperty.sln /p:Configuration=Release /t:Clean;Build nuget pack ReactiveProperty.nuspec diff --git a/ReactiveProperty.sln b/ReactiveProperty.sln index f586524d..4c9a7a14 100644 --- a/ReactiveProperty.sln +++ b/ReactiveProperty.sln @@ -102,7 +102,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReactiveProperty.NETStandar EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactiveProperty.Platform.Android", "Source\ReactiveProperty.Platform.Android\ReactiveProperty.Platform.Android.csproj", "{BF2E72F9-149B-4687-ABCD-7B949430FFDE}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactiveProperty.Platform.NetCore", "Source\ReactiveProperty.Platform.NetCore\ReactiveProperty.Platform.NetCore.csproj", "{7BC40D74-D0B4-4736-B45D-127224D20474}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReactiveProperty.Platform.NetCore", "Source\ReactiveProperty.Platform.NetCore\ReactiveProperty.Platform.NetCore.csproj", "{7BC40D74-D0B4-4736-B45D-127224D20474}" EndProject Global GlobalSection(SharedMSBuildProjectFiles) = preSolution @@ -491,9 +491,9 @@ Global {7BC40D74-D0B4-4736-B45D-127224D20474} = {592AA479-AD7F-476B-AEF8-2B0268EA3BD8} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {5AC43AC2-86FE-46EF-B243-5C8E75EAB89B} - BuildVersion_UseGlobalSettings = True BuildVersion_AssemblyInfoFilename = Source\NET40\Properties\CommonAssemblyInfo.cs + BuildVersion_UseGlobalSettings = True + SolutionGuid = {5AC43AC2-86FE-46EF-B243-5C8E75EAB89B} EndGlobalSection GlobalSection(TestCaseManagementSettings) = postSolution CategoryFile = ReactiveProperty.vsmdi diff --git a/Source/ReactiveProperty.NETStandard/AssemblyInfo.cs b/Source/ReactiveProperty.NETStandard/AssemblyInfo.cs new file mode 100644 index 00000000..8e22628c --- /dev/null +++ b/Source/ReactiveProperty.NETStandard/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("ReactiveProperty")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ReactiveProperty")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("91648038-aa41-4a00-a13b-b276e851cd02")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion(Reactive.Bindings.Version.Number)] +[assembly: AssemblyFileVersion(Reactive.Bindings.Version.Number)] diff --git a/Source/ReactiveProperty.NETStandard/ReactiveProperty.NETStandard.csproj b/Source/ReactiveProperty.NETStandard/ReactiveProperty.NETStandard.csproj index 9b52bb94..5333e26c 100644 --- a/Source/ReactiveProperty.NETStandard/ReactiveProperty.NETStandard.csproj +++ b/Source/ReactiveProperty.NETStandard/ReactiveProperty.NETStandard.csproj @@ -6,7 +6,7 @@ Reactive.Bindings ReactiveProperty is MVVM and Asynchronous Extensions for Reactive Extensions(System.Reactive). Target is .NET Standard 2.0. false - 5.5.0 + 6.1.3 true key.snk neuecc xin9le okazuki @@ -17,6 +17,7 @@ Update dependency library version to System.Reactive 4.1.0 en-US True + false @@ -24,6 +25,10 @@ ..\..\Binary\netstandard2.0\ReactiveProperty.xml + + + + diff --git a/Source/ReactiveProperty.Platform.Android/Properties/AssemblyInfo.cs b/Source/ReactiveProperty.Platform.Android/Properties/AssemblyInfo.cs index a9bb79aa..74a362b3 100644 --- a/Source/ReactiveProperty.Platform.Android/Properties/AssemblyInfo.cs +++ b/Source/ReactiveProperty.Platform.Android/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.5.0.0")] -[assembly: AssemblyFileVersion("5.5.0.0")] +[assembly: AssemblyVersion(Reactive.Bindings.Version.Number)] +[assembly: AssemblyFileVersion(Reactive.Bindings.Version.Number)] diff --git a/Source/ReactiveProperty.Platform.Android/ReactiveProperty.Platform.Android.csproj b/Source/ReactiveProperty.Platform.Android/ReactiveProperty.Platform.Android.csproj index 00a7d228..0105e076 100644 --- a/Source/ReactiveProperty.Platform.Android/ReactiveProperty.Platform.Android.csproj +++ b/Source/ReactiveProperty.Platform.Android/ReactiveProperty.Platform.Android.csproj @@ -46,6 +46,9 @@ + + Version.cs + diff --git a/Source/ReactiveProperty.Platform.Android/Resources/Resource.Designer.cs b/Source/ReactiveProperty.Platform.Android/Resources/Resource.Designer.cs index 4471161a..a3196969 100644 --- a/Source/ReactiveProperty.Platform.Android/Resources/Resource.Designer.cs +++ b/Source/ReactiveProperty.Platform.Android/Resources/Resource.Designer.cs @@ -1,11 +1,11 @@ #pragma warning disable 1591 //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// このコードはツールによって生成されました。 +// ランタイム バージョン:4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// このファイルへの変更は、以下の状況下で不正な動作の原因になったり、 +// コードが再生成されるときに損失したりします。 // //------------------------------------------------------------------------------ @@ -3578,101 +3578,101 @@ public partial class Styleable public static int[] ActionBarLayout = new int[] { 16842931}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ActionBarLayout_android_layout_gravity = 0; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ActionBar_background = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int ActionBar_backgroundSplit = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int ActionBar_backgroundStacked = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int ActionBar_contentInsetEnd = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int ActionBar_contentInsetEndWithActions = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int ActionBar_contentInsetLeft = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int ActionBar_contentInsetRight = 6; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int ActionBar_contentInsetStart = 7; - // aapt resource value: 0x8 + // aapt resource value: 8 public static int ActionBar_contentInsetStartWithNavigation = 8; - // aapt resource value: 0x9 + // aapt resource value: 9 public static int ActionBar_customNavigationLayout = 9; - // aapt resource value: 0x10 - public static int ActionBar_displayOptions = 16; + // aapt resource value: 10 + public static int ActionBar_displayOptions = 10; - // aapt resource value: 0x11 - public static int ActionBar_divider = 17; + // aapt resource value: 11 + public static int ActionBar_divider = 11; - // aapt resource value: 0x12 - public static int ActionBar_elevation = 18; + // aapt resource value: 12 + public static int ActionBar_elevation = 12; - // aapt resource value: 0x13 - public static int ActionBar_height = 19; + // aapt resource value: 13 + public static int ActionBar_height = 13; - // aapt resource value: 0x14 - public static int ActionBar_hideOnContentScroll = 20; + // aapt resource value: 14 + public static int ActionBar_hideOnContentScroll = 14; - // aapt resource value: 0x15 - public static int ActionBar_homeAsUpIndicator = 21; + // aapt resource value: 15 + public static int ActionBar_homeAsUpIndicator = 15; - // aapt resource value: 0x16 - public static int ActionBar_homeLayout = 22; + // aapt resource value: 16 + public static int ActionBar_homeLayout = 16; - // aapt resource value: 0x17 - public static int ActionBar_icon = 23; + // aapt resource value: 17 + public static int ActionBar_icon = 17; - // aapt resource value: 0x18 - public static int ActionBar_indeterminateProgressStyle = 24; + // aapt resource value: 18 + public static int ActionBar_indeterminateProgressStyle = 18; - // aapt resource value: 0x19 - public static int ActionBar_itemPadding = 25; + // aapt resource value: 19 + public static int ActionBar_itemPadding = 19; - // aapt resource value: 0x20 - public static int ActionBar_logo = 32; + // aapt resource value: 20 + public static int ActionBar_logo = 20; - // aapt resource value: 0x21 - public static int ActionBar_navigationMode = 33; + // aapt resource value: 21 + public static int ActionBar_navigationMode = 21; - // aapt resource value: 0x22 - public static int ActionBar_popupTheme = 34; + // aapt resource value: 22 + public static int ActionBar_popupTheme = 22; - // aapt resource value: 0x23 - public static int ActionBar_progressBarPadding = 35; + // aapt resource value: 23 + public static int ActionBar_progressBarPadding = 23; - // aapt resource value: 0x24 - public static int ActionBar_progressBarStyle = 36; + // aapt resource value: 24 + public static int ActionBar_progressBarStyle = 24; - // aapt resource value: 0x25 - public static int ActionBar_subtitle = 37; + // aapt resource value: 25 + public static int ActionBar_subtitle = 25; - // aapt resource value: 0x26 - public static int ActionBar_subtitleTextStyle = 38; + // aapt resource value: 26 + public static int ActionBar_subtitleTextStyle = 26; - // aapt resource value: 0x27 - public static int ActionBar_title = 39; + // aapt resource value: 27 + public static int ActionBar_title = 27; - // aapt resource value: 0x28 - public static int ActionBar_titleTextStyle = 40; + // aapt resource value: 28 + public static int ActionBar_titleTextStyle = 28; // aapt resource value: { 0x101013F } public static int[] ActionMenuItemView = new int[] { 16843071}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ActionMenuItemView_android_minWidth = 0; // aapt resource value: { 0xFFFFFFFF } @@ -3688,22 +3688,22 @@ public partial class Styleable 2130837703, 2130837739}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ActionMode_background = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int ActionMode_backgroundSplit = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int ActionMode_closeItemLayout = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int ActionMode_height = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int ActionMode_subtitleTextStyle = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int ActionMode_titleTextStyle = 5; // aapt resource value: { 0x7F02006E,0x7F020085 } @@ -3711,10 +3711,10 @@ public partial class Styleable 2130837614, 2130837637}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int ActivityChooserView_initialActivityCount = 1; // aapt resource value: { 0x10100F2,0x7F02003E,0x7F02008B,0x7F02008C,0x7F020098,0x7F0200BA,0x7F0200BB } @@ -3727,25 +3727,25 @@ public partial class Styleable 2130837690, 2130837691}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int AlertDialog_android_layout = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int AlertDialog_buttonPanelSideLayout = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int AlertDialog_listItemLayout = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int AlertDialog_listLayout = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int AlertDialog_multiChoiceItemLayout = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int AlertDialog_showTitle = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int AlertDialog_singleChoiceItemLayout = 6; // aapt resource value: { 0x1010119,0x7F0200C0,0x7F0200E0,0x7F0200E1 } @@ -3755,16 +3755,16 @@ public partial class Styleable 2130837728, 2130837729}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int AppCompatImageView_android_src = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int AppCompatImageView_srcCompat = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int AppCompatImageView_tint = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int AppCompatImageView_tintMode = 3; // aapt resource value: { 0x1010142,0x7F0200DD,0x7F0200DE,0x7F0200DF } @@ -3774,16 +3774,16 @@ public partial class Styleable 2130837726, 2130837727}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int AppCompatSeekBar_android_thumb = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int AppCompatSeekBar_tickMark = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int AppCompatSeekBar_tickMarkTint = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int AppCompatSeekBar_tickMarkTintMode = 3; // aapt resource value: { 0x1010034,0x101016D,0x101016E,0x101016F,0x1010170,0x1010392,0x1010393 } @@ -3796,25 +3796,25 @@ public partial class Styleable 16843666, 16843667}; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int AppCompatTextHelper_android_drawableBottom = 2; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int AppCompatTextHelper_android_drawableEnd = 6; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int AppCompatTextHelper_android_drawableLeft = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int AppCompatTextHelper_android_drawableRight = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int AppCompatTextHelper_android_drawableStart = 5; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int AppCompatTextHelper_android_drawableTop = 1; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int AppCompatTextHelper_android_textAppearance = 0; // aapt resource value: { 0x1010034,0x7F02002C,0x7F02002D,0x7F02002E,0x7F02002F,0x7F020030,0x7F020070,0x7F0200CD } @@ -3828,28 +3828,28 @@ public partial class Styleable 2130837616, 2130837709}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int AppCompatTextView_android_textAppearance = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int AppCompatTextView_autoSizeMaxTextSize = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int AppCompatTextView_autoSizeMinTextSize = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int AppCompatTextView_autoSizePresetSizes = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int AppCompatTextView_autoSizeStepGranularity = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int AppCompatTextView_autoSizeTextType = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int AppCompatTextView_fontFamily = 6; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int AppCompatTextView_textAllCaps = 7; // aapt resource value: { 0x1010057,0x10100AE,0x7F020000,0x7F020001,0x7F020002,0x7F020003,0x7F020004,0x7F020005,0x7F020006,0x7F020007,0x7F020008,0x7F020009,0x7F02000A,0x7F02000B,0x7F02000C,0x7F02000E,0x7F02000F,0x7F020010,0x7F020011,0x7F020012,0x7F020013,0x7F020014,0x7F020015,0x7F020016,0x7F020017,0x7F020018,0x7F020019,0x7F02001A,0x7F02001B,0x7F02001C,0x7F02001D,0x7F02001E,0x7F020021,0x7F020022,0x7F020023,0x7F020024,0x7F020025,0x7F02002B,0x7F020037,0x7F020038,0x7F020039,0x7F02003A,0x7F02003B,0x7F02003C,0x7F02003F,0x7F020040,0x7F020043,0x7F020044,0x7F02004A,0x7F02004B,0x7F02004C,0x7F02004D,0x7F02004E,0x7F02004F,0x7F020050,0x7F020051,0x7F020052,0x7F020053,0x7F02005C,0x7F02005F,0x7F020060,0x7F020063,0x7F020065,0x7F020068,0x7F020069,0x7F02006A,0x7F02006B,0x7F02006C,0x7F02007D,0x7F020083,0x7F020089,0x7F02008A,0x7F02008D,0x7F02008E,0x7F02008F,0x7F020090,0x7F020091,0x7F020092,0x7F020093,0x7F0200A2,0x7F0200A3,0x7F0200A4,0x7F0200A5,0x7F0200A7,0x7F0200AD,0x7F0200AE,0x7F0200AF,0x7F0200B0,0x7F0200B3,0x7F0200B4,0x7F0200B5,0x7F0200B6,0x7F0200BD,0x7F0200BE,0x7F0200CB,0x7F0200CE,0x7F0200CF,0x7F0200D0,0x7F0200D1,0x7F0200D2,0x7F0200D3,0x7F0200D4,0x7F0200D5,0x7F0200D6,0x7F0200D7,0x7F0200EC,0x7F0200ED,0x7F0200EE,0x7F0200EF,0x7F0200F5,0x7F0200F6,0x7F0200F7,0x7F0200F8,0x7F0200F9,0x7F0200FA,0x7F0200FB,0x7F0200FC,0x7F0200FD,0x7F0200FE } @@ -3974,368 +3974,368 @@ public partial class Styleable 2130837757, 2130837758}; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int AppCompatTheme_actionBarDivider = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int AppCompatTheme_actionBarItemBackground = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int AppCompatTheme_actionBarPopupTheme = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int AppCompatTheme_actionBarSize = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int AppCompatTheme_actionBarSplitStyle = 6; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int AppCompatTheme_actionBarStyle = 7; - // aapt resource value: 0x8 + // aapt resource value: 8 public static int AppCompatTheme_actionBarTabBarStyle = 8; - // aapt resource value: 0x9 + // aapt resource value: 9 public static int AppCompatTheme_actionBarTabStyle = 9; - // aapt resource value: 0x10 - public static int AppCompatTheme_actionBarTabTextStyle = 16; + // aapt resource value: 10 + public static int AppCompatTheme_actionBarTabTextStyle = 10; - // aapt resource value: 0x11 - public static int AppCompatTheme_actionBarTheme = 17; + // aapt resource value: 11 + public static int AppCompatTheme_actionBarTheme = 11; - // aapt resource value: 0x12 - public static int AppCompatTheme_actionBarWidgetTheme = 18; + // aapt resource value: 12 + public static int AppCompatTheme_actionBarWidgetTheme = 12; - // aapt resource value: 0x13 - public static int AppCompatTheme_actionButtonStyle = 19; + // aapt resource value: 13 + public static int AppCompatTheme_actionButtonStyle = 13; - // aapt resource value: 0x14 - public static int AppCompatTheme_actionDropDownStyle = 20; + // aapt resource value: 14 + public static int AppCompatTheme_actionDropDownStyle = 14; - // aapt resource value: 0x15 - public static int AppCompatTheme_actionMenuTextAppearance = 21; + // aapt resource value: 15 + public static int AppCompatTheme_actionMenuTextAppearance = 15; - // aapt resource value: 0x16 - public static int AppCompatTheme_actionMenuTextColor = 22; + // aapt resource value: 16 + public static int AppCompatTheme_actionMenuTextColor = 16; - // aapt resource value: 0x17 - public static int AppCompatTheme_actionModeBackground = 23; + // aapt resource value: 17 + public static int AppCompatTheme_actionModeBackground = 17; - // aapt resource value: 0x18 - public static int AppCompatTheme_actionModeCloseButtonStyle = 24; + // aapt resource value: 18 + public static int AppCompatTheme_actionModeCloseButtonStyle = 18; - // aapt resource value: 0x19 - public static int AppCompatTheme_actionModeCloseDrawable = 25; + // aapt resource value: 19 + public static int AppCompatTheme_actionModeCloseDrawable = 19; - // aapt resource value: 0x20 - public static int AppCompatTheme_actionModeCopyDrawable = 32; + // aapt resource value: 20 + public static int AppCompatTheme_actionModeCopyDrawable = 20; - // aapt resource value: 0x21 - public static int AppCompatTheme_actionModeCutDrawable = 33; + // aapt resource value: 21 + public static int AppCompatTheme_actionModeCutDrawable = 21; - // aapt resource value: 0x22 - public static int AppCompatTheme_actionModeFindDrawable = 34; + // aapt resource value: 22 + public static int AppCompatTheme_actionModeFindDrawable = 22; - // aapt resource value: 0x23 - public static int AppCompatTheme_actionModePasteDrawable = 35; + // aapt resource value: 23 + public static int AppCompatTheme_actionModePasteDrawable = 23; - // aapt resource value: 0x24 - public static int AppCompatTheme_actionModePopupWindowStyle = 36; + // aapt resource value: 24 + public static int AppCompatTheme_actionModePopupWindowStyle = 24; - // aapt resource value: 0x25 - public static int AppCompatTheme_actionModeSelectAllDrawable = 37; + // aapt resource value: 25 + public static int AppCompatTheme_actionModeSelectAllDrawable = 25; - // aapt resource value: 0x26 - public static int AppCompatTheme_actionModeShareDrawable = 38; + // aapt resource value: 26 + public static int AppCompatTheme_actionModeShareDrawable = 26; - // aapt resource value: 0x27 - public static int AppCompatTheme_actionModeSplitBackground = 39; + // aapt resource value: 27 + public static int AppCompatTheme_actionModeSplitBackground = 27; - // aapt resource value: 0x28 - public static int AppCompatTheme_actionModeStyle = 40; + // aapt resource value: 28 + public static int AppCompatTheme_actionModeStyle = 28; - // aapt resource value: 0x29 - public static int AppCompatTheme_actionModeWebSearchDrawable = 41; + // aapt resource value: 29 + public static int AppCompatTheme_actionModeWebSearchDrawable = 29; - // aapt resource value: 0x30 - public static int AppCompatTheme_actionOverflowButtonStyle = 48; + // aapt resource value: 30 + public static int AppCompatTheme_actionOverflowButtonStyle = 30; - // aapt resource value: 0x31 - public static int AppCompatTheme_actionOverflowMenuStyle = 49; + // aapt resource value: 31 + public static int AppCompatTheme_actionOverflowMenuStyle = 31; - // aapt resource value: 0x32 - public static int AppCompatTheme_activityChooserViewStyle = 50; + // aapt resource value: 32 + public static int AppCompatTheme_activityChooserViewStyle = 32; - // aapt resource value: 0x33 - public static int AppCompatTheme_alertDialogButtonGroupStyle = 51; + // aapt resource value: 33 + public static int AppCompatTheme_alertDialogButtonGroupStyle = 33; - // aapt resource value: 0x34 - public static int AppCompatTheme_alertDialogCenterButtons = 52; + // aapt resource value: 34 + public static int AppCompatTheme_alertDialogCenterButtons = 34; - // aapt resource value: 0x35 - public static int AppCompatTheme_alertDialogStyle = 53; + // aapt resource value: 35 + public static int AppCompatTheme_alertDialogStyle = 35; - // aapt resource value: 0x36 - public static int AppCompatTheme_alertDialogTheme = 54; + // aapt resource value: 36 + public static int AppCompatTheme_alertDialogTheme = 36; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int AppCompatTheme_android_windowAnimationStyle = 1; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int AppCompatTheme_android_windowIsFloating = 0; - // aapt resource value: 0x37 - public static int AppCompatTheme_autoCompleteTextViewStyle = 55; + // aapt resource value: 37 + public static int AppCompatTheme_autoCompleteTextViewStyle = 37; - // aapt resource value: 0x38 - public static int AppCompatTheme_borderlessButtonStyle = 56; + // aapt resource value: 38 + public static int AppCompatTheme_borderlessButtonStyle = 38; - // aapt resource value: 0x39 - public static int AppCompatTheme_buttonBarButtonStyle = 57; + // aapt resource value: 39 + public static int AppCompatTheme_buttonBarButtonStyle = 39; - // aapt resource value: 0x40 - public static int AppCompatTheme_buttonBarNegativeButtonStyle = 64; + // aapt resource value: 40 + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 40; - // aapt resource value: 0x41 - public static int AppCompatTheme_buttonBarNeutralButtonStyle = 65; + // aapt resource value: 41 + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 41; - // aapt resource value: 0x42 - public static int AppCompatTheme_buttonBarPositiveButtonStyle = 66; + // aapt resource value: 42 + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 42; - // aapt resource value: 0x43 - public static int AppCompatTheme_buttonBarStyle = 67; + // aapt resource value: 43 + public static int AppCompatTheme_buttonBarStyle = 43; - // aapt resource value: 0x44 - public static int AppCompatTheme_buttonStyle = 68; + // aapt resource value: 44 + public static int AppCompatTheme_buttonStyle = 44; - // aapt resource value: 0x45 - public static int AppCompatTheme_buttonStyleSmall = 69; + // aapt resource value: 45 + public static int AppCompatTheme_buttonStyleSmall = 45; - // aapt resource value: 0x46 - public static int AppCompatTheme_checkboxStyle = 70; + // aapt resource value: 46 + public static int AppCompatTheme_checkboxStyle = 46; - // aapt resource value: 0x47 - public static int AppCompatTheme_checkedTextViewStyle = 71; + // aapt resource value: 47 + public static int AppCompatTheme_checkedTextViewStyle = 47; - // aapt resource value: 0x48 - public static int AppCompatTheme_colorAccent = 72; + // aapt resource value: 48 + public static int AppCompatTheme_colorAccent = 48; - // aapt resource value: 0x49 - public static int AppCompatTheme_colorBackgroundFloating = 73; + // aapt resource value: 49 + public static int AppCompatTheme_colorBackgroundFloating = 49; - // aapt resource value: 0x50 - public static int AppCompatTheme_colorButtonNormal = 80; + // aapt resource value: 50 + public static int AppCompatTheme_colorButtonNormal = 50; - // aapt resource value: 0x51 - public static int AppCompatTheme_colorControlActivated = 81; + // aapt resource value: 51 + public static int AppCompatTheme_colorControlActivated = 51; - // aapt resource value: 0x52 - public static int AppCompatTheme_colorControlHighlight = 82; + // aapt resource value: 52 + public static int AppCompatTheme_colorControlHighlight = 52; - // aapt resource value: 0x53 - public static int AppCompatTheme_colorControlNormal = 83; + // aapt resource value: 53 + public static int AppCompatTheme_colorControlNormal = 53; - // aapt resource value: 0x54 - public static int AppCompatTheme_colorError = 84; + // aapt resource value: 54 + public static int AppCompatTheme_colorError = 54; - // aapt resource value: 0x55 - public static int AppCompatTheme_colorPrimary = 85; + // aapt resource value: 55 + public static int AppCompatTheme_colorPrimary = 55; - // aapt resource value: 0x56 - public static int AppCompatTheme_colorPrimaryDark = 86; + // aapt resource value: 56 + public static int AppCompatTheme_colorPrimaryDark = 56; - // aapt resource value: 0x57 - public static int AppCompatTheme_colorSwitchThumbNormal = 87; + // aapt resource value: 57 + public static int AppCompatTheme_colorSwitchThumbNormal = 57; - // aapt resource value: 0x58 - public static int AppCompatTheme_controlBackground = 88; + // aapt resource value: 58 + public static int AppCompatTheme_controlBackground = 58; - // aapt resource value: 0x59 - public static int AppCompatTheme_dialogPreferredPadding = 89; + // aapt resource value: 59 + public static int AppCompatTheme_dialogPreferredPadding = 59; - // aapt resource value: 0x60 - public static int AppCompatTheme_dialogTheme = 96; + // aapt resource value: 60 + public static int AppCompatTheme_dialogTheme = 60; - // aapt resource value: 0x61 - public static int AppCompatTheme_dividerHorizontal = 97; + // aapt resource value: 61 + public static int AppCompatTheme_dividerHorizontal = 61; - // aapt resource value: 0x62 - public static int AppCompatTheme_dividerVertical = 98; + // aapt resource value: 62 + public static int AppCompatTheme_dividerVertical = 62; - // aapt resource value: 0x64 - public static int AppCompatTheme_dropdownListPreferredItemHeight = 100; + // aapt resource value: 64 + public static int AppCompatTheme_dropdownListPreferredItemHeight = 64; - // aapt resource value: 0x63 - public static int AppCompatTheme_dropDownListViewStyle = 99; + // aapt resource value: 63 + public static int AppCompatTheme_dropDownListViewStyle = 63; - // aapt resource value: 0x65 - public static int AppCompatTheme_editTextBackground = 101; + // aapt resource value: 65 + public static int AppCompatTheme_editTextBackground = 65; - // aapt resource value: 0x66 - public static int AppCompatTheme_editTextColor = 102; + // aapt resource value: 66 + public static int AppCompatTheme_editTextColor = 66; - // aapt resource value: 0x67 - public static int AppCompatTheme_editTextStyle = 103; + // aapt resource value: 67 + public static int AppCompatTheme_editTextStyle = 67; - // aapt resource value: 0x68 - public static int AppCompatTheme_homeAsUpIndicator = 104; + // aapt resource value: 68 + public static int AppCompatTheme_homeAsUpIndicator = 68; - // aapt resource value: 0x69 - public static int AppCompatTheme_imageButtonStyle = 105; + // aapt resource value: 69 + public static int AppCompatTheme_imageButtonStyle = 69; - // aapt resource value: 0x70 - public static int AppCompatTheme_listChoiceBackgroundIndicator = 112; + // aapt resource value: 70 + public static int AppCompatTheme_listChoiceBackgroundIndicator = 70; - // aapt resource value: 0x71 - public static int AppCompatTheme_listDividerAlertDialog = 113; + // aapt resource value: 71 + public static int AppCompatTheme_listDividerAlertDialog = 71; - // aapt resource value: 0x72 - public static int AppCompatTheme_listMenuViewStyle = 114; + // aapt resource value: 72 + public static int AppCompatTheme_listMenuViewStyle = 72; - // aapt resource value: 0x73 - public static int AppCompatTheme_listPopupWindowStyle = 115; + // aapt resource value: 73 + public static int AppCompatTheme_listPopupWindowStyle = 73; - // aapt resource value: 0x74 - public static int AppCompatTheme_listPreferredItemHeight = 116; + // aapt resource value: 74 + public static int AppCompatTheme_listPreferredItemHeight = 74; - // aapt resource value: 0x75 - public static int AppCompatTheme_listPreferredItemHeightLarge = 117; + // aapt resource value: 75 + public static int AppCompatTheme_listPreferredItemHeightLarge = 75; - // aapt resource value: 0x76 - public static int AppCompatTheme_listPreferredItemHeightSmall = 118; + // aapt resource value: 76 + public static int AppCompatTheme_listPreferredItemHeightSmall = 76; - // aapt resource value: 0x77 - public static int AppCompatTheme_listPreferredItemPaddingLeft = 119; + // aapt resource value: 77 + public static int AppCompatTheme_listPreferredItemPaddingLeft = 77; - // aapt resource value: 0x78 - public static int AppCompatTheme_listPreferredItemPaddingRight = 120; + // aapt resource value: 78 + public static int AppCompatTheme_listPreferredItemPaddingRight = 78; - // aapt resource value: 0x79 - public static int AppCompatTheme_panelBackground = 121; + // aapt resource value: 79 + public static int AppCompatTheme_panelBackground = 79; - // aapt resource value: 0x80 - public static int AppCompatTheme_panelMenuListTheme = 128; + // aapt resource value: 80 + public static int AppCompatTheme_panelMenuListTheme = 80; - // aapt resource value: 0x81 - public static int AppCompatTheme_panelMenuListWidth = 129; + // aapt resource value: 81 + public static int AppCompatTheme_panelMenuListWidth = 81; - // aapt resource value: 0x82 - public static int AppCompatTheme_popupMenuStyle = 130; + // aapt resource value: 82 + public static int AppCompatTheme_popupMenuStyle = 82; - // aapt resource value: 0x83 - public static int AppCompatTheme_popupWindowStyle = 131; + // aapt resource value: 83 + public static int AppCompatTheme_popupWindowStyle = 83; - // aapt resource value: 0x84 - public static int AppCompatTheme_radioButtonStyle = 132; + // aapt resource value: 84 + public static int AppCompatTheme_radioButtonStyle = 84; - // aapt resource value: 0x85 - public static int AppCompatTheme_ratingBarStyle = 133; + // aapt resource value: 85 + public static int AppCompatTheme_ratingBarStyle = 85; - // aapt resource value: 0x86 - public static int AppCompatTheme_ratingBarStyleIndicator = 134; + // aapt resource value: 86 + public static int AppCompatTheme_ratingBarStyleIndicator = 86; - // aapt resource value: 0x87 - public static int AppCompatTheme_ratingBarStyleSmall = 135; + // aapt resource value: 87 + public static int AppCompatTheme_ratingBarStyleSmall = 87; - // aapt resource value: 0x88 - public static int AppCompatTheme_searchViewStyle = 136; + // aapt resource value: 88 + public static int AppCompatTheme_searchViewStyle = 88; - // aapt resource value: 0x89 - public static int AppCompatTheme_seekBarStyle = 137; + // aapt resource value: 89 + public static int AppCompatTheme_seekBarStyle = 89; - // aapt resource value: 0x90 - public static int AppCompatTheme_selectableItemBackground = 144; + // aapt resource value: 90 + public static int AppCompatTheme_selectableItemBackground = 90; - // aapt resource value: 0x91 - public static int AppCompatTheme_selectableItemBackgroundBorderless = 145; + // aapt resource value: 91 + public static int AppCompatTheme_selectableItemBackgroundBorderless = 91; - // aapt resource value: 0x92 - public static int AppCompatTheme_spinnerDropDownItemStyle = 146; + // aapt resource value: 92 + public static int AppCompatTheme_spinnerDropDownItemStyle = 92; - // aapt resource value: 0x93 - public static int AppCompatTheme_spinnerStyle = 147; + // aapt resource value: 93 + public static int AppCompatTheme_spinnerStyle = 93; - // aapt resource value: 0x94 - public static int AppCompatTheme_switchStyle = 148; + // aapt resource value: 94 + public static int AppCompatTheme_switchStyle = 94; - // aapt resource value: 0x95 - public static int AppCompatTheme_textAppearanceLargePopupMenu = 149; + // aapt resource value: 95 + public static int AppCompatTheme_textAppearanceLargePopupMenu = 95; - // aapt resource value: 0x96 - public static int AppCompatTheme_textAppearanceListItem = 150; + // aapt resource value: 96 + public static int AppCompatTheme_textAppearanceListItem = 96; - // aapt resource value: 0x97 - public static int AppCompatTheme_textAppearanceListItemSecondary = 151; + // aapt resource value: 97 + public static int AppCompatTheme_textAppearanceListItemSecondary = 97; - // aapt resource value: 0x98 - public static int AppCompatTheme_textAppearanceListItemSmall = 152; + // aapt resource value: 98 + public static int AppCompatTheme_textAppearanceListItemSmall = 98; - // aapt resource value: 0x99 - public static int AppCompatTheme_textAppearancePopupMenuHeader = 153; + // aapt resource value: 99 + public static int AppCompatTheme_textAppearancePopupMenuHeader = 99; - // aapt resource value: 0x100 - public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 256; + // aapt resource value: 100 + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 100; - // aapt resource value: 0x101 - public static int AppCompatTheme_textAppearanceSearchResultTitle = 257; + // aapt resource value: 101 + public static int AppCompatTheme_textAppearanceSearchResultTitle = 101; - // aapt resource value: 0x102 - public static int AppCompatTheme_textAppearanceSmallPopupMenu = 258; + // aapt resource value: 102 + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 102; - // aapt resource value: 0x103 - public static int AppCompatTheme_textColorAlertDialogListItem = 259; + // aapt resource value: 103 + public static int AppCompatTheme_textColorAlertDialogListItem = 103; - // aapt resource value: 0x104 - public static int AppCompatTheme_textColorSearchUrl = 260; + // aapt resource value: 104 + public static int AppCompatTheme_textColorSearchUrl = 104; - // aapt resource value: 0x105 - public static int AppCompatTheme_toolbarNavigationButtonStyle = 261; + // aapt resource value: 105 + public static int AppCompatTheme_toolbarNavigationButtonStyle = 105; - // aapt resource value: 0x106 - public static int AppCompatTheme_toolbarStyle = 262; + // aapt resource value: 106 + public static int AppCompatTheme_toolbarStyle = 106; - // aapt resource value: 0x107 - public static int AppCompatTheme_tooltipForegroundColor = 263; + // aapt resource value: 107 + public static int AppCompatTheme_tooltipForegroundColor = 107; - // aapt resource value: 0x108 - public static int AppCompatTheme_tooltipFrameBackground = 264; + // aapt resource value: 108 + public static int AppCompatTheme_tooltipFrameBackground = 108; - // aapt resource value: 0x109 - public static int AppCompatTheme_windowActionBar = 265; + // aapt resource value: 109 + public static int AppCompatTheme_windowActionBar = 109; - // aapt resource value: 0x110 - public static int AppCompatTheme_windowActionBarOverlay = 272; + // aapt resource value: 110 + public static int AppCompatTheme_windowActionBarOverlay = 110; - // aapt resource value: 0x111 - public static int AppCompatTheme_windowActionModeOverlay = 273; + // aapt resource value: 111 + public static int AppCompatTheme_windowActionModeOverlay = 111; - // aapt resource value: 0x112 - public static int AppCompatTheme_windowFixedHeightMajor = 274; + // aapt resource value: 112 + public static int AppCompatTheme_windowFixedHeightMajor = 112; - // aapt resource value: 0x113 - public static int AppCompatTheme_windowFixedHeightMinor = 275; + // aapt resource value: 113 + public static int AppCompatTheme_windowFixedHeightMinor = 113; - // aapt resource value: 0x114 - public static int AppCompatTheme_windowFixedWidthMajor = 276; + // aapt resource value: 114 + public static int AppCompatTheme_windowFixedWidthMajor = 114; - // aapt resource value: 0x115 - public static int AppCompatTheme_windowFixedWidthMinor = 277; + // aapt resource value: 115 + public static int AppCompatTheme_windowFixedWidthMinor = 115; - // aapt resource value: 0x116 - public static int AppCompatTheme_windowMinWidthMajor = 278; + // aapt resource value: 116 + public static int AppCompatTheme_windowMinWidthMajor = 116; - // aapt resource value: 0x117 - public static int AppCompatTheme_windowMinWidthMinor = 279; + // aapt resource value: 117 + public static int AppCompatTheme_windowMinWidthMinor = 117; - // aapt resource value: 0x118 - public static int AppCompatTheme_windowNoTitle = 280; + // aapt resource value: 118 + public static int AppCompatTheme_windowNoTitle = 118; // aapt resource value: { 0x7F020026 } public static int[] ButtonBarLayout = new int[] { 2130837542}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ButtonBarLayout_allowStacking = 0; // aapt resource value: { 0x10101A5,0x101031F,0x7F020027 } @@ -4344,13 +4344,13 @@ public partial class Styleable 16843551, 2130837543}; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int ColorStateListItem_alpha = 2; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int ColorStateListItem_android_alpha = 1; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ColorStateListItem_android_color = 0; // aapt resource value: { 0x1010107,0x7F020041,0x7F020042 } @@ -4359,13 +4359,13 @@ public partial class Styleable 2130837569, 2130837570}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int CompoundButton_android_button = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int CompoundButton_buttonTint = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int CompoundButton_buttonTintMode = 2; // aapt resource value: { 0x7F020029,0x7F02002A,0x7F020036,0x7F020049,0x7F020066,0x7F020079,0x7F0200BC,0x7F0200D9 } @@ -4379,28 +4379,28 @@ public partial class Styleable 2130837692, 2130837721}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int DrawerArrowToggle_arrowHeadLength = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int DrawerArrowToggle_arrowShaftLength = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int DrawerArrowToggle_barLength = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int DrawerArrowToggle_color = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int DrawerArrowToggle_drawableSize = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int DrawerArrowToggle_gapBetweenBars = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int DrawerArrowToggle_spinBars = 6; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int DrawerArrowToggle_thickness = 7; // aapt resource value: { 0x7F020071,0x7F020072,0x7F020073,0x7F020074,0x7F020075,0x7F020076 } @@ -4421,40 +4421,40 @@ public partial class Styleable 2130837623, 2130837624}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int FontFamilyFont_android_font = 0; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int FontFamilyFont_android_fontStyle = 2; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int FontFamilyFont_android_fontWeight = 1; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int FontFamilyFont_font = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int FontFamilyFont_fontStyle = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int FontFamilyFont_fontWeight = 5; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int FontFamily_fontProviderAuthority = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int FontFamily_fontProviderCerts = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int FontFamily_fontProviderFetchStrategy = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int FontFamily_fontProviderFetchTimeout = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int FontFamily_fontProviderPackage = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int FontFamily_fontProviderQuery = 5; // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F020062,0x7F020064,0x7F020097,0x7F0200B8 } @@ -4469,25 +4469,25 @@ public partial class Styleable 2130837655, 2130837688}; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int LinearLayoutCompat_android_baselineAligned = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int LinearLayoutCompat_android_gravity = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int LinearLayoutCompat_android_orientation = 1; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int LinearLayoutCompat_android_weightSum = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int LinearLayoutCompat_divider = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int LinearLayoutCompat_dividerPadding = 6; // aapt resource value: { 0x10100B3,0x10100F4,0x10100F5,0x1010181 } @@ -4497,22 +4497,22 @@ public partial class Styleable 16842997, 16843137}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int LinearLayoutCompat_Layout_android_layout_height = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int LinearLayoutCompat_Layout_android_layout_weight = 3; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int LinearLayoutCompat_Layout_android_layout_width = 1; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int LinearLayoutCompat_measureWithLargestChild = 7; - // aapt resource value: 0x8 + // aapt resource value: 8 public static int LinearLayoutCompat_showDividers = 8; // aapt resource value: { 0x10102AC,0x10102AD } @@ -4520,10 +4520,10 @@ public partial class Styleable 16843436, 16843437}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int ListPopupWindow_android_dropDownVerticalOffset = 1; // aapt resource value: { 0x101000E,0x10100D0,0x1010194,0x10101DE,0x10101DF,0x10101E0 } @@ -4535,22 +4535,22 @@ public partial class Styleable 16843231, 16843232}; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int MenuGroup_android_checkableBehavior = 5; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int MenuGroup_android_enabled = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int MenuGroup_android_id = 1; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int MenuGroup_android_menuCategory = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int MenuGroup_android_orderInCategory = 4; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int MenuGroup_android_visible = 2; // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F02000D,0x7F02001F,0x7F020020,0x7F020028,0x7F020055,0x7F020080,0x7F020081,0x7F02009C,0x7F0200B7,0x7F0200F0 } @@ -4579,74 +4579,74 @@ public partial class Styleable 2130837687, 2130837744}; - // aapt resource value: 0x13 - public static int MenuItem_actionLayout = 19; + // aapt resource value: 13 + public static int MenuItem_actionLayout = 13; - // aapt resource value: 0x14 - public static int MenuItem_actionProviderClass = 20; + // aapt resource value: 14 + public static int MenuItem_actionProviderClass = 14; - // aapt resource value: 0x15 - public static int MenuItem_actionViewClass = 21; + // aapt resource value: 15 + public static int MenuItem_actionViewClass = 15; - // aapt resource value: 0x16 - public static int MenuItem_alphabeticModifiers = 22; + // aapt resource value: 16 + public static int MenuItem_alphabeticModifiers = 16; - // aapt resource value: 0x9 + // aapt resource value: 9 public static int MenuItem_android_alphabeticShortcut = 9; - // aapt resource value: 0x11 - public static int MenuItem_android_checkable = 17; + // aapt resource value: 11 + public static int MenuItem_android_checkable = 11; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int MenuItem_android_checked = 3; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int MenuItem_android_enabled = 1; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int MenuItem_android_icon = 0; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int MenuItem_android_id = 2; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int MenuItem_android_menuCategory = 5; - // aapt resource value: 0x10 - public static int MenuItem_android_numericShortcut = 16; + // aapt resource value: 10 + public static int MenuItem_android_numericShortcut = 10; - // aapt resource value: 0x12 - public static int MenuItem_android_onClick = 18; + // aapt resource value: 12 + public static int MenuItem_android_onClick = 12; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int MenuItem_android_orderInCategory = 6; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int MenuItem_android_title = 7; - // aapt resource value: 0x8 + // aapt resource value: 8 public static int MenuItem_android_titleCondensed = 8; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int MenuItem_android_visible = 4; - // aapt resource value: 0x17 - public static int MenuItem_contentDescription = 23; + // aapt resource value: 17 + public static int MenuItem_contentDescription = 17; - // aapt resource value: 0x18 - public static int MenuItem_iconTint = 24; + // aapt resource value: 18 + public static int MenuItem_iconTint = 18; - // aapt resource value: 0x19 - public static int MenuItem_iconTintMode = 25; + // aapt resource value: 19 + public static int MenuItem_iconTintMode = 19; - // aapt resource value: 0x20 - public static int MenuItem_numericModifiers = 32; + // aapt resource value: 20 + public static int MenuItem_numericModifiers = 20; - // aapt resource value: 0x21 - public static int MenuItem_showAsAction = 33; + // aapt resource value: 21 + public static int MenuItem_showAsAction = 21; - // aapt resource value: 0x22 - public static int MenuItem_tooltipText = 34; + // aapt resource value: 22 + public static int MenuItem_tooltipText = 22; // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F0200A8,0x7F0200C2 } public static int[] MenuView = new int[] { @@ -4660,31 +4660,31 @@ public partial class Styleable 2130837672, 2130837698}; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int MenuView_android_headerBackground = 4; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int MenuView_android_horizontalDivider = 2; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int MenuView_android_itemBackground = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int MenuView_android_itemIconDisabledAlpha = 6; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int MenuView_android_itemTextAppearance = 1; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int MenuView_android_verticalDivider = 3; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int MenuView_android_windowAnimationStyle = 0; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int MenuView_preserveIconSpacing = 7; - // aapt resource value: 0x8 + // aapt resource value: 8 public static int MenuView_subMenuArrow = 8; // aapt resource value: { 0x1010176,0x10102C9,0x7F02009D } @@ -4697,16 +4697,16 @@ public partial class Styleable public static int[] PopupWindowBackgroundState = new int[] { 2130837697}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int PopupWindowBackgroundState_state_above_anchor = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int PopupWindow_android_popupAnimationStyle = 1; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int PopupWindow_android_popupBackground = 0; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int PopupWindow_overlapAnchor = 2; // aapt resource value: { 0x7F02009E,0x7F0200A1 } @@ -4714,10 +4714,10 @@ public partial class Styleable 2130837662, 2130837665}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int RecycleListView_paddingBottomNoButtons = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int RecycleListView_paddingTopNoTitle = 1; // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F020045,0x7F020054,0x7F02005E,0x7F02007A,0x7F020082,0x7F020088,0x7F0200AB,0x7F0200AC,0x7F0200B1,0x7F0200B2,0x7F0200C3,0x7F0200C8,0x7F0200F4 } @@ -4740,56 +4740,56 @@ public partial class Styleable 2130837704, 2130837748}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int SearchView_android_focusable = 0; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int SearchView_android_imeOptions = 3; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int SearchView_android_inputType = 2; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int SearchView_android_maxWidth = 1; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int SearchView_closeIcon = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int SearchView_commitIcon = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int SearchView_defaultQueryHint = 6; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int SearchView_goIcon = 7; - // aapt resource value: 0x8 + // aapt resource value: 8 public static int SearchView_iconifiedByDefault = 8; - // aapt resource value: 0x9 + // aapt resource value: 9 public static int SearchView_layout = 9; - // aapt resource value: 0x10 - public static int SearchView_queryBackground = 16; + // aapt resource value: 10 + public static int SearchView_queryBackground = 10; - // aapt resource value: 0x11 - public static int SearchView_queryHint = 17; + // aapt resource value: 11 + public static int SearchView_queryHint = 11; - // aapt resource value: 0x12 - public static int SearchView_searchHintIcon = 18; + // aapt resource value: 12 + public static int SearchView_searchHintIcon = 12; - // aapt resource value: 0x13 - public static int SearchView_searchIcon = 19; + // aapt resource value: 13 + public static int SearchView_searchIcon = 13; - // aapt resource value: 0x14 - public static int SearchView_submitBackground = 20; + // aapt resource value: 14 + public static int SearchView_submitBackground = 14; - // aapt resource value: 0x15 - public static int SearchView_suggestionRowLayout = 21; + // aapt resource value: 15 + public static int SearchView_suggestionRowLayout = 15; - // aapt resource value: 0x16 - public static int SearchView_voiceIcon = 22; + // aapt resource value: 16 + public static int SearchView_voiceIcon = 16; // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F0200A6 } public static int[] Spinner = new int[] { @@ -4799,19 +4799,19 @@ public partial class Styleable 16843362, 2130837670}; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int Spinner_android_dropDownWidth = 3; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int Spinner_android_entries = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int Spinner_android_popupBackground = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int Spinner_android_prompt = 2; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int Spinner_popupTheme = 4; // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F0200B9,0x7F0200BF,0x7F0200C9,0x7F0200CA,0x7F0200CC,0x7F0200DA,0x7F0200DB,0x7F0200DC,0x7F0200F1,0x7F0200F2,0x7F0200F3 } @@ -4831,47 +4831,47 @@ public partial class Styleable 2130837746, 2130837747}; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int SwitchCompat_android_textOff = 1; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int SwitchCompat_android_textOn = 0; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int SwitchCompat_android_thumb = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int SwitchCompat_showText = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int SwitchCompat_splitTrack = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int SwitchCompat_switchMinWidth = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int SwitchCompat_switchPadding = 6; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int SwitchCompat_switchTextAppearance = 7; - // aapt resource value: 0x8 + // aapt resource value: 8 public static int SwitchCompat_thumbTextPadding = 8; - // aapt resource value: 0x9 + // aapt resource value: 9 public static int SwitchCompat_thumbTint = 9; - // aapt resource value: 0x10 - public static int SwitchCompat_thumbTintMode = 16; + // aapt resource value: 10 + public static int SwitchCompat_thumbTintMode = 10; - // aapt resource value: 0x11 - public static int SwitchCompat_track = 17; + // aapt resource value: 11 + public static int SwitchCompat_track = 11; - // aapt resource value: 0x12 - public static int SwitchCompat_trackTint = 18; + // aapt resource value: 12 + public static int SwitchCompat_trackTint = 12; - // aapt resource value: 0x13 - public static int SwitchCompat_trackTintMode = 19; + // aapt resource value: 13 + public static int SwitchCompat_trackTintMode = 13; // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x7F020070,0x7F0200CD } public static int[] TextAppearance = new int[] { @@ -4889,44 +4889,44 @@ public partial class Styleable 2130837616, 2130837709}; - // aapt resource value: 0x10 - public static int TextAppearance_android_fontFamily = 16; + // aapt resource value: 10 + public static int TextAppearance_android_fontFamily = 10; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int TextAppearance_android_shadowColor = 6; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int TextAppearance_android_shadowDx = 7; - // aapt resource value: 0x8 + // aapt resource value: 8 public static int TextAppearance_android_shadowDy = 8; - // aapt resource value: 0x9 + // aapt resource value: 9 public static int TextAppearance_android_shadowRadius = 9; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int TextAppearance_android_textColor = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int TextAppearance_android_textColorHint = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int TextAppearance_android_textColorLink = 5; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int TextAppearance_android_textSize = 0; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int TextAppearance_android_textStyle = 2; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int TextAppearance_android_typeface = 1; - // aapt resource value: 0x11 - public static int TextAppearance_fontFamily = 17; + // aapt resource value: 11 + public static int TextAppearance_fontFamily = 11; - // aapt resource value: 0x12 - public static int TextAppearance_textAllCaps = 18; + // aapt resource value: 12 + public static int TextAppearance_textAllCaps = 12; // aapt resource value: { 0x10100AF,0x1010140,0x7F02003D,0x7F020047,0x7F020048,0x7F020056,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F020094,0x7F020095,0x7F020096,0x7F020099,0x7F02009A,0x7F0200A6,0x7F0200C4,0x7F0200C5,0x7F0200C6,0x7F0200E2,0x7F0200E3,0x7F0200E4,0x7F0200E5,0x7F0200E6,0x7F0200E7,0x7F0200E8,0x7F0200E9,0x7F0200EA } public static int[] Toolbar = new int[] { @@ -4960,92 +4960,92 @@ public partial class Styleable 2130837737, 2130837738}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int Toolbar_android_gravity = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int Toolbar_android_minHeight = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int Toolbar_buttonGravity = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int Toolbar_collapseContentDescription = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int Toolbar_collapseIcon = 4; - // aapt resource value: 0x5 + // aapt resource value: 5 public static int Toolbar_contentInsetEnd = 5; - // aapt resource value: 0x6 + // aapt resource value: 6 public static int Toolbar_contentInsetEndWithActions = 6; - // aapt resource value: 0x7 + // aapt resource value: 7 public static int Toolbar_contentInsetLeft = 7; - // aapt resource value: 0x8 + // aapt resource value: 8 public static int Toolbar_contentInsetRight = 8; - // aapt resource value: 0x9 + // aapt resource value: 9 public static int Toolbar_contentInsetStart = 9; - // aapt resource value: 0x10 - public static int Toolbar_contentInsetStartWithNavigation = 16; + // aapt resource value: 10 + public static int Toolbar_contentInsetStartWithNavigation = 10; - // aapt resource value: 0x11 - public static int Toolbar_logo = 17; + // aapt resource value: 11 + public static int Toolbar_logo = 11; - // aapt resource value: 0x12 - public static int Toolbar_logoDescription = 18; + // aapt resource value: 12 + public static int Toolbar_logoDescription = 12; - // aapt resource value: 0x13 - public static int Toolbar_maxButtonHeight = 19; + // aapt resource value: 13 + public static int Toolbar_maxButtonHeight = 13; - // aapt resource value: 0x14 - public static int Toolbar_navigationContentDescription = 20; + // aapt resource value: 14 + public static int Toolbar_navigationContentDescription = 14; - // aapt resource value: 0x15 - public static int Toolbar_navigationIcon = 21; + // aapt resource value: 15 + public static int Toolbar_navigationIcon = 15; - // aapt resource value: 0x16 - public static int Toolbar_popupTheme = 22; + // aapt resource value: 16 + public static int Toolbar_popupTheme = 16; - // aapt resource value: 0x17 - public static int Toolbar_subtitle = 23; + // aapt resource value: 17 + public static int Toolbar_subtitle = 17; - // aapt resource value: 0x18 - public static int Toolbar_subtitleTextAppearance = 24; + // aapt resource value: 18 + public static int Toolbar_subtitleTextAppearance = 18; - // aapt resource value: 0x19 - public static int Toolbar_subtitleTextColor = 25; + // aapt resource value: 19 + public static int Toolbar_subtitleTextColor = 19; - // aapt resource value: 0x20 - public static int Toolbar_title = 32; + // aapt resource value: 20 + public static int Toolbar_title = 20; - // aapt resource value: 0x21 - public static int Toolbar_titleMargin = 33; + // aapt resource value: 21 + public static int Toolbar_titleMargin = 21; - // aapt resource value: 0x22 - public static int Toolbar_titleMarginBottom = 34; + // aapt resource value: 22 + public static int Toolbar_titleMarginBottom = 22; - // aapt resource value: 0x23 - public static int Toolbar_titleMarginEnd = 35; + // aapt resource value: 23 + public static int Toolbar_titleMarginEnd = 23; - // aapt resource value: 0x26 - public static int Toolbar_titleMargins = 38; + // aapt resource value: 26 + public static int Toolbar_titleMargins = 26; - // aapt resource value: 0x24 - public static int Toolbar_titleMarginStart = 36; + // aapt resource value: 24 + public static int Toolbar_titleMarginStart = 24; - // aapt resource value: 0x25 - public static int Toolbar_titleMarginTop = 37; + // aapt resource value: 25 + public static int Toolbar_titleMarginTop = 25; - // aapt resource value: 0x27 - public static int Toolbar_titleTextAppearance = 39; + // aapt resource value: 27 + public static int Toolbar_titleTextAppearance = 27; - // aapt resource value: 0x28 - public static int Toolbar_titleTextColor = 40; + // aapt resource value: 28 + public static int Toolbar_titleTextColor = 28; // aapt resource value: { 0x1010000,0x10100DA,0x7F02009F,0x7F0200A0,0x7F0200D8 } public static int[] View = new int[] { @@ -5061,13 +5061,13 @@ public partial class Styleable 2130837556, 2130837557}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ViewBackgroundHelper_android_background = 0; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int ViewBackgroundHelper_backgroundTint = 1; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int ViewBackgroundHelper_backgroundTintMode = 2; // aapt resource value: { 0x10100D0,0x10100F2,0x10100F3 } @@ -5076,28 +5076,28 @@ public partial class Styleable 16842994, 16842995}; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int ViewStubCompat_android_id = 0; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int ViewStubCompat_android_inflatedId = 2; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int ViewStubCompat_android_layout = 1; - // aapt resource value: 0x1 + // aapt resource value: 1 public static int View_android_focusable = 1; - // aapt resource value: 0x0 + // aapt resource value: 0 public static int View_android_theme = 0; - // aapt resource value: 0x2 + // aapt resource value: 2 public static int View_paddingEnd = 2; - // aapt resource value: 0x3 + // aapt resource value: 3 public static int View_paddingStart = 3; - // aapt resource value: 0x4 + // aapt resource value: 4 public static int View_theme = 4; static Styleable() diff --git a/Source/ReactiveProperty.Platform.NET46/AssemblyInfo.cs b/Source/ReactiveProperty.Platform.NET46/AssemblyInfo.cs new file mode 100644 index 00000000..1663c8fc --- /dev/null +++ b/Source/ReactiveProperty.Platform.NET46/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("ReactiveProperty.NET46")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ReactiveProperty")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("91648038-aa41-4a00-a13b-b276e851cd02")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion(Reactive.Bindings.Version.Number)] +[assembly: AssemblyFileVersion(Reactive.Bindings.Version.Number)] diff --git a/Source/ReactiveProperty.Platform.NET46/ReactiveProperty.Platform.NET46.csproj b/Source/ReactiveProperty.Platform.NET46/ReactiveProperty.Platform.NET46.csproj index 210ac433..f1a9f5b6 100644 --- a/Source/ReactiveProperty.Platform.NET46/ReactiveProperty.Platform.NET46.csproj +++ b/Source/ReactiveProperty.Platform.NET46/ReactiveProperty.Platform.NET46.csproj @@ -8,6 +8,7 @@ true key.snk True + false ..\..\Binary diff --git a/Source/ReactiveProperty.Platform.NetCore/AssemblyInfo.cs b/Source/ReactiveProperty.Platform.NetCore/AssemblyInfo.cs new file mode 100644 index 00000000..dc22893a --- /dev/null +++ b/Source/ReactiveProperty.Platform.NetCore/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("ReactiveProperty.NETCore")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ReactiveProperty")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("91648038-aa41-4a00-a13b-b276e851cd02")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion(Reactive.Bindings.Version.Number)] +[assembly: AssemblyFileVersion(Reactive.Bindings.Version.Number)] diff --git a/Source/ReactiveProperty.Platform.NetCore/ReactiveProperty.Platform.NetCore.csproj b/Source/ReactiveProperty.Platform.NetCore/ReactiveProperty.Platform.NetCore.csproj index f7e2b2f2..5067e444 100644 --- a/Source/ReactiveProperty.Platform.NetCore/ReactiveProperty.Platform.NetCore.csproj +++ b/Source/ReactiveProperty.Platform.NetCore/ReactiveProperty.Platform.NetCore.csproj @@ -5,6 +5,7 @@ ReactiveProperty.NETCore Reactive.Bindings true + false diff --git a/Source/ReactiveProperty.Platform.Shared/ReactiveProperty.Platform.Shared.projitems b/Source/ReactiveProperty.Platform.Shared/ReactiveProperty.Platform.Shared.projitems index 1950ed58..82a5469b 100644 --- a/Source/ReactiveProperty.Platform.Shared/ReactiveProperty.Platform.Shared.projitems +++ b/Source/ReactiveProperty.Platform.Shared/ReactiveProperty.Platform.Shared.projitems @@ -6,12 +6,13 @@ 523e5506-24df-44ca-83cc-6aa02454f150 - ReactiveProperty + Reactive.Bindings + \ No newline at end of file diff --git a/Source/ReactiveProperty.Platform.Shared/Version.cs b/Source/ReactiveProperty.Platform.Shared/Version.cs new file mode 100644 index 00000000..60b7b415 --- /dev/null +++ b/Source/ReactiveProperty.Platform.Shared/Version.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Reactive.Bindings +{ + internal static class Version + { + public const string Number = "6.1.3"; + } +} diff --git a/Source/ReactiveProperty.Platform.UWP/Properties/AssemblyInfo.cs b/Source/ReactiveProperty.Platform.UWP/Properties/AssemblyInfo.cs index af03b807..c234f436 100644 --- a/Source/ReactiveProperty.Platform.UWP/Properties/AssemblyInfo.cs +++ b/Source/ReactiveProperty.Platform.UWP/Properties/AssemblyInfo.cs @@ -24,6 +24,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.5.*")] -[assembly: AssemblyFileVersion("5.5.0.0")] +[assembly: AssemblyVersion(Reactive.Bindings.Version.Number)] +[assembly: AssemblyFileVersion(Reactive.Bindings.Version.Number)] [assembly: ComVisible(false)] diff --git a/Source/ReactiveProperty.Platform.iOS/Properties/AssemblyInfo.cs b/Source/ReactiveProperty.Platform.iOS/Properties/AssemblyInfo.cs index d104874b..d8e2f6d3 100644 --- a/Source/ReactiveProperty.Platform.iOS/Properties/AssemblyInfo.cs +++ b/Source/ReactiveProperty.Platform.iOS/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.5.*")] -[assembly: AssemblyFileVersion("5.5.0.0")] +[assembly: AssemblyVersion(Reactive.Bindings.Version.Number)] +[assembly: AssemblyFileVersion(Reactive.Bindings.Version.Number)] diff --git a/Source/ReactiveProperty.Platform.iOS/ReactiveProperty.Platform.iOS.csproj b/Source/ReactiveProperty.Platform.iOS/ReactiveProperty.Platform.iOS.csproj index 163071f4..e1c6b04e 100644 --- a/Source/ReactiveProperty.Platform.iOS/ReactiveProperty.Platform.iOS.csproj +++ b/Source/ReactiveProperty.Platform.iOS/ReactiveProperty.Platform.iOS.csproj @@ -51,6 +51,9 @@ + + Version.cs +