diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 179b8bf8b..80d1d7934 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,15 @@ # Pickles Release Notes +## v1.1.0 - 2015-05-12 + +### New Feature + +- In both the DHtml and Html versions: Align scenario keywords to the right side so that step texts start from the same position ([#195](https://github.com/picklesdoc/pickles/issues/195)) + +### Bugs Fixed + +- Abbreviations displayed incorrectly with spaces between letters ([#192](https://github.com/picklesdoc/pickles/issues/192)) + ## v1.0.1 - 2015-03-31 ### Bugs Fixed diff --git a/build.bat b/build.bat index 69637bac0..bf4021287 100644 --- a/build.bat +++ b/build.bat @@ -1,5 +1,5 @@ @echo off -set "picklesVersion=1.0.1" +set "picklesVersion=1.1.0" cls diff --git a/src/Pickles/.nuget/packages.config b/src/Pickles/.nuget/packages.config index 48d238c4d..bef239352 100644 --- a/src/Pickles/.nuget/packages.config +++ b/src/Pickles/.nuget/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/src/Pickles/Pickles.BaseDhtmlFiles/css/styles.css b/src/Pickles/Pickles.BaseDhtmlFiles/css/styles.css index 2b9cb48f5..9f5cced28 100644 --- a/src/Pickles/Pickles.BaseDhtmlFiles/css/styles.css +++ b/src/Pickles/Pickles.BaseDhtmlFiles/css/styles.css @@ -39,6 +39,10 @@ li.step { .keyword { font-weight: bold; color: #0000FF; + float: left; + width: 40px; + text-align: right; + margin-right: 4px; } .steps table { diff --git a/src/Pickles/Pickles.BaseDhtmlFiles/js/stringFormatting.js b/src/Pickles/Pickles.BaseDhtmlFiles/js/stringFormatting.js index 8a641be6e..da4267467 100644 --- a/src/Pickles/Pickles.BaseDhtmlFiles/js/stringFormatting.js +++ b/src/Pickles/Pickles.BaseDhtmlFiles/js/stringFormatting.js @@ -2,12 +2,28 @@ // IE does not implement trim() and the following replaces the functionality if unavailable // http://stackoverflow.com/questions/2308134/trim-in-javascript-not-working-in-ie if (typeof String.prototype.trim !== 'function') { - String.prototype.trim = function() { + String.prototype.trim = function () { return this.replace(/^\s+|\s+$/g, ''); } } - - return unformattedString.replace(/([A-Z])/g, " $1").trim(); + + var formattedString = ''; + var i = 0; + while (i <= unformattedString.length) { + var ch = unformattedString.charAt(i); + var nextChar = unformattedString.charAt(i + 1); + + if (ch == ch.toLowerCase() && nextChar == nextChar.toUpperCase()) { + formattedString = formattedString.trim() + ch + ' '; + } else if (ch == ch.toUpperCase() && nextChar == nextChar.toLowerCase() && nextChar != nextChar.toUpperCase() && nextChar != '') { + formattedString = formattedString.trim() + ' ' + ch; + } else { + formattedString += ch; + } + i++; + } + + return formattedString.trim(); } function removeBeginningHash(hashedString) { diff --git a/src/Pickles/Pickles.BaseDhtmlFiles/tests/tests.js b/src/Pickles/Pickles.BaseDhtmlFiles/tests/tests.js index 9f122e406..2ba200bc5 100644 --- a/src/Pickles/Pickles.BaseDhtmlFiles/tests/tests.js +++ b/src/Pickles/Pickles.BaseDhtmlFiles/tests/tests.js @@ -1,7 +1,10 @@ test("Can convert camel cased string to spaced string", function () { equal(addSpacesToCamelCasedString("ThisIsATestString"), "This Is A Test String", "Happy path test"); equal(addSpacesToCamelCasedString("00ThisIsATestString"), "00 This Is A Test String", "String prefaced by numbers"); - equal(addSpacesToCamelCasedString("ThisIsATestString."), "This Is A Test String.", "String ending with puncuation."); + equal(addSpacesToCamelCasedString("ThisIsATestString."), "This Is A Test String.", "String ending with punctuation."); + equal(addSpacesToCamelCasedString("ThisIsATestStringABC"), "This Is A Test String ABC", "String with abbreviation at the end"); + equal(addSpacesToCamelCasedString("ThisIsATestStringABC."), "This Is A Test String ABC.", "String with abbreviation and punctuation"); + equal(addSpacesToCamelCasedString("ABCThisIsATestString"), "ABC This Is A Test String", "String with abbreviation at the beginning"); }); test("Can pull off # from hashtag", function() { diff --git a/src/Pickles/Pickles.CommandLine/Pickles.CommandLine.csproj b/src/Pickles/Pickles.CommandLine/Pickles.CommandLine.csproj index 31d3ef709..28e9ee739 100644 --- a/src/Pickles/Pickles.CommandLine/Pickles.CommandLine.csproj +++ b/src/Pickles/Pickles.CommandLine/Pickles.CommandLine.csproj @@ -13,7 +13,7 @@ v3.5 512 ..\..\Pickles\ - 05ed768b + 0fb86cb5 AnyCPU @@ -47,8 +47,9 @@ ..\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll - - ..\packages\NLog.3.2.0.0\lib\net35\NLog.dll + + ..\packages\NLog.3.2.1\lib\net35\NLog.dll + True @@ -123,12 +124,12 @@ foreach (var item in filesToCleanup) - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - + diff --git a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net40/MahApps.Metro.dll b/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net40/MahApps.Metro.dll deleted file mode 100644 index 485dcde95..000000000 Binary files a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net40/MahApps.Metro.dll and /dev/null differ diff --git a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net45/MahApps.Metro.dll b/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net45/MahApps.Metro.dll deleted file mode 100644 index 90fb35465..000000000 Binary files a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net45/MahApps.Metro.dll and /dev/null differ diff --git a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net45/MahApps.Metro.XML b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net40/MahApps.Metro.XML similarity index 97% rename from src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net45/MahApps.Metro.XML rename to src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net40/MahApps.Metro.XML index e7d5c5bd9..562bd842d 100644 --- a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net45/MahApps.Metro.XML +++ b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net40/MahApps.Metro.XML @@ -31,31 +31,11 @@ Gets/sets the name of the Accent. - - - Represents the background theme of the application. - - - - - The ResourceDictionary that represents this application theme. - - - - - Gets the name of the application theme. - - With this class we can make custom window styles. - - - This method handles the window size if the taskbar is set to auto-hide. - - Updates all glow windows (visible, hidden, collapsed) @@ -76,61 +56,6 @@ Shows all glow windows - - - - Sets the first TabItem with Visibility="" as - the SelectedItem of the TabControl. - - - If there is no visible TabItem, null is set as the SelectedItem - - - - - - Overrides the text case behavior for certain buttons. - When set to true, the text case will be preserved and won't be changed to upper or lower case. - - - - - A helper class that provides various attached properties for the ComboBox control. - - - - - - A helper class that provides various controls. - - - - - This property can be used to set the button width (PART_ClearText) of TextBox, PasswordBox, ComboBox - For multiline TextBox, PasswordBox is this the fallback for the clear text button! so it must set manually! - For normal TextBox, PasswordBox the width is the height. - - - - - Sets the brush used to draw the focus border. - - - - - Gets the brush used to draw the focus border. - - - - - Sets the brush used to draw the mouse over brush. - - - - - Gets the brush used to draw the mouse over brush. - - This custom popup is used by the validation error template. @@ -241,14 +166,14 @@ Gets/sets the default text( just the inputdialog needed) - + - An enum representing the different choices for a color scheme in a Metro Dialog. + Gets/sets the maximum height. (Default is unlimited height, Double.NaN) - + - An implementation of BaseMetroDialog allowing arbitrary content. + An enum representing the different choices for a color scheme in a Metro Dialog. @@ -301,6 +226,7 @@ The owning window of the dialog. The dialog instance itself. + An optional pre-defined settings instance. A task representing the operation. The is already visible in the window. @@ -310,12 +236,19 @@ The window with the dialog that is visible. The dialog instance to hide. + An optional pre-defined settings instance. A task representing the operation. The is not visible in the window. This happens if hasn't been called before. + + + Gets the current shown dialog. + + The dialog owner. + InputDialog @@ -336,39 +269,6 @@ InitializeComponent - - - An internal control that represents a message dialog. Please use MetroWindow.ShowMessage instead! - - - MessageDialog - - - - - InitializeComponent - - - - - An enum representing the result of a Message Dialog. - - - - - An enum representing the different button states for a Message Dialog. - - - - - Just "OK" - - - - - "OK" and "Cancel" - - An internal control that represents a message dialog. Please use MetroWindow.ShowMessage instead! @@ -432,6 +332,11 @@ Gets if the Cancel button has been pressed. + + + An implementation of BaseMetroDialog allowing arbitrary content. + + A control that imitate a slideshow with back/forward buttons. @@ -555,6 +460,16 @@ Gets or sets the theme of this flyout. + + + Gets or sets the focused element. + + + + + Gets or sets a value indicating whether the flyout should try focus an element. + + A FlyoutsControl is for displaying flyouts in a MetroWindow. @@ -603,6 +518,96 @@ InitializeComponent + + + An internal control that represents a message dialog. Please use MetroWindow.ShowMessage instead! + + + MessageDialog + + + + + InitializeComponent + + + + + An enum representing the result of a Message Dialog. + + + + + An enum representing the different button states for a Message Dialog. + + + + + Just "OK" + + + + + "OK" and "Cancel" + + + + + Overrides the text case behavior for certain buttons. + When set to true, the text case will be preserved and won't be changed to upper or lower case. + + + + + DependencyProperty for property. + + + + + The CornerRadius property allows users to control the roundness of the button corners independently by + setting a radius value for each corner. Radius values that are too large are scaled so that they + smoothly blend from corner to corner. (Can be used e.g. at MetroButton style) + Description taken from original Microsoft description :-D + + + + + A helper class that provides various attached properties for the ComboBox control. + + + + + + A helper class that provides various controls. + + + + + This property can be used to set the button width (PART_ClearText) of TextBox, PasswordBox, ComboBox + For multiline TextBox, PasswordBox is this the fallback for the clear text button! so it must set manually! + For normal TextBox, PasswordBox the width is the height. + + + + + Sets the brush used to draw the focus border. + + + + + Gets the brush used to draw the focus border. + + + + + Sets the brush used to draw the mouse over brush. + + + + + Gets the brush used to draw the mouse over brush. + + Save the DataGrid. @@ -613,6 +618,66 @@ Get the DataGrid. + + + This property can be used to set vertical scrollbar left side from the tabpanel (look at MetroAnimatedSingleRowTabControl) + + + + + Defines whether the underline below the is shown or not. + + + + + This property can be used to set the Transition for animated TabControls + + + + + A helper class that provides various attached properties for the TextBox control. + + + Password watermarking code from: http://prabu-guru.blogspot.com/2010/06/how-to-add-watermark-text-to-textbox.html + + + + + The clear text button behavior property. It sets a click event to the button if the value is true. + + + + + Indicates if a TextBox or RichTextBox should use SpellCheck context menu + + + + + Gets if the attached TextBox has text. + + + + + Gets the clear text button behavior. + + + + + Sets the clear text button behavior. + + + + + This property can be used to handle the style for CheckBox and RadioButton + LeftToRight means content left and button right and RightToLeft vise versa + + + + + This property can be used to handle the style for CheckBox and RadioButton + LeftToRight means content left and button right and RightToLeft vise versa + + A MetroTabControl (Pivot) that wraps TabItem/MetroTabItem headers on a single row. @@ -672,6 +737,11 @@ An extended, metrofied Window class. + + + Gets the window placement settings (can be overwritten). + + Begins to show the MetroWindow's overlay effect. @@ -794,6 +864,21 @@ Gets/sets if the close button is visible. + + + Gets/sets if the min button is enabled. + + + + + Gets/sets if the max/restore button is enabled. + + + + + Gets/sets if the close button is enabled. + + Gets/sets if the the system menu should popup on right click. @@ -1193,36 +1278,14 @@ - - - This property can be used to set vertical scrollbar left side from the tabpanel (look at MetroAnimatedSingleRowTabControl) - - <MyNamespace:CustomControl1/> - - - Defines whether the underline below the is shown or not. - - - + - This property can be used to set the Transition for animated TabControls - - - - - This property can be used to handle the style for CheckBox and RadioButton - LeftToRight means content left and button right and RightToLeft vise versa - - - - - This property can be used to handle the style for CheckBox and RadioButton - LeftToRight means content left and button right and RightToLeft vise versa + Gets or sets the value indicating whether to show the separators. @@ -1362,24 +1425,6 @@ Get/sets the minimum range that can be selected. - - - A helper class that provides various attached properties for the TextBox control. - - - Password watermarking code from: http://prabu-guru.blogspot.com/2010/06/how-to-add-watermark-text-to-textbox.html - - - - - Indicates if a TextBox or RichTextBox should use SpellCheck context menu - - - - - Gets if the attached TextBox has text. - - A Button that allows the user to toggle between two states. @@ -2556,6 +2601,11 @@ Height of bottom border that retains its size. + + + initialize this field using: Marshal.SizeOf(typeof(APPBARDATA)); + + Delegate declaration that matches native WndProc signatures. @@ -3303,6 +3353,11 @@ Object that describes the current modifications being made to the chrome. + + + This method handles the window size if the taskbar is set to auto-hide. + + Add and remove a native WindowStyle from the HWND. The styles to be removed. These can be bitwise combined. @@ -3345,6 +3400,9 @@ when handling WM_NCCALCSIZE on the HWND. + + A borderless window lost his animation, with this we bring it back. + Windows Messages @@ -4685,11 +4743,36 @@ Specifies that a window has a border with a raised edge. + + + Refreshes the application settings property values from persistent storage. + + + + + Updates application settings to reflect a more recent installation of the application. + + + + + Stores the current values of the settings properties. + + + + + Upgrades the application settings on loading. + + this settings class is the default way to save the placement of the window + + + Upgrades the application settings on loading. + + Hides the window and activates another window. @@ -4750,6 +4833,46 @@ Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when restoring a minimized window. + + + Invalidates the rectangle or region that you specify in lprcUpdate or hrgnUpdate. + You can set only one of these parameters to a non-NULL value. If both are NULL, RDW_INVALIDATE invalidates the entire window. + + + + Causes the OS to post a WM_PAINT message to the window regardless of whether a portion of the window is invalid. + + + + Causes the window to receive a WM_ERASEBKGND message when the window is repainted. + Specify this value in combination with the RDW_INVALIDATE value; otherwise, RDW_ERASE has no effect. + + + + + Validates the rectangle or region that you specify in lprcUpdate or hrgnUpdate. + You can set only one of these parameters to a non-NULL value. If both are NULL, RDW_VALIDATE validates the entire window. + This value does not affect internal WM_PAINT messages. + + + + Suppresses any pending WM_ERASEBKGND messages. + + + Excludes child windows, if any, from the repainting operation. + + + Includes child windows, if any, in the repainting operation. + + + Causes the affected windows, which you specify by setting the RDW_ALLCHILDREN and RDW_NOCHILDREN values, to receive WM_ERASEBKGND and WM_PAINT messages before the RedrawWindow returns, if necessary. + + + + Causes the affected windows, which you specify by setting the RDW_ALLCHILDREN and RDW_NOCHILDREN values, to receive WM_ERASEBKGND messages before RedrawWindow returns, if necessary. + The affected windows receive WM_PAINT messages at the ordinary time. + + Determine if 2 RECT are equal (deep compare) @@ -4910,6 +5033,21 @@ http://msdn.microsoft.com/en-us/library/windows/desktop/ms647636(v=vs.85).aspx + + + Represents the background theme of the application. + + + + + The ResourceDictionary that represents this application theme. + + + + + Gets the name of the application theme. + + A class that allows for the detection and alteration of a MetroWindow's theme and accent. diff --git a/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net40/MahApps.Metro.dll b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net40/MahApps.Metro.dll new file mode 100644 index 000000000..fdcf3feac Binary files /dev/null and b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net40/MahApps.Metro.dll differ diff --git a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net40/System.Windows.Interactivity.dll b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net40/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net40/System.Windows.Interactivity.dll rename to src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net40/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net40/MahApps.Metro.XML b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net45/MahApps.Metro.XML similarity index 96% rename from src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net40/MahApps.Metro.XML rename to src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net45/MahApps.Metro.XML index 77c6b3f32..1ced95b11 100644 --- a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net40/MahApps.Metro.XML +++ b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net45/MahApps.Metro.XML @@ -31,14 +31,24 @@ Gets/sets the name of the Accent. - + - With this class we can make custom window styles. + Represents the background theme of the application. - + - This method handles the window size if the taskbar is set to auto-hide. + The ResourceDictionary that represents this application theme. + + + + + Gets the name of the application theme. + + + + + With this class we can make custom window styles. @@ -61,6 +71,74 @@ Shows all glow windows + + + + Sets the first TabItem with Visibility="" as + the SelectedItem of the TabControl. + + + If there is no visible TabItem, null is set as the SelectedItem + + + + + + Overrides the text case behavior for certain buttons. + When set to true, the text case will be preserved and won't be changed to upper or lower case. + + + + + DependencyProperty for property. + + + + + The CornerRadius property allows users to control the roundness of the button corners independently by + setting a radius value for each corner. Radius values that are too large are scaled so that they + smoothly blend from corner to corner. (Can be used e.g. at MetroButton style) + Description taken from original Microsoft description :-D + + + + + A helper class that provides various attached properties for the ComboBox control. + + + + + + A helper class that provides various controls. + + + + + This property can be used to set the button width (PART_ClearText) of TextBox, PasswordBox, ComboBox + For multiline TextBox, PasswordBox is this the fallback for the clear text button! so it must set manually! + For normal TextBox, PasswordBox the width is the height. + + + + + Sets the brush used to draw the focus border. + + + + + Gets the brush used to draw the focus border. + + + + + Sets the brush used to draw the mouse over brush. + + + + + Gets the brush used to draw the mouse over brush. + + This custom popup is used by the validation error template. @@ -171,11 +249,21 @@ Gets/sets the default text( just the inputdialog needed) + + + Gets/sets the maximum height. (Default is unlimited height, Double.NaN) + + An enum representing the different choices for a color scheme in a Metro Dialog. + + + An implementation of BaseMetroDialog allowing arbitrary content. + + Creates a LoginDialog inside of the current window. @@ -226,6 +314,7 @@ The owning window of the dialog. The dialog instance itself. + An optional pre-defined settings instance. A task representing the operation. The is already visible in the window. @@ -235,12 +324,19 @@ The window with the dialog that is visible. The dialog instance to hide. + An optional pre-defined settings instance. A task representing the operation. The is not visible in the window. This happens if hasn't been called before. + + + Gets the current shown dialog. + + The dialog owner. + InputDialog @@ -261,6 +357,39 @@ InitializeComponent + + + An internal control that represents a message dialog. Please use MetroWindow.ShowMessage instead! + + + MessageDialog + + + + + InitializeComponent + + + + + An enum representing the result of a Message Dialog. + + + + + An enum representing the different button states for a Message Dialog. + + + + + Just "OK" + + + + + "OK" and "Cancel" + + An internal control that represents a message dialog. Please use MetroWindow.ShowMessage instead! @@ -324,11 +453,6 @@ Gets if the Cancel button has been pressed. - - - An implementation of BaseMetroDialog allowing arbitrary content. - - A control that imitate a slideshow with back/forward buttons. @@ -452,6 +576,16 @@ Gets or sets the theme of this flyout. + + + Gets or sets the focused element. + + + + + Gets or sets a value indicating whether the flyout should try focus an element. + + A FlyoutsControl is for displaying flyouts in a MetroWindow. @@ -500,83 +634,6 @@ InitializeComponent - - - An internal control that represents a message dialog. Please use MetroWindow.ShowMessage instead! - - - MessageDialog - - - - - InitializeComponent - - - - - An enum representing the result of a Message Dialog. - - - - - An enum representing the different button states for a Message Dialog. - - - - - Just "OK" - - - - - "OK" and "Cancel" - - - - - Overrides the text case behavior for certain buttons. - When set to true, the text case will be preserved and won't be changed to upper or lower case. - - - - - A helper class that provides various attached properties for the ComboBox control. - - - - - - A helper class that provides various controls. - - - - - This property can be used to set the button width (PART_ClearText) of TextBox, PasswordBox, ComboBox - For multiline TextBox, PasswordBox is this the fallback for the clear text button! so it must set manually! - For normal TextBox, PasswordBox the width is the height. - - - - - Sets the brush used to draw the focus border. - - - - - Gets the brush used to draw the focus border. - - - - - Sets the brush used to draw the mouse over brush. - - - - - Gets the brush used to draw the mouse over brush. - - Save the DataGrid. @@ -587,51 +644,6 @@ Get the DataGrid. - - - This property can be used to set vertical scrollbar left side from the tabpanel (look at MetroAnimatedSingleRowTabControl) - - - - - Defines whether the underline below the is shown or not. - - - - - This property can be used to set the Transition for animated TabControls - - - - - A helper class that provides various attached properties for the TextBox control. - - - Password watermarking code from: http://prabu-guru.blogspot.com/2010/06/how-to-add-watermark-text-to-textbox.html - - - - - Indicates if a TextBox or RichTextBox should use SpellCheck context menu - - - - - Gets if the attached TextBox has text. - - - - - This property can be used to handle the style for CheckBox and RadioButton - LeftToRight means content left and button right and RightToLeft vise versa - - - - - This property can be used to handle the style for CheckBox and RadioButton - LeftToRight means content left and button right and RightToLeft vise versa - - A MetroTabControl (Pivot) that wraps TabItem/MetroTabItem headers on a single row. @@ -691,6 +703,11 @@ An extended, metrofied Window class. + + + Gets the window placement settings (can be overwritten). + + Begins to show the MetroWindow's overlay effect. @@ -813,6 +830,21 @@ Gets/sets if the close button is visible. + + + Gets/sets if the min button is enabled. + + + + + Gets/sets if the max/restore button is enabled. + + + + + Gets/sets if the close button is enabled. + + Gets/sets if the the system menu should popup on right click. @@ -1212,11 +1244,38 @@ + + + This property can be used to set vertical scrollbar left side from the tabpanel (look at MetroAnimatedSingleRowTabControl) + + <MyNamespace:CustomControl1/> + + + Defines whether the underline below the is shown or not. + + + + + This property can be used to set the Transition for animated TabControls + + + + + This property can be used to handle the style for CheckBox and RadioButton + LeftToRight means content left and button right and RightToLeft vise versa + + + + + This property can be used to handle the style for CheckBox and RadioButton + LeftToRight means content left and button right and RightToLeft vise versa + + Doesn't overlay flyouts nor a hidden TitleBar. @@ -1354,6 +1413,39 @@ Get/sets the minimum range that can be selected. + + + A helper class that provides various attached properties for the TextBox control. + + + Password watermarking code from: http://prabu-guru.blogspot.com/2010/06/how-to-add-watermark-text-to-textbox.html + + + + + The clear text button behavior property. It sets a click event to the button if the value is true. + + + + + Indicates if a TextBox or RichTextBox should use SpellCheck context menu + + + + + Gets if the attached TextBox has text. + + + + + Gets the clear text button behavior. + + + + + Sets the clear text button behavior. + + A Button that allows the user to toggle between two states. @@ -1507,6 +1599,11 @@ hit testing. The position to be evaluated on the origin. + + + Gets or sets the value indicating whether to show the separators. + + IID_IApplicationAssociationRegistration @@ -2530,6 +2627,11 @@ Height of bottom border that retains its size. + + + initialize this field using: Marshal.SizeOf(typeof(APPBARDATA)); + + Delegate declaration that matches native WndProc signatures. @@ -3277,6 +3379,11 @@ Object that describes the current modifications being made to the chrome. + + + This method handles the window size if the taskbar is set to auto-hide. + + Add and remove a native WindowStyle from the HWND. The styles to be removed. These can be bitwise combined. @@ -3319,6 +3426,9 @@ when handling WM_NCCALCSIZE on the HWND. + + A borderless window lost his animation, with this we bring it back. + Windows Messages @@ -4659,11 +4769,36 @@ Specifies that a window has a border with a raised edge. + + + Refreshes the application settings property values from persistent storage. + + + + + Updates application settings to reflect a more recent installation of the application. + + + + + Stores the current values of the settings properties. + + + + + Upgrades the application settings on loading. + + this settings class is the default way to save the placement of the window + + + Upgrades the application settings on loading. + + Hides the window and activates another window. @@ -4724,6 +4859,46 @@ Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when restoring a minimized window. + + + Invalidates the rectangle or region that you specify in lprcUpdate or hrgnUpdate. + You can set only one of these parameters to a non-NULL value. If both are NULL, RDW_INVALIDATE invalidates the entire window. + + + + Causes the OS to post a WM_PAINT message to the window regardless of whether a portion of the window is invalid. + + + + Causes the window to receive a WM_ERASEBKGND message when the window is repainted. + Specify this value in combination with the RDW_INVALIDATE value; otherwise, RDW_ERASE has no effect. + + + + + Validates the rectangle or region that you specify in lprcUpdate or hrgnUpdate. + You can set only one of these parameters to a non-NULL value. If both are NULL, RDW_VALIDATE validates the entire window. + This value does not affect internal WM_PAINT messages. + + + + Suppresses any pending WM_ERASEBKGND messages. + + + Excludes child windows, if any, from the repainting operation. + + + Includes child windows, if any, in the repainting operation. + + + Causes the affected windows, which you specify by setting the RDW_ALLCHILDREN and RDW_NOCHILDREN values, to receive WM_ERASEBKGND and WM_PAINT messages before the RedrawWindow returns, if necessary. + + + + Causes the affected windows, which you specify by setting the RDW_ALLCHILDREN and RDW_NOCHILDREN values, to receive WM_ERASEBKGND messages before RedrawWindow returns, if necessary. + The affected windows receive WM_PAINT messages at the ordinary time. + + Determine if 2 RECT are equal (deep compare) @@ -4884,21 +5059,6 @@ http://msdn.microsoft.com/en-us/library/windows/desktop/ms647636(v=vs.85).aspx - - - Represents the background theme of the application. - - - - - The ResourceDictionary that represents this application theme. - - - - - Gets the name of the application theme. - - A class that allows for the detection and alteration of a MetroWindow's theme and accent. diff --git a/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net45/MahApps.Metro.dll b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net45/MahApps.Metro.dll new file mode 100644 index 000000000..c71adf922 Binary files /dev/null and b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net45/MahApps.Metro.dll differ diff --git a/src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net45/System.Windows.Interactivity.dll b/src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net45/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MahApps.Metro.1.0.0.0/lib/net45/System.Windows.Interactivity.dll rename to src/Pickles/packages/MahApps.Metro.1.1.2.0/lib/net45/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MahApps.Metro.1.0.0.0/tools/install.ps1 b/src/Pickles/packages/MahApps.Metro.1.1.2.0/tools/install.ps1 similarity index 100% rename from src/Pickles/packages/MahApps.Metro.1.0.0.0/tools/install.ps1 rename to src/Pickles/packages/MahApps.Metro.1.1.2.0/tools/install.ps1 diff --git a/src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/MainViewModel.cs.pp b/src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/MainViewModel.cs.pp deleted file mode 100644 index dbe3b33df..000000000 --- a/src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/MainViewModel.cs.pp +++ /dev/null @@ -1,34 +0,0 @@ -using GalaSoft.MvvmLight; - -namespace $rootnamespace$.ViewModel -{ - /// - /// This class contains properties that the main View can data bind to. - /// - /// Use the mvvminpc snippet to add bindable properties to this ViewModel. - /// - /// - /// You can also use Blend to data bind with the tool's support. - /// - /// - /// See http://www.galasoft.ch/mvvm - /// - /// - public class MainViewModel : ViewModelBase - { - /// - /// Initializes a new instance of the MainViewModel class. - /// - public MainViewModel() - { - ////if (IsInDesignMode) - ////{ - //// // Code runs in Blend --> create design time data. - ////} - ////else - ////{ - //// // Code runs "for real" - ////} - } - } -} \ No newline at end of file diff --git a/src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/ViewModelLocator.cs.pp b/src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/ViewModelLocator.cs.pp deleted file mode 100644 index fce392386..000000000 --- a/src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/ViewModelLocator.cs.pp +++ /dev/null @@ -1,61 +0,0 @@ -/* - In App.xaml: - - - - - In the View: - DataContext="{Binding Source={StaticResource Locator}, Path=ViewModelName}" - - You can also use Blend to do all this with the tool's support. - See http://www.galasoft.ch/mvvm -*/ - -using GalaSoft.MvvmLight; -using GalaSoft.MvvmLight.Ioc; -using Microsoft.Practices.ServiceLocation; - -namespace $rootnamespace$.ViewModel -{ - /// - /// This class contains static references to all the view models in the - /// application and provides an entry point for the bindings. - /// - public class ViewModelLocator - { - /// - /// Initializes a new instance of the ViewModelLocator class. - /// - public ViewModelLocator() - { - ServiceLocator.SetLocatorProvider(() => SimpleIoc.Default); - - ////if (ViewModelBase.IsInDesignModeStatic) - ////{ - //// // Create design time view services and models - //// SimpleIoc.Default.Register(); - ////} - ////else - ////{ - //// // Create run time view services and models - //// SimpleIoc.Default.Register(); - ////} - - SimpleIoc.Default.Register(); - } - - public MainViewModel Main - { - get - { - return ServiceLocator.Current.GetInstance(); - } - } - - public static void Cleanup() - { - // TODO Clear the ViewModels - } - } -} \ No newline at end of file diff --git a/src/Pickles/packages/MvvmLight.5.1.0.0/tools/install.ps1 b/src/Pickles/packages/MvvmLight.5.1.0.0/tools/install.ps1 deleted file mode 100644 index 03f29bd90..000000000 --- a/src/Pickles/packages/MvvmLight.5.1.0.0/tools/install.ps1 +++ /dev/null @@ -1,283 +0,0 @@ -param($installPath, $toolsPath, $package, $project) - -# find the App.xaml file -$appxaml = $project.ProjectItems | where {$_.Name -eq "App.xaml"} -$appxamlPath = ($appxaml.Properties | where {$_.Name -eq "LocalPath"}).Value - -# find the CSPROJ file -$projectPath = ($project.Properties | where {$_.Name -eq "LocalPath"}).Value + $project.Name + ".csproj" -$namespace = $project.Properties.Item("RootNamespace").Value - -# DEBUG ONLY -#$namespace = "Univ" -#$projectPath = "C:\MvvmLight\TEMPO2\AllPlatformsNoVm\Univ\Univ.Windows\Univ.Windows.csproj" -# DEBUG ONLY - -$isUniversal = $false -$sharedFolderPath = $null - -if ($appxamlPath -eq $null) -{ - # Might be a universal project, try it - $pathElements = $projectPath.Split('\') - $appxamlPath = "" - $lastElement = "" - - for ($i = 0; $i -le $pathElements.Length - 3; $i++) - { - $sharedFolderPath += $pathElements[$i] + "/" - $appxamlPath += $pathElements[$i] + "/" - $lastElement = $pathElements[$i] - } - - $appxamlPath += $lastElement + ".Shared/App.xaml" - -# [System.Windows.MessageBox]::Show("New appxamlPath " + $appxamlPath, 'TEST', 'OK') - - if (Test-Path $appxamlPath) - { - $isUniversal = $true -# [System.Windows.MessageBox]::Show("UNIVERSAL", 'TEST', 'OK') - } - else - { - $appxamlPath = $null - } -} - -if ($appxamlPath -eq $null) -{ - # TODO Xamarin - # add the required .NET assembly: - Add-Type -AssemblyName PresentationFramework - [System.Windows.MessageBox]::Show('Cannot find App.xaml in this project, no other changes made. If you are installing in a PCL, please use "MVVM Light Libs Only" instead.', 'Warning', 'OK') -} -else -{ - $projectXml = New-Object xml - $projectXml.Load($projectPath) - - $propertyGroups = $projectXml.SelectNodes("//*") | where { $_.Name -eq "PropertyGroup" } - - $found = "Nothing" - - foreach ($propertyGroup in $propertyGroups) - { - $targetFrameworkProfile = $propertyGroup.SelectNodes("//*") | where {$_.Name -eq "TargetFrameworkProfile" } - - if ($targetFrameworkProfile -ne $null) - { - if ($targetFrameworkProfile.InnerText -eq "WindowsPhone71") - { - $found = "wp71" - break - } - } - - $targetFrameworkIdentifier = $propertyGroup.SelectNodes("//*") | where {$_.Name -eq "TargetFrameworkIdentifier" } - - if ($targetFrameworkIdentifier -ne $null) - { - if ($targetFrameworkIdentifier.InnerText -eq "WindowsPhone") - { - $found = "wp8" - break - } - - if ($targetFrameworkIdentifier.InnerText -eq "Silverlight") - { - $version = $propertyGroup.SelectNodes("//*") | where {$_.Name -eq "TargetFrameworkVersion" } - - if ($version -ne $null) - { - if ($version.InnerText -eq "v4.0") - { - $found = "sl4" - break - } - - if ($version.InnerText -eq "v5.0") - { - $found = "sl5" - break - } - } - - $found = "sl" - break - } - } - - $outputType = $propertyGroup.SelectNodes("//*") | where {$_.Name -eq "OutputType" } - - if ($outputType -ne $null) - { - if ($outputType.InnerText -eq "AppContainerExe") - { - $found = "win8" - break - } - - if ($outputType.InnerText -eq "WinExe") - { - $version = $propertyGroup.SelectNodes("//*") | where {$_.Name -eq "TargetFrameworkVersion" } - - if ($version -ne $null) - { - if ($version.InnerText -eq "v3.5") - { - $found = "wpf35" - break - } - - if ($version.InnerText -eq "v4.0") - { - $found = "wpf4" - break - } - - if ($version.InnerText -eq "v4.5") - { - $found = "wpf45" - break - } - } - - $found = "wpf" - break - } - } - } - - # load App.xaml as XML - $appXamlXml = New-Object xml - $appXamlXml.Load($appxamlPath) - - #$comment = $appXamlXml.CreateComment($found) - #$appXamlXml.AppendChild($comment) - - #$comment2 = $appXamlXml.CreateComment($projectPath) - #$appXamlXml.AppendChild($comment2) - - $resources = $appXamlXml.SelectNodes("//*") | where { $_.Name -eq "Application.Resources" } - - if ($resources -eq $null) - { - $resources = $appXamlXml.CreateNode("element", "Application.Resources", "http://schemas.microsoft.com/winfx/2006/xaml/presentation") - $app = $appXamlXml.SelectNodes("//*") | where { $_.Name -eq "Application" } - - if ($app -eq $null) - { - break - } - - $app.AppendChild($resources) - } - - $xmlnsPrefix = "clr-namespace:" - - if ($found -eq "win8") - { - $xmlnsPrefix = "using:" - } - - $vml = $appXamlXml.CreateNode("element", "vm:ViewModelLocator", $xmlnsPrefix + $namespace + ".ViewModel") - $vml.SetAttribute("Key", "http://schemas.microsoft.com/winfx/2006/xaml", "Locator") - - if ($found -ne "win8") - { - $app = $appXamlXml.ChildNodes | where { $_.Name -eq "Application" } - - # Check presence of design time XMLNS - $dWasFound = $app.HasAttribute("xmlns:d") - - if (!$dWasFound) - { - $app.SetAttribute("xmlns:d", "http://schemas.microsoft.com/expression/blend/2008") - } - - # Check presence of Ignorable attribute on Application element - $ignorable = $app.GetAttribute("Ignorable", "http://schemas.openxmlformats.org/markup-compatibility/2006") - - if ($ignorable -ne "") - { - $allIgnorables = $ignorable.Split(' ') - $dWasFound = "False" - - foreach ($ign in $allIgnorables) - { - if ($ign -eq "d") - { - $dWasFound = "True" - } - } - - if ($dWasFound -eq "False") - { - $app.SetAttribute("Ignorable", "http://schemas.openxmlformats.org/markup-compatibility/2006", $ignorable + " d") - } - } - else - { - $app.SetAttribute("Ignorable", "http://schemas.openxmlformats.org/markup-compatibility/2006", "d") - } - - $attribute = $appXamlXml.CreateAttribute("d", "IsDataSource", "http://schemas.microsoft.com/expression/blend/2008"); - $attribute.Value = "True"; - $vml.Attributes.Append($attribute) - } - - $mergedDictionaries = $resources.SelectNodes("//*") | where { $_.Name -eq "ResourceDictionary" } - - if ($mergedDictionaries -eq $null) - { -# Add-Type -AssemblyName PresentationFramework -# [System.Windows.MessageBox]::Show('Found Resources, no merged, checking Locator now', 'Warning', 'OK') - - $existingLocator = $resources.SelectNodes("//*") | where { $_.Name -eq "vm:ViewModelLocator" } - - if ($existingLocator -eq $null) - { -# [System.Windows.MessageBox]::Show("No locator found") - $resources.AppendChild($vml) - } - } - else - { -# Add-Type -AssemblyName PresentationFramework -# [System.Windows.MessageBox]::Show('Found Resources, merged, checking Locator now', 'Warning', 'OK') - - $existingLocator = $mergedDictionaries.SelectNodes("//*") | where { $_.Name -eq "vm:ViewModelLocator" } - -# [System.Windows.MessageBox]::Show($existingLocator -ne $null) - - if ($existingLocator -eq $null) - { -# [System.Windows.MessageBox]::Show("No locator found") - $mergedDictionaries[0].AppendChild($vml) - } - } - - $appXamlXml.Save($appxamlPath) - - if ($isUniversal) - { - # add the required .NET assembly: - Add-Type -AssemblyName PresentationFramework - [System.Windows.MessageBox]::Show('This is a Universal application. You need to move the ViewModel folder manually. See http://www.mvvmlight.net/nuget-univ for details') - - $ie = New-Object -ComObject InternetExplorer.Application - $ie.Navigate("http://www.mvvmlight.net/nuget-univ") - $ie.Visible = $true - } -} - - - - - - - - - - diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.dll deleted file mode 100644 index 83235d90a..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index d079a007e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index 08b0e6cc7..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.dll deleted file mode 100644 index bc076cca5..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 84134f288..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index d079a007e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index 08b0e6cc7..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.dll deleted file mode 100644 index bc076cca5..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 84134f288..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index d079a007e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index 08b0e6cc7..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.dll deleted file mode 100644 index bc076cca5..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 84134f288..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index d079a007e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index 08b0e6cc7..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.dll deleted file mode 100644 index bc076cca5..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 84134f288..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index d079a007e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index 08b0e6cc7..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.dll deleted file mode 100644 index bc076cca5..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 84134f288..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll similarity index 96% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll index 422380eb7..14b35dfca 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb similarity index 95% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb index f05b8de26..9cbf850bc 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.dll similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.dll index 05cb9d24d..3670d4fe8 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.pdb similarity index 95% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.pdb index 21683050a..a8918932f 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/System.Windows.Interactivity.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/System.Windows.Interactivity.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/System.Windows.Interactivity.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL4/System.Windows.Interactivity.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll similarity index 96% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll index 3687ff46b..315a91802 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb similarity index 90% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb index 3ae5bf17e..e85f12e3e 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.dll similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.dll index 955536fef..5b8054a65 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.pdb similarity index 91% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.pdb index 8c52bc6f2..d0ae3b90f 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/SL5/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll similarity index 86% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll index d079a007e..81b465cfe 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.pdb index 08b0e6cc7..9accdbbe5 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.dll similarity index 94% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.dll index cbf9ad142..0b0c5bca9 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.pdb index 7389fa17e..a55151705 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.dll similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.dll index bc076cca5..cfb3ed7ef 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.pdb index 84134f288..4ebf0e8b7 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.dll similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.dll index 21303670e..0c5a31d34 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb similarity index 87% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb index 991347bb9..3b30454f6 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.dll similarity index 91% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.dll index 70921bfb3..22b186a44 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.pdb similarity index 84% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.pdb index 1d85a1ce3..334519f75 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/System.Windows.Interactivity.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/System.Windows.Interactivity.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/System.Windows.Interactivity.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net35/System.Windows.Interactivity.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.dll similarity index 95% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.Extras.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.dll index 5bfa5f2a6..6796306fe 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.Extras.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb similarity index 87% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb index f91a58a1e..94e4009b5 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.dll similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.dll index c9530e0bd..61aea2624 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.pdb similarity index 90% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.pdb index 2c61585c7..0fb0c83c4 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/System.Windows.Interactivity.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/System.Windows.Interactivity.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/System.Windows.Interactivity.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net40/System.Windows.Interactivity.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.dll similarity index 86% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.dll index d079a007e..81b465cfe 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb index 08b0e6cc7..9accdbbe5 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.dll similarity index 93% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.dll index 86990651c..a06fcdb87 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb similarity index 90% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb index b2f499907..971b21722 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.dll similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.dll index bc076cca5..cfb3ed7ef 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.pdb index 84134f288..4ebf0e8b7 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/net45/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.dll similarity index 86% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.dll index d079a007e..81b465cfe 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb index 08b0e6cc7..9accdbbe5 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.dll similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.dll index bc076cca5..cfb3ed7ef 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.pdb index 84134f288..4ebf0e8b7 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll index 7ab3cb57d..07e7a09cb 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb similarity index 96% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb index 3c18ee4e9..34bf16910 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll similarity index 92% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll index 426d73191..fd6a10ad7 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb similarity index 91% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb index 939552b02..8222c608b 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/System.Windows.Interactivity.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/System.Windows.Interactivity.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/System.Windows.Interactivity.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/System.Windows.Interactivity.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.dll similarity index 86% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.dll index d079a007e..81b465cfe 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.pdb index 08b0e6cc7..9accdbbe5 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.dll similarity index 84% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.dll index 7b592468f..36c8551c0 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.pdb similarity index 84% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.pdb index fdf7f8d61..da310cb3c 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pri b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.pri similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pri rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.pri diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.dll similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.dll index bc076cca5..cfb3ed7ef 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.pdb index 84134f288..4ebf0e8b7 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..81b465cfe Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..9accdbbe5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.dll similarity index 84% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.dll index f8207c648..ab37b4776 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.pdb similarity index 82% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.pdb index 8a6339cfb..5f3213d76 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pri b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.pri similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pri rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.pri diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..cfb3ed7ef Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.pdb new file mode 100644 index 000000000..4ebf0e8b7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..81b465cfe Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..9accdbbe5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll similarity index 96% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll index a2724ac00..ed85874a8 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb index 4cb677c24..1125cf08f 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..cfb3ed7ef Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.pdb new file mode 100644 index 000000000..4ebf0e8b7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp8/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..81b465cfe Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..9accdbbe5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll similarity index 96% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll index 11adf44e3..21035a7a0 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb index 32fb47c9f..f50b8cfb6 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..cfb3ed7ef Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.pdb new file mode 100644 index 000000000..4ebf0e8b7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wp81/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..81b465cfe Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..9accdbbe5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll similarity index 84% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll index afb9a5bd2..77558e4f1 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb similarity index 82% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb index adc9f58b0..e73841413 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..cfb3ed7ef Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.pdb new file mode 100644 index 000000000..4ebf0e8b7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..81b465cfe Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..9accdbbe5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.XML similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.XML index 795ab076d..0e895bda6 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.XML +++ b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.XML @@ -908,9 +908,43 @@ - Initializes a new instance of this class. + A constructor used when creating managed representations of unmanaged objects; + Called by the runtime. + + Pointer (handle) to the unmanaged object. + Check the remarks on + + + + A constructor that initializes the object from the data stored in the unarchiver + object. + + The unarchiver object. + Check the remarks on + + + + Constructor to call on derived classes to skip initialization and merely + allocate the object. + + Unused sentinel value, pass NSObjectFlag.Empty. + Check the remarks on + + + + Initializes an instance of this class. + + The NIB name, or null. + This parameter can be null. + The bundle where the search for the NIB takes place, + if you pass null, this searches for the NIB on the main bundle. + This parameter can be null. + Check the remarks on + + + + Initializes an instance of this class. - diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.dll new file mode 100644 index 000000000..4727f8601 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.XML b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..cfb3ed7ef Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.pdb new file mode 100644 index 000000000..4ebf0e8b7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.dll b/src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.dll deleted file mode 100644 index c3628b831..000000000 Binary files a/src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.dll and /dev/null differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.dll b/src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.dll deleted file mode 100644 index 6e6e0d8aa..000000000 Binary files a/src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.dll and /dev/null differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.dll b/src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.dll deleted file mode 100644 index 153b966a6..000000000 Binary files a/src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.dll and /dev/null differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.dll b/src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.dll deleted file mode 100644 index 5dc1c10b6..000000000 Binary files a/src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.dll and /dev/null differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.dll b/src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.dll deleted file mode 100644 index 80337449b..000000000 Binary files a/src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.dll and /dev/null differ diff --git a/src/Pickles/packages/NLog.3.2.1/lib/net35/NLog.dll b/src/Pickles/packages/NLog.3.2.1/lib/net35/NLog.dll new file mode 100644 index 000000000..e6fe774bf Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.1/lib/net35/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.xml b/src/Pickles/packages/NLog.3.2.1/lib/net35/NLog.xml similarity index 99% rename from src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.xml rename to src/Pickles/packages/NLog.3.2.1/lib/net35/NLog.xml index 3fed4788f..d0135e1e7 100644 --- a/src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.1/lib/net35/NLog.xml @@ -1885,6 +1885,14 @@ Validates the configuration. + + + Gets the variables defined in the configuration. + + + Returns null if not configured using XML configuration. + + Gets a collection of named targets specified in the configuration. @@ -10097,6 +10105,27 @@ Implementation of logging engine. + + + Finds first user stack frame in a stack trace + + The stack trace of the logging method invocation + Type of the logger or logger wrapper + Index of the first user stack frame or 0 if all stack frames are non-user + + + + + Defines whether a stack frame belongs to non-user code + + Method of the stack frame + Type of the logger or logger wrapper + , if the method is from non-user code and should be skipped + + The method is classified as non-user if its declaring assembly is from hidden assemblies list + or its declaring type is or one of its subtypes. + + Gets the filter result. @@ -13195,6 +13224,7 @@ Gets or sets a value indicating the SMTP client timeout. + Warning: zero is not infinit waiting diff --git a/src/Pickles/packages/NLog.3.2.1/lib/net40/NLog.dll b/src/Pickles/packages/NLog.3.2.1/lib/net40/NLog.dll new file mode 100644 index 000000000..43e787000 Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.1/lib/net40/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.xml b/src/Pickles/packages/NLog.3.2.1/lib/net40/NLog.xml similarity index 99% rename from src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.xml rename to src/Pickles/packages/NLog.3.2.1/lib/net40/NLog.xml index 4daafc873..b9490c2b0 100644 --- a/src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.1/lib/net40/NLog.xml @@ -1885,6 +1885,14 @@ Validates the configuration. + + + Gets the variables defined in the configuration. + + + Returns null if not configured using XML configuration. + + Gets a collection of named targets specified in the configuration. @@ -10037,6 +10045,27 @@ Implementation of logging engine. + + + Finds first user stack frame in a stack trace + + The stack trace of the logging method invocation + Type of the logger or logger wrapper + Index of the first user stack frame or 0 if all stack frames are non-user + + + + + Defines whether a stack frame belongs to non-user code + + Method of the stack frame + Type of the logger or logger wrapper + , if the method is from non-user code and should be skipped + + The method is classified as non-user if its declaring assembly is from hidden assemblies list + or its declaring type is or one of its subtypes. + + Gets the filter result. @@ -13135,6 +13164,7 @@ Gets or sets a value indicating the SMTP client timeout. + Warning: zero is not infinit waiting diff --git a/src/Pickles/packages/NLog.3.2.1/lib/net45/NLog.dll b/src/Pickles/packages/NLog.3.2.1/lib/net45/NLog.dll new file mode 100644 index 000000000..a51fe6d69 Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.1/lib/net45/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.xml b/src/Pickles/packages/NLog.3.2.1/lib/net45/NLog.xml similarity index 99% rename from src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.xml rename to src/Pickles/packages/NLog.3.2.1/lib/net45/NLog.xml index 2a1cede40..a729eca8f 100644 --- a/src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.1/lib/net45/NLog.xml @@ -1885,6 +1885,14 @@ Validates the configuration. + + + Gets the variables defined in the configuration. + + + Returns null if not configured using XML configuration. + + Gets a collection of named targets specified in the configuration. @@ -10126,6 +10134,27 @@ Implementation of logging engine. + + + Finds first user stack frame in a stack trace + + The stack trace of the logging method invocation + Type of the logger or logger wrapper + Index of the first user stack frame or 0 if all stack frames are non-user + + + + + Defines whether a stack frame belongs to non-user code + + Method of the stack frame + Type of the logger or logger wrapper + , if the method is from non-user code and should be skipped + + The method is classified as non-user if its declaring assembly is from hidden assemblies list + or its declaring type is or one of its subtypes. + + Gets the filter result. @@ -13224,6 +13253,7 @@ Gets or sets a value indicating the SMTP client timeout. + Warning: zero is not infinit waiting diff --git a/src/Pickles/packages/NLog.3.2.1/lib/sl4/NLog.dll b/src/Pickles/packages/NLog.3.2.1/lib/sl4/NLog.dll new file mode 100644 index 000000000..5d4679329 Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.1/lib/sl4/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.xml b/src/Pickles/packages/NLog.3.2.1/lib/sl4/NLog.xml similarity index 99% rename from src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.xml rename to src/Pickles/packages/NLog.3.2.1/lib/sl4/NLog.xml index 2092e7f37..db35b19f5 100644 --- a/src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.1/lib/sl4/NLog.xml @@ -1840,6 +1840,14 @@ Validates the configuration. + + + Gets the variables defined in the configuration. + + + Returns null if not configured using XML configuration. + + Gets a collection of named targets specified in the configuration. @@ -7314,6 +7322,27 @@ Implementation of logging engine. + + + Finds first user stack frame in a stack trace + + The stack trace of the logging method invocation + Type of the logger or logger wrapper + Index of the first user stack frame or 0 if all stack frames are non-user + + + + + Defines whether a stack frame belongs to non-user code + + Method of the stack frame + Type of the logger or logger wrapper + , if the method is from non-user code and should be skipped + + The method is classified as non-user if its declaring assembly is from hidden assemblies list + or its declaring type is or one of its subtypes. + + Gets the filter result. diff --git a/src/Pickles/packages/NLog.3.2.1/lib/sl5/NLog.dll b/src/Pickles/packages/NLog.3.2.1/lib/sl5/NLog.dll new file mode 100644 index 000000000..722908a47 Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.1/lib/sl5/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.xml b/src/Pickles/packages/NLog.3.2.1/lib/sl5/NLog.xml similarity index 99% rename from src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.xml rename to src/Pickles/packages/NLog.3.2.1/lib/sl5/NLog.xml index 2092e7f37..db35b19f5 100644 --- a/src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.1/lib/sl5/NLog.xml @@ -1840,6 +1840,14 @@ Validates the configuration. + + + Gets the variables defined in the configuration. + + + Returns null if not configured using XML configuration. + + Gets a collection of named targets specified in the configuration. @@ -7314,6 +7322,27 @@ Implementation of logging engine. + + + Finds first user stack frame in a stack trace + + The stack trace of the logging method invocation + Type of the logger or logger wrapper + Index of the first user stack frame or 0 if all stack frames are non-user + + + + + Defines whether a stack frame belongs to non-user code + + Method of the stack frame + Type of the logger or logger wrapper + , if the method is from non-user code and should be skipped + + The method is classified as non-user if its declaring assembly is from hidden assemblies list + or its declaring type is or one of its subtypes. + + Gets the filter result. diff --git a/src/Pickles/packages/NLog.Config.3.2.0.0/content/NLog.config b/src/Pickles/packages/NLog.Config.3.2.1/content/NLog.config similarity index 100% rename from src/Pickles/packages/NLog.Config.3.2.0.0/content/NLog.config rename to src/Pickles/packages/NLog.Config.3.2.1/content/NLog.config diff --git a/src/Pickles/packages/NLog.Config.3.2.0.0/tools/Install.ps1 b/src/Pickles/packages/NLog.Config.3.2.1/tools/Install.ps1 similarity index 100% rename from src/Pickles/packages/NLog.Config.3.2.0.0/tools/Install.ps1 rename to src/Pickles/packages/NLog.Config.3.2.1/tools/Install.ps1 diff --git a/src/Pickles/packages/NLog.Schema.3.2.0.0/content/NLog.xsd b/src/Pickles/packages/NLog.Schema.3.2.1/content/NLog.xsd similarity index 100% rename from src/Pickles/packages/NLog.Schema.3.2.0.0/content/NLog.xsd rename to src/Pickles/packages/NLog.Schema.3.2.1/content/NLog.xsd diff --git a/src/Pickles/packages/NuGet.CommandLine.2.8.3/tools/NuGet.exe b/src/Pickles/packages/NuGet.CommandLine.2.8.5/tools/NuGet.exe similarity index 68% rename from src/Pickles/packages/NuGet.CommandLine.2.8.3/tools/NuGet.exe rename to src/Pickles/packages/NuGet.CommandLine.2.8.5/tools/NuGet.exe index 8dd7e45ae..9ca66594f 100644 Binary files a/src/Pickles/packages/NuGet.CommandLine.2.8.3/tools/NuGet.exe and b/src/Pickles/packages/NuGet.CommandLine.2.8.5/tools/NuGet.exe differ