diff --git a/README.md b/README.md index 28fada1b0..12a84cb9a 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ Introduction [![Build status](https://ci.appveyor.com/api/projects/status/rqt59hq1m2jt2a5v)](https://ci.appveyor.com/project/dirkrombauts/pickles-715) +[![Documentation Status](https://readthedocs.org/projects/pickles/badge/?version=latest)](https://readthedocs.org/projects/pickles/?badge=latest) + Pickles is an open source living documentation generator that works on feature files written in the Gherkin language, popularized in tools like Cucumber and SpecFlow. Pickles can be incorporated into your build process to produce living documenation in a format that is more accessible to your clients. Gherkin language files are written in plain text and stored in your source folder. This can make them inaccessible to clients who may not know how to work with source control or who are not interested in seeing all of the source code, just the features. Why stop with just the features though? Pickles can also read plain text files written in the Markdown format so you can add other files to your feature to add all sorts of context. Well-written features are great to have but even the best written features can leave out some important context information. Markdown is very simple to write and is designed to be easily read even in plain text files so they are a great way of adding additional context to your feature files to turn them into a real set of living documentation. @@ -15,7 +17,6 @@ Supported Output Formats - JSON - Word - Excel -- DITA If there are other formats you would like to see then why don't you post on the [newsgroup we have for pickles development][1] diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 0ca648283..179b8bf8b 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,12 @@ # Pickles Release Notes +## v1.0.1 - 2015-03-31 + +### Bugs Fixed + +- In the DHtml version, feature wide tags with capitals can not be filtered on ([#194](https://github.com/picklesdoc/pickles/issues/194)) +- Tables in background for Word & Excel ([#191](https://github.com/picklesdoc/pickles/issues/191)) + ## v1.0.0 - 2014-12-15 ### Breaking Change diff --git a/build.bat b/build.bat index 405fca229..69637bac0 100644 --- a/build.bat +++ b/build.bat @@ -1,5 +1,5 @@ @echo off -set "picklesVersion=1.0.0" +set "picklesVersion=1.0.1" cls diff --git a/src/Pickles/.nuget/packages.config b/src/Pickles/.nuget/packages.config index 639d055a2..48d238c4d 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/js/featureSearch.js b/src/Pickles/Pickles.BaseDhtmlFiles/js/featureSearch.js index f8b75b68c..fed5f0c07 100644 --- a/src/Pickles/Pickles.BaseDhtmlFiles/js/featureSearch.js +++ b/src/Pickles/Pickles.BaseDhtmlFiles/js/featureSearch.js @@ -27,8 +27,14 @@ function matchesFeatureName(searchString, feature) { } function matchesFeatureTag(searchString, feature) { - var featureTags = feature.Feature.Tags; - return (_.indexOf(featureTags, searchString) > -1); + var foundMatch = false; + $.each(feature.Feature.Tags, function (key, scenarioTag) { + var lowerCasedTag = scenarioTag.toLowerCase(); + if (lowerCasedTag.indexOf(searchString) > -1) { + foundMatch = true; + } + }); + return foundMatch; } function matchesScenarioName(searchString, feature) { diff --git a/src/Pickles/Pickles.CommandLine/NLog.xsd b/src/Pickles/Pickles.CommandLine/NLog.xsd index 98aba4e2f..481702860 100644 --- a/src/Pickles/Pickles.CommandLine/NLog.xsd +++ b/src/Pickles/Pickles.CommandLine/NLog.xsd @@ -8,6 +8,7 @@ + @@ -214,6 +215,7 @@ + @@ -991,21 +993,22 @@ + - - - - - - - - - + + + + + + + + + + - @@ -1068,14 +1071,14 @@ Gets ors set a value indicating whether a managed file stream is forced, instead of used the native implementation. - + - Indicates whether to replace file contents on each write instead of appending log message at the end. + File attributes (Windows only). - + - Indicates whether to enable log file(s) to be deleted. + Indicates whether to replace file contents on each write instead of appending log message at the end. @@ -1083,9 +1086,9 @@ Indicates whether to delete old log file on startup. - + - Indicates whether to create directories if they don't exist. + Name of the file to write to. @@ -1093,29 +1096,34 @@ Value specifying the date format to use when archving files. - + - Name of the file to write to. + Indicates whether to archive old log file on startup. - + - File attributes (Windows only). + Indicates whether to create directories if they don't exist. - + - Log file buffer size in bytes. + Indicates whether to enable log file(s) to be deleted. - + - Delay in milliseconds to wait before attempting to write to the file again. + Maximum number of seconds that files are kept open. If this number is negative the files are not automatically closed after a period of inactivity. - + - Number of times the write is appended on the file before NLog discards the log message. + Indicates whether concurrent writes to the log file by multiple processes on different network hosts. + + + + + Indicates whether to keep log file open instead of opening and closing it on each logging event. @@ -1123,24 +1131,24 @@ Indicates whether concurrent writes to the log file by multiple processes on the same host. - + - Indicates whether to keep log file open instead of opening and closing it on each logging event. + Number of times the write is appended on the file before NLog discards the log message. - + - Indicates whether concurrent writes to the log file by multiple processes on different network hosts. + Delay in milliseconds to wait before attempting to write to the file again. - + - Number of files to be kept open. Setting this to a higher value may improve performance in a situation where a single File target is writing to many files (such as splitting by level or by logger). + Log file buffer size in bytes. - + - Maximum number of seconds that files are kept open. If this number is negative the files are not automatically closed after a period of inactivity. + Number of files to be kept open. Setting this to a higher value may improve performance in a situation where a single File target is writing to many files (such as splitting by level or by logger). @@ -1165,6 +1173,7 @@ + @@ -2654,4 +2663,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Pickles/Pickles.CommandLine/Pickles.CommandLine.csproj b/src/Pickles/Pickles.CommandLine/Pickles.CommandLine.csproj index 6a646ee1d..31d3ef709 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\ - c0225c14 + 05ed768b AnyCPU @@ -48,12 +48,12 @@ ..\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll - ..\packages\NLog.3.1.0.0\lib\net35\NLog.dll + ..\packages\NLog.3.2.0.0\lib\net35\NLog.dll - ..\packages\System.IO.Abstractions.1.4.0.92\lib\net35\System.IO.Abstractions.dll + ..\packages\System.IO.Abstractions.1.4.0.93\lib\net35\System.IO.Abstractions.dll @@ -123,12 +123,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/Moq.4.2.1409.1722/lib/sl4/Moq.Silverlight.dll b/src/Pickles/packages/Moq.4.2.1409.1722/lib/sl4/Moq.Silverlight.dll deleted file mode 100644 index 43c0f1819..000000000 Binary files a/src/Pickles/packages/Moq.4.2.1409.1722/lib/sl4/Moq.Silverlight.dll and /dev/null differ diff --git a/src/Pickles/packages/Moq.4.2.1409.1722/lib/net35/Moq.dll b/src/Pickles/packages/Moq.4.2.1502.0911/lib/net35/Moq.dll similarity index 59% rename from src/Pickles/packages/Moq.4.2.1409.1722/lib/net35/Moq.dll rename to src/Pickles/packages/Moq.4.2.1502.0911/lib/net35/Moq.dll index 186486b16..0a6d39464 100644 Binary files a/src/Pickles/packages/Moq.4.2.1409.1722/lib/net35/Moq.dll and b/src/Pickles/packages/Moq.4.2.1502.0911/lib/net35/Moq.dll differ diff --git a/src/Pickles/packages/Moq.4.2.1409.1722/lib/net35/Moq.xml b/src/Pickles/packages/Moq.4.2.1502.0911/lib/net35/Moq.xml similarity index 100% rename from src/Pickles/packages/Moq.4.2.1409.1722/lib/net35/Moq.xml rename to src/Pickles/packages/Moq.4.2.1502.0911/lib/net35/Moq.xml diff --git a/src/Pickles/packages/Moq.4.2.1409.1722/lib/net40/Moq.dll b/src/Pickles/packages/Moq.4.2.1502.0911/lib/net40/Moq.dll similarity index 60% rename from src/Pickles/packages/Moq.4.2.1409.1722/lib/net40/Moq.dll rename to src/Pickles/packages/Moq.4.2.1502.0911/lib/net40/Moq.dll index 996b8c9ff..b2a728223 100644 Binary files a/src/Pickles/packages/Moq.4.2.1409.1722/lib/net40/Moq.dll and b/src/Pickles/packages/Moq.4.2.1502.0911/lib/net40/Moq.dll differ diff --git a/src/Pickles/packages/Moq.4.2.1409.1722/lib/net40/Moq.xml b/src/Pickles/packages/Moq.4.2.1502.0911/lib/net40/Moq.xml similarity index 100% rename from src/Pickles/packages/Moq.4.2.1409.1722/lib/net40/Moq.xml rename to src/Pickles/packages/Moq.4.2.1502.0911/lib/net40/Moq.xml diff --git a/src/Pickles/packages/Moq.4.2.1502.0911/lib/sl4/Moq.Silverlight.dll b/src/Pickles/packages/Moq.4.2.1502.0911/lib/sl4/Moq.Silverlight.dll new file mode 100644 index 000000000..1ecb48ab8 Binary files /dev/null and b/src/Pickles/packages/Moq.4.2.1502.0911/lib/sl4/Moq.Silverlight.dll differ diff --git a/src/Pickles/packages/Moq.4.2.1409.1722/lib/sl4/Moq.Silverlight.xml b/src/Pickles/packages/Moq.4.2.1502.0911/lib/sl4/Moq.Silverlight.xml similarity index 100% rename from src/Pickles/packages/Moq.4.2.1409.1722/lib/sl4/Moq.Silverlight.xml rename to src/Pickles/packages/Moq.4.2.1502.0911/lib/sl4/Moq.Silverlight.xml diff --git a/src/Pickles/packages/MvvmLight.5.0.2.0/Content/ViewModel/MainViewModel.cs.pp b/src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/MainViewModel.cs.pp similarity index 100% rename from src/Pickles/packages/MvvmLight.5.0.2.0/Content/ViewModel/MainViewModel.cs.pp rename to src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/MainViewModel.cs.pp diff --git a/src/Pickles/packages/MvvmLight.5.0.2.0/Content/ViewModel/ViewModelLocator.cs.pp b/src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/ViewModelLocator.cs.pp similarity index 100% rename from src/Pickles/packages/MvvmLight.5.0.2.0/Content/ViewModel/ViewModelLocator.cs.pp rename to src/Pickles/packages/MvvmLight.5.1.0.0/Content/ViewModel/ViewModelLocator.cs.pp diff --git a/src/Pickles/packages/MvvmLight.5.0.2.0/tools/install.ps1 b/src/Pickles/packages/MvvmLight.5.1.0.0/tools/install.ps1 similarity index 100% rename from src/Pickles/packages/MvvmLight.5.0.2.0/tools/install.ps1 rename to src/Pickles/packages/MvvmLight.5.1.0.0/tools/install.ps1 diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index 1e513ca8c..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index 09461c111..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index 641a2834d..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index d4eb44495..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index dbf81209e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ed51f9244..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.dll deleted file mode 100644 index 588f10ee5..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.pdb deleted file mode 100644 index 291a63d0f..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.dll deleted file mode 100644 index df0204f45..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index dbf81209e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ed51f9244..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Platform.dll deleted file mode 100644 index 323438d7b..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Platform.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.dll deleted file mode 100644 index df0204f45..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index a2743fdd0..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ccce48d7d..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.dll deleted file mode 100644 index ab4a8a71d..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index 01358b47f..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index 1cb8e8fcc..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.dll deleted file mode 100644 index 3c5af31ef..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index dbf81209e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ed51f9244..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Platform.dll deleted file mode 100644 index b81fadebd..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Platform.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.dll deleted file mode 100644 index df0204f45..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index dbf81209e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ed51f9244..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.dll deleted file mode 100644 index 25a1ae2a8..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pdb deleted file mode 100644 index 3019ba1fd..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.dll deleted file mode 100644 index df0204f45..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index dbf81209e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ed51f9244..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.dll deleted file mode 100644 index a6fd8dd96..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pdb deleted file mode 100644 index 5f5767d98..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.dll deleted file mode 100644 index df0204f45..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 19d9c60ba..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index dbf81209e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.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.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ed51f9244..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.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.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.dll deleted file mode 100644 index df0204f45..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 19d9c60ba..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index 6fa899a2f..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index 025c1ccf1..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml deleted file mode 100644 index 25ac9c859..000000000 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml +++ /dev/null @@ -1,569 +0,0 @@ - - - - GalaSoft.MvvmLight.Extras - - - - - A very simple IOC container with basic functionality needed to register and resolve - instances. If needed, this class can be replaced by another more elaborate - IOC container implementing the IServiceLocator interface. - The inspiration for this class is at https://gist.github.com/716137 but it has - been extended with additional features. - - - - - Checks whether at least one instance of a given class is already created in the container. - - The class that is queried. - True if at least on instance of the class is already created, false otherwise. - - - - Checks whether the instance with the given key is already created for a given class - in the container. - - The class that is queried. - The key that is queried. - True if the instance with the given key is already registered for the given class, - false otherwise. - - - - Gets a value indicating whether a given type T is already registered. - - The type that the method checks for. - True if the type is registered, false otherwise. - - - - Gets a value indicating whether a given type T and a give key - are already registered. - - The type that the method checks for. - The key that the method checks for. - True if the type and key are registered, false otherwise. - - - - Registers a given type for a given interface. - - The interface for which instances will be resolved. - The type that must be used to create instances. - - - - Registers a given type for a given interface with the possibility for immediate - creation of the instance. - - The interface for which instances will be resolved. - The type that must be used to create instances. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given type. - - The type that must be used to create instances. - - - - Registers a given type with the possibility for immediate - creation of the instance. - - The type that must be used to create instances. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given instance for a given type. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - - - - Registers a given instance for a given type with the possibility for immediate - creation of the instance. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given instance for a given type and a given key. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - The key for which the given instance is registered. - - - - Registers a given instance for a given type and a given key with the possibility for immediate - creation of the instance. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - The key for which the given instance is registered. - If true, forces the creation of the default - instance of the provided class. - - - - Resets the instance in its original states. This deletes all the - registrations. - - - - - Unregisters a class from the cache and removes all the previously - created instances. - - The class that must be removed. - - - - Removes the given instance from the cache. The class itself remains - registered and can be used to create other instances. - - The type of the instance to be removed. - The instance that must be removed. - - - - Removes the instance corresponding to the given key from the cache. The class itself remains - registered and can be used to create other instances. - - The type of the instance to be removed. - The key corresponding to the instance that must be removed. - - - - When used with the SimpleIoc container, specifies which constructor - should be used to instantiate when GetInstance is called. - If there is only one constructor in the class, this attribute is - not needed. - - - - - A very simple IOC container with basic functionality needed to register and resolve - instances. If needed, this class can be replaced by another more elaborate - IOC container implementing the IServiceLocator interface. - The inspiration for this class is at https://gist.github.com/716137 but it has - been extended with additional features. - - - - - Checks whether at least one instance of a given class is already created in the container. - - The class that is queried. - True if at least on instance of the class is already created, false otherwise. - - - - Checks whether the instance with the given key is already created for a given class - in the container. - - The class that is queried. - The key that is queried. - True if the instance with the given key is already registered for the given class, - false otherwise. - - - - Gets a value indicating whether a given type T is already registered. - - The type that the method checks for. - True if the type is registered, false otherwise. - - - - Gets a value indicating whether a given type T and a give key - are already registered. - - The type that the method checks for. - The key that the method checks for. - True if the type and key are registered, false otherwise. - - - - Registers a given type for a given interface. - - The interface for which instances will be resolved. - The type that must be used to create instances. - - - - Registers a given type for a given interface with the possibility for immediate - creation of the instance. - - The interface for which instances will be resolved. - The type that must be used to create instances. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given type. - - The type that must be used to create instances. - - - - Registers a given type with the possibility for immediate - creation of the instance. - - The type that must be used to create instances. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given instance for a given type. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - - - - Registers a given instance for a given type with the possibility for immediate - creation of the instance. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given instance for a given type and a given key. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - The key for which the given instance is registered. - - - - Registers a given instance for a given type and a given key with the possibility for immediate - creation of the instance. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - The key for which the given instance is registered. - If true, forces the creation of the default - instance of the provided class. - - - - Resets the instance in its original states. This deletes all the - registrations. - - - - - Unregisters a class from the cache and removes all the previously - created instances. - - The class that must be removed. - - - - Removes the given instance from the cache. The class itself remains - registered and can be used to create other instances. - - The type of the instance to be removed. - The instance that must be removed. - - - - Removes the instance corresponding to the given key from the cache. The class itself remains - registered and can be used to create other instances. - - The type of the instance to be removed. - The key corresponding to the instance that must be removed. - - - - Provides a way to get all the created instances of a given type available in the - cache. Registering a class or a factory does not automatically - create the corresponding instance! To create an instance, either register - the class or the factory with createInstanceImmediately set to true, - or call the GetInstance method before calling GetAllCreatedInstances. - Alternatively, use the GetAllInstances method, which auto-creates default - instances for all registered classes. - - The class of which all instances - must be returned. - All the already created instances of the given type. - - - - Provides a way to get all the created instances of a given type available in the - cache. Registering a class or a factory does not automatically - create the corresponding instance! To create an instance, either register - the class or the factory with createInstanceImmediately set to true, - or call the GetInstance method before calling GetAllCreatedInstances. - Alternatively, use the GetAllInstances method, which auto-creates default - instances for all registered classes. - - The class of which all instances - must be returned. - All the already created instances of the given type. - - - - Gets the service object of the specified type. - - - A service object of type . - -or- - null if there is no service object of type . - - An object that specifies the type of service object to get. - - - - Provides a way to get all the created instances of a given type available in the - cache. Calling this method auto-creates default - instances for all registered classes. - - The class of which all instances - must be returned. - All the instances of the given type. - - - - Provides a way to get all the created instances of a given type available in the - cache. Calling this method auto-creates default - instances for all registered classes. - - The class of which all instances - must be returned. - All the instances of the given type. - - - - Provides a way to get an instance of a given type. If no instance had been instantiated - before, a new instance will be created. If an instance had already - been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - - - The class of which an instance - must be returned. - An instance of the given type. - - - - Provides a way to get an instance of a given type corresponding - to a given key. If no instance had been instantiated with this - key before, a new instance will be created. If an instance had already - been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - - - The class of which an instance must be returned. - The key uniquely identifying this instance. - An instance corresponding to the given type and key. - - - - Provides a way to get an instance of a given type. If no instance had been instantiated - before, a new instance will be created. If an instance had already - been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - - - The class of which an instance - must be returned. - An instance of the given type. - - - - Provides a way to get an instance of a given type corresponding - to a given key. If no instance had been instantiated with this - key before, a new instance will be created. If an instance had already - been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - - - The class of which an instance must be returned. - The key uniquely identifying this instance. - An instance corresponding to the given type and key. - - - - This class' default instance. - - - - - This can be - used to bind any event on any FrameworkElement to an . - Typically, this element is used in XAML to connect the attached element - to a command located in a ViewModel. This trigger can only be attached - to a FrameworkElement or a class deriving from FrameworkElement. - To access the EventArgs of the fired event, use a RelayCommand<EventArgs> - and leave the CommandParameter and CommandParameterValue empty! - - - - - The dependency property's name. - - - - - Identifies the dependency property - - - - - Identifies the dependency property - - - - - Identifies the dependency property - - - - - Called when this trigger is attached to a FrameworkElement. - - - - - This method is here for compatibility - with the Silverlight 3 version. - - The command that must be executed when - this trigger is invoked. - - - - Identifies the dependency property. - - - - - Provides a simple way to invoke this trigger programatically - without any EventArgs. - - - - - Executes the trigger. - To access the EventArgs of the fired event, use a RelayCommand<EventArgs> - and leave the CommandParameter and CommandParameterValue empty! - - The EventArgs of the fired event. - - - - Gets or sets the ICommand that this trigger is bound to. This - is a DependencyProperty. - - - - - Gets or sets an object that will be passed to the - attached to this trigger. This is a DependencyProperty. - - - - - Gets or sets an object that will be passed to the - attached to this trigger. This property is here for compatibility - with the Silverlight version. This is NOT a DependencyProperty. - For databinding, use the property. - - - - - Gets or sets a value indicating whether the attached element must be - disabled when the property's CanExecuteChanged - event fires. If this property is true, and the command's CanExecute - method returns false, the element will be disabled. If this property - is false, the element will not be disabled when the command's - CanExecute method changes. This is a DependencyProperty. - - - - - Gets or sets a value indicating whether the attached element must be - disabled when the property's CanExecuteChanged - event fires. If this property is true, and the command's CanExecute - method returns false, the element will be disabled. This property is here for - compatibility with the Silverlight version. This is NOT a DependencyProperty. - For databinding, use the property. - - - - - Specifies whether the EventArgs of the event that triggered this - action should be passed to the bound RelayCommand. If this is true, - the command should accept arguments of the corresponding - type (for example RelayCommand<MouseButtonEventArgs>). - - - - - Gets or sets a converter used to convert the EventArgs when using - . If PassEventArgsToCommand is false, - this property is never used. - - - - - Gets or sets a parameters for the converter used to convert the EventArgs when using - . If PassEventArgsToCommand is false, - this property is never used. This is a dependency property. - - - - - The definition of the converter used to convert an EventArgs - in the class, if the - property is true. - Set an instance of this class to the - property of the EventToCommand instance. - - - - - The method used to convert the EventArgs instance. - - An instance of EventArgs passed by the - event that the EventToCommand instance is handling. - An optional parameter used for the conversion. Use - the property - to set this value. This may be null. - The converted value. - - - diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index dbf81209e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ed51f9244..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll deleted file mode 100644 index eea7cef1b..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.dll deleted file mode 100644 index df0204f45..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 19d9c60ba..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index dbf81209e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ed51f9244..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml deleted file mode 100644 index 33e50f499..000000000 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml +++ /dev/null @@ -1,424 +0,0 @@ - - - - GalaSoft.MvvmLight.Extras - - - - - A very simple IOC container with basic functionality needed to register and resolve - instances. If needed, this class can be replaced by another more elaborate - IOC container implementing the IServiceLocator interface. - The inspiration for this class is at https://gist.github.com/716137 but it has - been extended with additional features. - - - - - Checks whether at least one instance of a given class is already created in the container. - - The class that is queried. - True if at least on instance of the class is already created, false otherwise. - - - - Checks whether the instance with the given key is already created for a given class - in the container. - - The class that is queried. - The key that is queried. - True if the instance with the given key is already registered for the given class, - false otherwise. - - - - Gets a value indicating whether a given type T is already registered. - - The type that the method checks for. - True if the type is registered, false otherwise. - - - - Gets a value indicating whether a given type T and a give key - are already registered. - - The type that the method checks for. - The key that the method checks for. - True if the type and key are registered, false otherwise. - - - - Registers a given type for a given interface. - - The interface for which instances will be resolved. - The type that must be used to create instances. - - - - Registers a given type for a given interface with the possibility for immediate - creation of the instance. - - The interface for which instances will be resolved. - The type that must be used to create instances. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given type. - - The type that must be used to create instances. - - - - Registers a given type with the possibility for immediate - creation of the instance. - - The type that must be used to create instances. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given instance for a given type. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - - - - Registers a given instance for a given type with the possibility for immediate - creation of the instance. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given instance for a given type and a given key. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - The key for which the given instance is registered. - - - - Registers a given instance for a given type and a given key with the possibility for immediate - creation of the instance. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - The key for which the given instance is registered. - If true, forces the creation of the default - instance of the provided class. - - - - Resets the instance in its original states. This deletes all the - registrations. - - - - - Unregisters a class from the cache and removes all the previously - created instances. - - The class that must be removed. - - - - Removes the given instance from the cache. The class itself remains - registered and can be used to create other instances. - - The type of the instance to be removed. - The instance that must be removed. - - - - Removes the instance corresponding to the given key from the cache. The class itself remains - registered and can be used to create other instances. - - The type of the instance to be removed. - The key corresponding to the instance that must be removed. - - - - When used with the SimpleIoc container, specifies which constructor - should be used to instantiate when GetInstance is called. - If there is only one constructor in the class, this attribute is - not needed. - - - - - A very simple IOC container with basic functionality needed to register and resolve - instances. If needed, this class can be replaced by another more elaborate - IOC container implementing the IServiceLocator interface. - The inspiration for this class is at https://gist.github.com/716137 but it has - been extended with additional features. - - - - - Checks whether at least one instance of a given class is already created in the container. - - The class that is queried. - True if at least on instance of the class is already created, false otherwise. - - - - Checks whether the instance with the given key is already created for a given class - in the container. - - The class that is queried. - The key that is queried. - True if the instance with the given key is already registered for the given class, - false otherwise. - - - - Gets a value indicating whether a given type T is already registered. - - The type that the method checks for. - True if the type is registered, false otherwise. - - - - Gets a value indicating whether a given type T and a give key - are already registered. - - The type that the method checks for. - The key that the method checks for. - True if the type and key are registered, false otherwise. - - - - Registers a given type for a given interface. - - The interface for which instances will be resolved. - The type that must be used to create instances. - - - - Registers a given type for a given interface with the possibility for immediate - creation of the instance. - - The interface for which instances will be resolved. - The type that must be used to create instances. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given type. - - The type that must be used to create instances. - - - - Registers a given type with the possibility for immediate - creation of the instance. - - The type that must be used to create instances. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given instance for a given type. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - - - - Registers a given instance for a given type with the possibility for immediate - creation of the instance. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - If true, forces the creation of the default - instance of the provided class. - - - - Registers a given instance for a given type and a given key. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - The key for which the given instance is registered. - - - - Registers a given instance for a given type and a given key with the possibility for immediate - creation of the instance. - - The type that is being registered. - The factory method able to create the instance that - must be returned when the given type is resolved. - The key for which the given instance is registered. - If true, forces the creation of the default - instance of the provided class. - - - - Resets the instance in its original states. This deletes all the - registrations. - - - - - Unregisters a class from the cache and removes all the previously - created instances. - - The class that must be removed. - - - - Removes the given instance from the cache. The class itself remains - registered and can be used to create other instances. - - The type of the instance to be removed. - The instance that must be removed. - - - - Removes the instance corresponding to the given key from the cache. The class itself remains - registered and can be used to create other instances. - - The type of the instance to be removed. - The key corresponding to the instance that must be removed. - - - - Provides a way to get all the created instances of a given type available in the - cache. Registering a class or a factory does not automatically - create the corresponding instance! To create an instance, either register - the class or the factory with createInstanceImmediately set to true, - or call the GetInstance method before calling GetAllCreatedInstances. - Alternatively, use the GetAllInstances method, which auto-creates default - instances for all registered classes. - - The class of which all instances - must be returned. - All the already created instances of the given type. - - - - Provides a way to get all the created instances of a given type available in the - cache. Registering a class or a factory does not automatically - create the corresponding instance! To create an instance, either register - the class or the factory with createInstanceImmediately set to true, - or call the GetInstance method before calling GetAllCreatedInstances. - Alternatively, use the GetAllInstances method, which auto-creates default - instances for all registered classes. - - The class of which all instances - must be returned. - All the already created instances of the given type. - - - - Gets the service object of the specified type. - - - A service object of type . - -or- - null if there is no service object of type . - - An object that specifies the type of service object to get. - - - - Provides a way to get all the created instances of a given type available in the - cache. Calling this method auto-creates default - instances for all registered classes. - - The class of which all instances - must be returned. - All the instances of the given type. - - - - Provides a way to get all the created instances of a given type available in the - cache. Calling this method auto-creates default - instances for all registered classes. - - The class of which all instances - must be returned. - All the instances of the given type. - - - - Provides a way to get an instance of a given type. If no instance had been instantiated - before, a new instance will be created. If an instance had already - been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - - - The class of which an instance - must be returned. - An instance of the given type. - - - - Provides a way to get an instance of a given type corresponding - to a given key. If no instance had been instantiated with this - key before, a new instance will be created. If an instance had already - been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - - - The class of which an instance must be returned. - The key uniquely identifying this instance. - An instance corresponding to the given type and key. - - - - Provides a way to get an instance of a given type. If no instance had been instantiated - before, a new instance will be created. If an instance had already - been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - - - The class of which an instance - must be returned. - An instance of the given type. - - - - Provides a way to get an instance of a given type corresponding - to a given key. If no instance had been instantiated with this - key before, a new instance will be created. If an instance had already - been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - - - The class of which an instance must be returned. - The key uniquely identifying this instance. - An instance corresponding to the given type and key. - - - - This class' default instance. - - - - diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll deleted file mode 100644 index da03f34e8..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.dll deleted file mode 100644 index df0204f45..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 19d9c60ba..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll deleted file mode 100644 index dbf81209e..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb deleted file mode 100644 index ed51f9244..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll deleted file mode 100644 index db5bcc28d..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb deleted file mode 100644 index c3c090364..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.dll deleted file mode 100644 index df0204f45..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.dll and /dev/null differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.pdb deleted file mode 100644 index 19d9c60ba..000000000 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.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.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..422380eb7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..f05b8de26 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml index bbf0adbaa..c2dccb79d 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.Extras.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -456,14 +492,6 @@ Called when this trigger is attached to a FrameworkElement. - - - This method is here for compatibility - with the Silverlight version. - - The FrameworkElement to which this trigger - is attached. - This method is here for compatibility diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.dll similarity index 96% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.dll index e6d126898..05cb9d24d 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.pdb similarity index 65% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.pdb index 3461389f1..21683050a 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/System.Windows.Interactivity.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL4/System.Windows.Interactivity.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/System.Windows.Interactivity.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..3687ff46b Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..3ae5bf17e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml index bbf0adbaa..c2dccb79d 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.Extras.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -456,14 +492,6 @@ Called when this trigger is attached to a FrameworkElement. - - - This method is here for compatibility - with the Silverlight version. - - The FrameworkElement to which this trigger - is attached. - This method is here for compatibility diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.dll similarity index 96% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.dll index c5599deaa..955536fef 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.pdb similarity index 60% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.pdb index edf2207c7..8c52bc6f2 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/SL5/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.XML similarity index 85% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.XML index 33e50f499..ff36ba045 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.XML +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.XML @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..d079a007e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/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.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..08b0e6cc7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.XML similarity index 99% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.XML index 2ad22f0d0..60a468aee 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.XML +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.XML @@ -6,7 +6,7 @@ - Base class for bindings. + Base class for bindings in Xamarin.iOS and Xamarin.Android. @@ -854,6 +854,12 @@ For this navigation service to work properly, your Activities should derive from the class. + + + The key that is returned by the property + when the current Activiy is the root activity. + + If possible, discards the current page and displays the previous page diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.dll new file mode 100644 index 000000000..cbf9ad142 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/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.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.pdb new file mode 100644 index 000000000..7389fa17e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/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.0.0/lib/monoandroid/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..bc076cca5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.pdb similarity index 58% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.pdb index 19d9c60ba..84134f288 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monoandroid/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monoandroid/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.XML similarity index 85% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.XML index 33e50f499..ff36ba045 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.XML +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.XML @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..d079a007e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/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.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..08b0e6cc7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Platform.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.XML similarity index 92% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Platform.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.XML index 26fc19f26..795ab076d 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Platform.XML +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.XML @@ -6,7 +6,7 @@ - Base class for bindings. + Base class for bindings in Xamarin.iOS and Xamarin.Android. @@ -537,32 +537,32 @@ The name of the event that will be subscribed to to actuate the command. The command that must be added to the element. - + Creates a new for a given . The type of the items contained in the collection. The collection that the adapter will be created for. - A delegate to a method creating or reusing a . + A delegate to a method creating or reusing a . The cell will then be passed to the bindCellDelegate delegate to set the elements' properties. - A delegate to a method taking a + A delegate to a method taking a and setting its elements' properties according to the item passed as second parameter. The cell must be created first in the createCellDelegate delegate. A controller adapted to the collection passed in parameter. - + Creates a new for a given . The type of the items contained in the list. The list that the adapter will be created for. - A delegate to a method creating or reusing a . + A delegate to a method creating or reusing a . The cell will then be passed to the bindCellDelegate delegate to set the elements' properties. - A delegate to a method taking a + A delegate to a method taking a and setting its elements' properties according to the item passed as second parameter. The cell must be created first in the createCellDelegate @@ -657,7 +657,7 @@ - A that can be used as an iOS view. After setting + A that can be used as an iOS view. After setting the and the and properties, the controller can be loaded. If the DataSource is an , changes to the collection will be observed and the UI will automatically be updated. @@ -679,7 +679,7 @@ Initializes a new instance of this class with a plain style. - + Initializes a new instance of this class with a specific style. @@ -687,22 +687,22 @@ - Overrides the method. + Overrides the method. - + - Binds a to an item's properties. + Binds a to an item's properties. If a is available, this delegate will be used. If not, a simple text will be shown. The cell that will be prepared. The item that should be used to set the cell up. - The for this cell. + The for this cell. - + - Creates a corresponding to the reuseId. + Creates a corresponding to the reuseId. If it is set, the delegate will be used. A reuse identifier for the cell. @@ -714,7 +714,7 @@ The created ObservableTableSource. - + Called when a row gets selected. Raises the SelectionChanged event. @@ -727,11 +727,6 @@ The name of the property that changed. - - - Occurs when a property of this instance changes. - - Occurs when a new item gets selected in the list. @@ -742,23 +737,31 @@ When set, specifies which animation should be used when rows change. - + - When set, returns a view that can be used as the TableView's header. + A delegate to a method taking a + and setting its elements' properties according to the item + passed as second parameter. + The cell must be created first in the + delegate. - - + - When set, returns the height of the view that will be used for the TableView's header. + A delegate to a method creating or reusing a . + The cell will then be passed to the + delegate to set the elements' properties. - - + - When set, returns a view that can be used as the TableView's footer. + The data source of this list controller. + + + + + When set, specifieds which animation should be used when a row is deleted. - @@ -766,46 +769,51 @@ - + - The source of the TableView. + When set, returns the height of the view that will be used for the TableView's header. + - + - A delegate to a method taking a - and setting its elements' properties according to the item - passed as second parameter. - The cell must be created first in the - delegate. + When set, returns a view that can be used as the TableView's footer. + - + - A delegate to a method creating or reusing a . - The cell will then be passed to the - delegate to set the elements' properties. + When set, returns a view that can be used as the TableView's header. + - + - The data source of this list controller. + Gets the TableView's selected item. + Changes to that property's value raise the PropertyChanged event. - + - When set, specifieds which animation should be used when a row is deleted. + The source of the TableView. - + - Gets the TableView's selected item. - Changes to that property's value raise the PropertyChanged event. + Overrides . + Sets or gets the controllers TableView. If you use a TableView + placed in the UI manually, use this property's setter to assign + your TableView to this controller. + + + + + Occurs when a property of this instance changes. - A that handles changes to the underlying + A that handles changes to the underlying data source if this data source is an . The type of the items that the data source contains. @@ -817,7 +825,7 @@ The controller associated to this instance. - + Attempts to dequeue or create a cell for the list. @@ -825,17 +833,17 @@ The NSIndexPath for the cell. The created or recycled cell. - + - When called, checks if the ObservableTableViewController{T}.GetViewForHeader - delegate has been set. If yes, calls that delegate to get the TableView's header. + When called, checks if the ObservableTableViewController{T}.GetHeightForFooter + delegate has been set. If yes, calls that delegate to get the TableView's footer height. The active TableView. The section index. - The UIView that should appear as the section's header. + The footer's height. In the current implementation, only one section is supported. - + When called, checks if the ObservableTableViewController{T}.GetHeightForHeader delegate has been set. If yes, calls that delegate to get the TableView's header height. @@ -845,7 +853,7 @@ The header's height. In the current implementation, only one section is supported. - + When called, checks if the ObservableTableViewController{T}.GetViewForFooter delegate has been set. If yes, calls that delegate to get the TableView's footer. @@ -855,36 +863,36 @@ The UIView that should appear as the section's footer. In the current implementation, only one section is supported. - + - When called, checks if the ObservableTableViewController{T}.GetHeightForFooter - delegate has been set. If yes, calls that delegate to get the TableView's footer height. + When called, checks if the ObservableTableViewController{T}.GetViewForHeader + delegate has been set. If yes, calls that delegate to get the TableView's header. The active TableView. The section index. - The footer's height. + The UIView that should appear as the section's header. In the current implementation, only one section is supported. - + - Overrides the method. + Overrides the method. The active TableView. The number of sections of the UITableView. In the current implementation, only one section is supported. - + - Overrides the method + Overrides the method and notifies the associated that a row has been selected, so that the corresponding events can be raised. The active TableView. The row's NSIndexPath. - + - Overrides the method + Overrides the method and returns the number of rows in the associated data source. The active TableView. @@ -892,6 +900,24 @@ The number of rows in the data source. In the current implementation, only one section is supported. + + + A base class to be used with the when + using Storyboards. + + + + + Initializes a new instance of this class. + + + + + + The parameter passed to this controller by the + method. + + An implementation of allowing @@ -999,8 +1025,22 @@ This implementation can be used in Xamarin iOS applications (not Xamarin Forms). For this navigation service to work properly, it should be initialized - using the method, with the application's - . + using the method, with the application's + . + + + + The key that is returned by the property + when the current UIViewController is the root controller. + + + + + The key that is returned by the property + when the current UIViewController is not found. + This can be the case when the navigation wasn't managed by this NavigationService, + for example when it is directly triggered in the Storyboard. + @@ -1012,7 +1052,7 @@ Displays a new page corresponding to the given key. Make sure to call the - or + or method first. The key corresponding to the page @@ -1025,7 +1065,7 @@ Displays a new page corresponding to the given key, and passes a parameter to the new page's constructor. Make sure to call the - or + or method first. The key corresponding to the page @@ -1043,14 +1083,14 @@ Adds a key/page pair to the navigation service. This method will create a new controller on demand, using - reflection. You can use + reflection. You can use if you need more fine-grained control over the controller's creation. The key that will be used later in the or methods. The type of the controller corresponding to the key. - + Adds a key/page pair to the navigation service. This method allows the caller to have fine grained control over the controller's @@ -1061,7 +1101,18 @@ A Func returning the controller corresponding to the given key. - + + + Adds a key/page pair to the navigation service. + This method should be used when working with Storyboard for the UI. + + The key that will be used later + in the or methods. + The idea of the UIViewController + in the Storyboard. Use the storyboardIdentifier/restorationIdentifier property + in the *.storyboard document. + + Initialized the navigation service. This method must be called before the or 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 new file mode 100644 index 000000000..83235d90a Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.XML diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..bc076cca5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.pdb similarity index 58% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/GalaSoft.MvvmLight.pdb index 19d9c60ba..84134f288 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/monotouch/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.0.0/lib/net35/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..21303670e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..991347bb9 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.xml similarity index 88% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.xml index 25ac9c859..0e2db4865 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.Extras.xml @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -456,6 +492,14 @@ Called when this trigger is attached to a FrameworkElement. + + + This method is here for compatibility + with the Silverlight version. + + The FrameworkElement to which this trigger + is attached. + This method is here for compatibility diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..70921bfb3 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.pdb similarity index 52% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.pdb index 12bcacfaf..1d85a1ce3 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/System.Windows.Interactivity.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net35/System.Windows.Interactivity.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net35/System.Windows.Interactivity.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/net40/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..5bfa5f2a6 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/net40/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..f91a58a1e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/net40/GalaSoft.MvvmLight.Extras.xml new file mode 100644 index 000000000..0e2db4865 --- /dev/null +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.Extras.xml @@ -0,0 +1,613 @@ + + + + GalaSoft.MvvmLight.Extras + + + + + A very simple IOC container with basic functionality needed to register and resolve + instances. If needed, this class can be replaced by another more elaborate + IOC container implementing the IServiceLocator interface. + The inspiration for this class is at https://gist.github.com/716137 but it has + been extended with additional features. + + + + + Checks whether at least one instance of a given class is already created in the container. + + The class that is queried. + True if at least on instance of the class is already created, false otherwise. + + + + Checks whether the instance with the given key is already created for a given class + in the container. + + The class that is queried. + The key that is queried. + True if the instance with the given key is already registered for the given class, + false otherwise. + + + + Gets a value indicating whether a given type T is already registered. + + The type that the method checks for. + True if the type is registered, false otherwise. + + + + Gets a value indicating whether a given type T and a give key + are already registered. + + The type that the method checks for. + The key that the method checks for. + True if the type and key are registered, false otherwise. + + + + Registers a given type for a given interface. + + The interface for which instances will be resolved. + The type that must be used to create instances. + + + + Registers a given type for a given interface with the possibility for immediate + creation of the instance. + + The interface for which instances will be resolved. + The type that must be used to create instances. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given type. + + The type that must be used to create instances. + + + + Registers a given type with the possibility for immediate + creation of the instance. + + The type that must be used to create instances. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given instance for a given type. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + + + + Registers a given instance for a given type with the possibility for immediate + creation of the instance. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given instance for a given type and a given key. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + The key for which the given instance is registered. + + + + Registers a given instance for a given type and a given key with the possibility for immediate + creation of the instance. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + The key for which the given instance is registered. + If true, forces the creation of the default + instance of the provided class. + + + + Resets the instance in its original states. This deletes all the + registrations. + + + + + Unregisters a class from the cache and removes all the previously + created instances. + + The class that must be removed. + + + + Removes the given instance from the cache. The class itself remains + registered and can be used to create other instances. + + The type of the instance to be removed. + The instance that must be removed. + + + + Removes the instance corresponding to the given key from the cache. The class itself remains + registered and can be used to create other instances. + + The type of the instance to be removed. + The key corresponding to the instance that must be removed. + + + + When used with the SimpleIoc container, specifies which constructor + should be used to instantiate when GetInstance is called. + If there is only one constructor in the class, this attribute is + not needed. + + + + + A very simple IOC container with basic functionality needed to register and resolve + instances. If needed, this class can be replaced by another more elaborate + IOC container implementing the IServiceLocator interface. + The inspiration for this class is at https://gist.github.com/716137 but it has + been extended with additional features. + + + + + Checks whether at least one instance of a given class is already created in the container. + + The class that is queried. + True if at least on instance of the class is already created, false otherwise. + + + + Checks whether the instance with the given key is already created for a given class + in the container. + + The class that is queried. + The key that is queried. + True if the instance with the given key is already registered for the given class, + false otherwise. + + + + Gets a value indicating whether a given type T is already registered. + + The type that the method checks for. + True if the type is registered, false otherwise. + + + + Gets a value indicating whether a given type T and a give key + are already registered. + + The type that the method checks for. + The key that the method checks for. + True if the type and key are registered, false otherwise. + + + + Registers a given type for a given interface. + + The interface for which instances will be resolved. + The type that must be used to create instances. + + + + Registers a given type for a given interface with the possibility for immediate + creation of the instance. + + The interface for which instances will be resolved. + The type that must be used to create instances. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given type. + + The type that must be used to create instances. + + + + Registers a given type with the possibility for immediate + creation of the instance. + + The type that must be used to create instances. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given instance for a given type. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + + + + Registers a given instance for a given type with the possibility for immediate + creation of the instance. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given instance for a given type and a given key. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + The key for which the given instance is registered. + + + + Registers a given instance for a given type and a given key with the possibility for immediate + creation of the instance. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + The key for which the given instance is registered. + If true, forces the creation of the default + instance of the provided class. + + + + Resets the instance in its original states. This deletes all the + registrations. + + + + + Unregisters a class from the cache and removes all the previously + created instances. + + The class that must be removed. + + + + Removes the given instance from the cache. The class itself remains + registered and can be used to create other instances. + + The type of the instance to be removed. + The instance that must be removed. + + + + Removes the instance corresponding to the given key from the cache. The class itself remains + registered and can be used to create other instances. + + The type of the instance to be removed. + The key corresponding to the instance that must be removed. + + + + Provides a way to get all the created instances of a given type available in the + cache. Registering a class or a factory does not automatically + create the corresponding instance! To create an instance, either register + the class or the factory with createInstanceImmediately set to true, + or call the GetInstance method before calling GetAllCreatedInstances. + Alternatively, use the GetAllInstances method, which auto-creates default + instances for all registered classes. + + The class of which all instances + must be returned. + All the already created instances of the given type. + + + + Provides a way to get all the created instances of a given type available in the + cache. Registering a class or a factory does not automatically + create the corresponding instance! To create an instance, either register + the class or the factory with createInstanceImmediately set to true, + or call the GetInstance method before calling GetAllCreatedInstances. + Alternatively, use the GetAllInstances method, which auto-creates default + instances for all registered classes. + + The class of which all instances + must be returned. + All the already created instances of the given type. + + + + Gets the service object of the specified type. + + If the type serviceType has not + been registered before calling this method. + + A service object of type . + + An object that specifies the type of service object to get. + + + + Provides a way to get all the created instances of a given type available in the + cache. Calling this method auto-creates default + instances for all registered classes. + + The class of which all instances + must be returned. + All the instances of the given type. + + + + Provides a way to get all the created instances of a given type available in the + cache. Calling this method auto-creates default + instances for all registered classes. + + The class of which all instances + must be returned. + All the instances of the given type. + + + + Provides a way to get an instance of a given type. If no instance had been instantiated + before, a new instance will be created. If an instance had already + been created, that same instance will be returned. + + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type corresponding + to a given key. If no instance had been instantiated with this + key before, a new instance will be created. If an instance had already + been created with the same key, that same instance will be returned. + + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. If no instance had been instantiated + before, a new instance will be created. If an instance had already + been created, that same instance will be returned. + + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type corresponding + to a given key. If no instance had been instantiated with this + key before, a new instance will be created. If an instance had already + been created with the same key, that same instance will be returned. + + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + This class' default instance. + + + + + This can be + used to bind any event on any FrameworkElement to an . + Typically, this element is used in XAML to connect the attached element + to a command located in a ViewModel. This trigger can only be attached + to a FrameworkElement or a class deriving from FrameworkElement. + To access the EventArgs of the fired event, use a RelayCommand<EventArgs> + and leave the CommandParameter and CommandParameterValue empty! + + + + + The dependency property's name. + + + + + Identifies the dependency property + + + + + Identifies the dependency property + + + + + Identifies the dependency property + + + + + Called when this trigger is attached to a FrameworkElement. + + + + + This method is here for compatibility + with the Silverlight version. + + The FrameworkElement to which this trigger + is attached. + + + + This method is here for compatibility + with the Silverlight 3 version. + + The command that must be executed when + this trigger is invoked. + + + + Identifies the dependency property. + + + + + Provides a simple way to invoke this trigger programatically + without any EventArgs. + + + + + Executes the trigger. + To access the EventArgs of the fired event, use a RelayCommand<EventArgs> + and leave the CommandParameter and CommandParameterValue empty! + + The EventArgs of the fired event. + + + + Gets or sets the ICommand that this trigger is bound to. This + is a DependencyProperty. + + + + + Gets or sets an object that will be passed to the + attached to this trigger. This is a DependencyProperty. + + + + + Gets or sets an object that will be passed to the + attached to this trigger. This property is here for compatibility + with the Silverlight version. This is NOT a DependencyProperty. + For databinding, use the property. + + + + + Gets or sets a value indicating whether the attached element must be + disabled when the property's CanExecuteChanged + event fires. If this property is true, and the command's CanExecute + method returns false, the element will be disabled. If this property + is false, the element will not be disabled when the command's + CanExecute method changes. This is a DependencyProperty. + + + + + Gets or sets a value indicating whether the attached element must be + disabled when the property's CanExecuteChanged + event fires. If this property is true, and the command's CanExecute + method returns false, the element will be disabled. This property is here for + compatibility with the Silverlight version. This is NOT a DependencyProperty. + For databinding, use the property. + + + + + Specifies whether the EventArgs of the event that triggered this + action should be passed to the bound RelayCommand. If this is true, + the command should accept arguments of the corresponding + type (for example RelayCommand<MouseButtonEventArgs>). + + + + + Gets or sets a converter used to convert the EventArgs when using + . If PassEventArgsToCommand is false, + this property is never used. + + + + + Gets or sets a parameters for the converter used to convert the EventArgs when using + . If PassEventArgsToCommand is false, + this property is never used. This is a dependency property. + + + + + The definition of the converter used to convert an EventArgs + in the class, if the + property is true. + Set an instance of this class to the + property of the EventToCommand instance. + + + + + The method used to convert the EventArgs instance. + + An instance of EventArgs passed by the + event that the EventToCommand instance is handling. + An optional parameter used for the conversion. Use + the property + to set this value. This may be null. + The converted value. + + + diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..c9530e0bd Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.pdb similarity index 55% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.pdb index 4073cd88d..2c61585c7 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/System.Windows.Interactivity.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/System.Windows.Interactivity.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net40/System.Windows.Interactivity.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net40/System.Windows.Interactivity.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.0.0/lib/net45/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..d079a007e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..08b0e6cc7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.xml similarity index 85% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.xml index 33e50f499..ff36ba045 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Extras.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Extras.xml @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.dll new file mode 100644 index 000000000..86990651c Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb similarity index 61% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb index bbc330a16..b2f499907 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.Platform.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..bc076cca5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.pdb similarity index 58% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.pdb index 19d9c60ba..84134f288 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/net45/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..d079a007e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/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.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..08b0e6cc7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.xml similarity index 85% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.xml index 33e50f499..ff36ba045 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/net45/GalaSoft.MvvmLight.Extras.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Extras.xml @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.dll new file mode 100644 index 000000000..7b592468f Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/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.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pdb new file mode 100644 index 000000000..fdf7f8d61 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pri b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pri similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pri rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.pri diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.xml similarity index 92% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.xml index 32803b682..2a650e70d 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Platform.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.Platform.xml @@ -136,6 +136,21 @@ Windows 8 and Windows Phone Application 8.1 implementation of . + + + The key that is returned by the property + when the current Page is the root page. + + + + + The key that is returned by the property + when the current Page is not found. + This can be the case when the navigation wasn't managed by this NavigationService, + for example when it is directly triggered in the code behind, and the + NavigationService was not configured for this page type. + + If possible, discards the current page and displays the previous page diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.dll new file mode 100644 index 000000000..bc076cca5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.pdb similarity index 58% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.pdb index 19d9c60ba..84134f288 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore45/GalaSoft.MvvmLight.xml 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 new file mode 100644 index 000000000..d079a007e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.dll 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 new file mode 100644 index 000000000..08b0e6cc7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.xml similarity index 85% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.xml index 33e50f499..ff36ba045 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Extras.xml @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.dll new file mode 100644 index 000000000..f8207c648 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/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.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pdb new file mode 100644 index 000000000..adc9f58b0 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pri b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pri similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pri rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.pri diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.xml similarity index 92% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.xml index 32803b682..2a650e70d 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.Platform.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.Platform.xml @@ -136,6 +136,21 @@ Windows 8 and Windows Phone Application 8.1 implementation of . + + + The key that is returned by the property + when the current Page is the root page. + + + + + The key that is returned by the property + when the current Page is not found. + This can be the case when the navigation wasn't managed by this NavigationService, + for example when it is directly triggered in the code behind, and the + NavigationService was not configured for this page type. + + If possible, discards the current page and displays the previous page 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 new file mode 100644 index 000000000..bc076cca5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.dll 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 new file mode 100644 index 000000000..84134f288 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore451/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/netcore451/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Extras.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.XML similarity index 85% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Extras.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.XML index 33e50f499..ff36ba045 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/monotouch/GalaSoft.MvvmLight.Extras.XML +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.XML @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. 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 new file mode 100644 index 000000000..d079a007e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.dll 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 new file mode 100644 index 000000000..08b0e6cc7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.XML 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 new file mode 100644 index 000000000..bc076cca5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/GalaSoft.MvvmLight.dll 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 new file mode 100644 index 000000000..84134f288 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid+monotouch/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.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll new file mode 100644 index 000000000..7ab3cb57d Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb new file mode 100644 index 000000000..3c18ee4e9 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml similarity index 89% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml index 25ac9c859..c2dccb79d 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll similarity index 97% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll index e681fec73..426d73191 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb similarity index 63% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb index a0527da29..939552b02 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/System.Windows.Interactivity.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/System.Windows.Interactivity.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/sl4-wp71/System.Windows.Interactivity.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/sl4-wp71/System.Windows.Interactivity.xml 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 new file mode 100644 index 000000000..d079a007e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll 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 new file mode 100644 index 000000000..08b0e6cc7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Extras.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml similarity index 85% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Extras.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml index 33e50f499..ff36ba045 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/netcore45/GalaSoft.MvvmLight.Extras.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll new file mode 100644 index 000000000..a2724ac00 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb similarity index 70% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb index 059c8d65f..4cb677c24 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml similarity index 98% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml index cd14fe996..9e97c0c24 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml @@ -195,90 +195,6 @@ method has been called on the UI thread. - - - Windows Phone Silverlight implementation of . - This implementation can be used in Windows Phone applications (not Xamarin Forms). - - - - - Use this key name to retrieve the navigation parameter. - - - - - If possible, discards the current page and displays the previous page - on the navigation stack. - - - - - Displays a new page corresponding to the given key. - Make sure to call the method first. - - The key corresponding to the page - that should be displayed. - When this method is called for - a key that has not been configured earlier. - - - - Displays a new page corresponding to the given key, - and passes a parameter to the new page. - Make sure to call the method first. - - The key corresponding to the page - that should be displayed. - The parameter that should be passed - to the new page. - When this method is called for - a key that has not been configured earlier. - - - - Adds a key/page pair to the navigation service. - - The key that will be used later - in the or methods. - The URI of the page corresponding to the key. - - - - Allows a caller to get the navigation parameter corresponding - to the NavigationContext parameter. - - The - of the navigated page. - The navigation parameter. If no parameter is found, - returns null. - - - - Allows a caller to get the navigation parameter corresponding - to the NavigationContext parameter. - - The type of the retrieved parameter. - The - of the navigated page. - The navigation parameter casted to the proper type. - If no parameter is found, returns default(T). - - - - Occurs when a page navigation has happened. - - - - - Occurs when a page navigation is going to happen. - - - - - The key corresponding to the currently displayed page. - - An implementation of allowing @@ -380,5 +296,95 @@ this method will be executed synchronously even though it can be awaited for cross-platform compatibility purposes. + + + Windows Phone Silverlight implementation of . + This implementation can be used in Windows Phone applications (not Xamarin Forms). + + + + + The key that is returned by the property + when the current Page is the root page. + + + + + Use this key name to retrieve the navigation parameter. + + + + + If possible, discards the current page and displays the previous page + on the navigation stack. + + + + + Displays a new page corresponding to the given key. + Make sure to call the method first. + + The key corresponding to the page + that should be displayed. + When this method is called for + a key that has not been configured earlier. + + + + Displays a new page corresponding to the given key, + and passes a parameter to the new page. + Make sure to call the method first. + + The key corresponding to the page + that should be displayed. + The parameter that should be passed + to the new page. + When this method is called for + a key that has not been configured earlier. + + + + Adds a key/page pair to the navigation service. + + The key that will be used later + in the or methods. + The URI of the page corresponding to the key. + + + + Allows a caller to get the navigation parameter corresponding + to the NavigationContext parameter. + + The + of the navigated page. + The navigation parameter. If no parameter is found, + returns null. + + + + Allows a caller to get the navigation parameter corresponding + to the NavigationContext parameter. + + The type of the retrieved parameter. + The + of the navigated page. + The navigation parameter casted to the proper type. + If no parameter is found, returns default(T). + + + + Occurs when a page navigation has happened. + + + + + Occurs when a page navigation is going to happen. + + + + + The key corresponding to the currently displayed page. + + 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 new file mode 100644 index 000000000..bc076cca5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.dll 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 new file mode 100644 index 000000000..84134f288 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp8/System.Windows.Interactivity.dll 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 new file mode 100644 index 000000000..d079a007e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll 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 new file mode 100644 index 000000000..08b0e6cc7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.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.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml new file mode 100644 index 000000000..ff36ba045 --- /dev/null +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml @@ -0,0 +1,460 @@ + + + + GalaSoft.MvvmLight.Extras + + + + + A very simple IOC container with basic functionality needed to register and resolve + instances. If needed, this class can be replaced by another more elaborate + IOC container implementing the IServiceLocator interface. + The inspiration for this class is at https://gist.github.com/716137 but it has + been extended with additional features. + + + + + Checks whether at least one instance of a given class is already created in the container. + + The class that is queried. + True if at least on instance of the class is already created, false otherwise. + + + + Checks whether the instance with the given key is already created for a given class + in the container. + + The class that is queried. + The key that is queried. + True if the instance with the given key is already registered for the given class, + false otherwise. + + + + Gets a value indicating whether a given type T is already registered. + + The type that the method checks for. + True if the type is registered, false otherwise. + + + + Gets a value indicating whether a given type T and a give key + are already registered. + + The type that the method checks for. + The key that the method checks for. + True if the type and key are registered, false otherwise. + + + + Registers a given type for a given interface. + + The interface for which instances will be resolved. + The type that must be used to create instances. + + + + Registers a given type for a given interface with the possibility for immediate + creation of the instance. + + The interface for which instances will be resolved. + The type that must be used to create instances. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given type. + + The type that must be used to create instances. + + + + Registers a given type with the possibility for immediate + creation of the instance. + + The type that must be used to create instances. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given instance for a given type. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + + + + Registers a given instance for a given type with the possibility for immediate + creation of the instance. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given instance for a given type and a given key. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + The key for which the given instance is registered. + + + + Registers a given instance for a given type and a given key with the possibility for immediate + creation of the instance. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + The key for which the given instance is registered. + If true, forces the creation of the default + instance of the provided class. + + + + Resets the instance in its original states. This deletes all the + registrations. + + + + + Unregisters a class from the cache and removes all the previously + created instances. + + The class that must be removed. + + + + Removes the given instance from the cache. The class itself remains + registered and can be used to create other instances. + + The type of the instance to be removed. + The instance that must be removed. + + + + Removes the instance corresponding to the given key from the cache. The class itself remains + registered and can be used to create other instances. + + The type of the instance to be removed. + The key corresponding to the instance that must be removed. + + + + When used with the SimpleIoc container, specifies which constructor + should be used to instantiate when GetInstance is called. + If there is only one constructor in the class, this attribute is + not needed. + + + + + A very simple IOC container with basic functionality needed to register and resolve + instances. If needed, this class can be replaced by another more elaborate + IOC container implementing the IServiceLocator interface. + The inspiration for this class is at https://gist.github.com/716137 but it has + been extended with additional features. + + + + + Checks whether at least one instance of a given class is already created in the container. + + The class that is queried. + True if at least on instance of the class is already created, false otherwise. + + + + Checks whether the instance with the given key is already created for a given class + in the container. + + The class that is queried. + The key that is queried. + True if the instance with the given key is already registered for the given class, + false otherwise. + + + + Gets a value indicating whether a given type T is already registered. + + The type that the method checks for. + True if the type is registered, false otherwise. + + + + Gets a value indicating whether a given type T and a give key + are already registered. + + The type that the method checks for. + The key that the method checks for. + True if the type and key are registered, false otherwise. + + + + Registers a given type for a given interface. + + The interface for which instances will be resolved. + The type that must be used to create instances. + + + + Registers a given type for a given interface with the possibility for immediate + creation of the instance. + + The interface for which instances will be resolved. + The type that must be used to create instances. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given type. + + The type that must be used to create instances. + + + + Registers a given type with the possibility for immediate + creation of the instance. + + The type that must be used to create instances. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given instance for a given type. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + + + + Registers a given instance for a given type with the possibility for immediate + creation of the instance. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + If true, forces the creation of the default + instance of the provided class. + + + + Registers a given instance for a given type and a given key. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + The key for which the given instance is registered. + + + + Registers a given instance for a given type and a given key with the possibility for immediate + creation of the instance. + + The type that is being registered. + The factory method able to create the instance that + must be returned when the given type is resolved. + The key for which the given instance is registered. + If true, forces the creation of the default + instance of the provided class. + + + + Resets the instance in its original states. This deletes all the + registrations. + + + + + Unregisters a class from the cache and removes all the previously + created instances. + + The class that must be removed. + + + + Removes the given instance from the cache. The class itself remains + registered and can be used to create other instances. + + The type of the instance to be removed. + The instance that must be removed. + + + + Removes the instance corresponding to the given key from the cache. The class itself remains + registered and can be used to create other instances. + + The type of the instance to be removed. + The key corresponding to the instance that must be removed. + + + + Provides a way to get all the created instances of a given type available in the + cache. Registering a class or a factory does not automatically + create the corresponding instance! To create an instance, either register + the class or the factory with createInstanceImmediately set to true, + or call the GetInstance method before calling GetAllCreatedInstances. + Alternatively, use the GetAllInstances method, which auto-creates default + instances for all registered classes. + + The class of which all instances + must be returned. + All the already created instances of the given type. + + + + Provides a way to get all the created instances of a given type available in the + cache. Registering a class or a factory does not automatically + create the corresponding instance! To create an instance, either register + the class or the factory with createInstanceImmediately set to true, + or call the GetInstance method before calling GetAllCreatedInstances. + Alternatively, use the GetAllInstances method, which auto-creates default + instances for all registered classes. + + The class of which all instances + must be returned. + All the already created instances of the given type. + + + + Gets the service object of the specified type. + + If the type serviceType has not + been registered before calling this method. + + A service object of type . + + An object that specifies the type of service object to get. + + + + Provides a way to get all the created instances of a given type available in the + cache. Calling this method auto-creates default + instances for all registered classes. + + The class of which all instances + must be returned. + All the instances of the given type. + + + + Provides a way to get all the created instances of a given type available in the + cache. Calling this method auto-creates default + instances for all registered classes. + + The class of which all instances + must be returned. + All the instances of the given type. + + + + Provides a way to get an instance of a given type. If no instance had been instantiated + before, a new instance will be created. If an instance had already + been created, that same instance will be returned. + + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type corresponding + to a given key. If no instance had been instantiated with this + key before, a new instance will be created. If an instance had already + been created with the same key, that same instance will be returned. + + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. If no instance had been instantiated + before, a new instance will be created. If an instance had already + been created, that same instance will be returned. + + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type corresponding + to a given key. If no instance had been instantiated with this + key before, a new instance will be created. If an instance had already + been created with the same key, that same instance will be returned. + + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + This class' default instance. + + + + diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll new file mode 100644 index 000000000..11adf44e3 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb similarity index 69% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb index 30a5fb56b..32fb47c9f 100644 Binary files a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml similarity index 98% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml index d0538befb..03b216e16 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml @@ -195,6 +195,96 @@ method has been called on the UI thread. + + + Windows Phone Silverlight implementation of . + This implementation can be used in Windows Phone applications (not Xamarin Forms). + + + + + The key that is returned by the property + when the current Page is the root page. + + + + + Use this key name to retrieve the navigation parameter. + + + + + If possible, discards the current page and displays the previous page + on the navigation stack. + + + + + Displays a new page corresponding to the given key. + Make sure to call the method first. + + The key corresponding to the page + that should be displayed. + When this method is called for + a key that has not been configured earlier. + + + + Displays a new page corresponding to the given key, + and passes a parameter to the new page. + Make sure to call the method first. + + The key corresponding to the page + that should be displayed. + The parameter that should be passed + to the new page. + When this method is called for + a key that has not been configured earlier. + + + + Adds a key/page pair to the navigation service. + + The key that will be used later + in the or methods. + The URI of the page corresponding to the key. + + + + Allows a caller to get the navigation parameter corresponding + to the NavigationContext parameter. + + The + of the navigated page. + The navigation parameter. If no parameter is found, + returns null. + + + + Allows a caller to get the navigation parameter corresponding + to the NavigationContext parameter. + + The type of the retrieved parameter. + The + of the navigated page. + The navigation parameter casted to the proper type. + If no parameter is found, returns default(T). + + + + Occurs when a page navigation has happened. + + + + + Occurs when a page navigation is going to happen. + + + + + The key corresponding to the currently displayed page. + + An implementation of allowing @@ -296,89 +386,5 @@ this method will be executed synchronously even though it can be awaited for cross-platform compatibility purposes. - - - Windows Phone Silverlight implementation of . - This implementation can be used in Windows Phone applications (not Xamarin Forms). - - - - - Use this key name to retrieve the navigation parameter. - - - - - If possible, discards the current page and displays the previous page - on the navigation stack. - - - - - Displays a new page corresponding to the given key. - Make sure to call the method first. - - The key corresponding to the page - that should be displayed. - When this method is called for - a key that has not been configured earlier. - - - - Displays a new page corresponding to the given key, - and passes a parameter to the new page. - Make sure to call the method first. - - The key corresponding to the page - that should be displayed. - The parameter that should be passed - to the new page. - When this method is called for - a key that has not been configured earlier. - - - - Adds a key/page pair to the navigation service. - - The key that will be used later - in the or methods. - The URI of the page corresponding to the key. - - - - Allows a caller to get the navigation parameter corresponding - to the NavigationContext parameter. - - The - of the navigated page. - The navigation parameter. If no parameter is found, - returns null. - - - - Allows a caller to get the navigation parameter corresponding - to the NavigationContext parameter. - - The type of the retrieved parameter. - The - of the navigated page. - The navigation parameter casted to the proper type. - If no parameter is found, returns default(T). - - - - Occurs when a page navigation has happened. - - - - - Occurs when a page navigation is going to happen. - - - - - The key corresponding to the currently displayed page. - - 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 new file mode 100644 index 000000000..bc076cca5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.dll 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 new file mode 100644 index 000000000..84134f288 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.xml b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.xml similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/GalaSoft.MvvmLight.xml rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/GalaSoft.MvvmLight.xml diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/System.Windows.Interactivity.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/System.Windows.Interactivity.dll similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wp81/System.Windows.Interactivity.dll rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wp81/System.Windows.Interactivity.dll diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML similarity index 85% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML index 33e50f499..ff36ba045 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML @@ -330,10 +330,10 @@ Gets the service object of the specified type. + If the type serviceType has not + been registered before calling this method. - A service object of type . - -or- - null if there is no service object of type . + A service object of type . An object that specifies the type of service object to get. @@ -362,11 +362,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -377,11 +386,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type serviceType has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type serviceType has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. @@ -391,11 +409,20 @@ Provides a way to get an instance of a given type. If no instance had been instantiated before, a new instance will be created. If an instance had already been created, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance + must be returned. + An instance of the given type. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. An instance of the given type. @@ -406,11 +433,20 @@ to a given key. If no instance had been instantiated with this key before, a new instance will be created. If an instance had already been created with the same key, that same instance will be returned. - - If the class has not been registered before, this method - returns null! - + If the type TService has not + been registered before calling this method. + The class of which an instance must be returned. + The key uniquely identifying this instance. + An instance corresponding to the given type and key. + + + + Provides a way to get an instance of a given type. This method + always returns a new instance and doesn't cache it in the IOC container. + + If the type TService has not + been registered before calling this method. The class of which an instance must be returned. The key uniquely identifying this instance. An instance corresponding to the given type and key. 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 new file mode 100644 index 000000000..d079a007e Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll 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 new file mode 100644 index 000000000..08b0e6cc7 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Extras.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML similarity index 92% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML index 32803b682..2a650e70d 100644 --- a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML +++ b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML @@ -136,6 +136,21 @@ Windows 8 and Windows Phone Application 8.1 implementation of . + + + The key that is returned by the property + when the current Page is the root page. + + + + + The key that is returned by the property + when the current Page is not found. + This can be the case when the navigation wasn't managed by this NavigationService, + for example when it is directly triggered in the code behind, and the + NavigationService was not configured for this page type. + + If possible, discards the current page and displays the previous page diff --git a/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll new file mode 100644 index 000000000..afb9a5bd2 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/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.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb new file mode 100644 index 000000000..8a6339cfb Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pdb differ diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri diff --git a/src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.XML b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.XML similarity index 100% rename from src/Pickles/packages/MvvmLightLibs.5.0.2.0/lib/wpa81/GalaSoft.MvvmLight.XML rename to src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.XML 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 new file mode 100644 index 000000000..bc076cca5 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.dll 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 new file mode 100644 index 000000000..84134f288 Binary files /dev/null and b/src/Pickles/packages/MvvmLightLibs.5.1.0.0/lib/wpa81/GalaSoft.MvvmLight.pdb differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/net35/NLog.dll b/src/Pickles/packages/NLog.3.1.0.0/lib/net35/NLog.dll deleted file mode 100644 index 9dae0a8bd..000000000 Binary files a/src/Pickles/packages/NLog.3.1.0.0/lib/net35/NLog.dll and /dev/null differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/net40/NLog.dll b/src/Pickles/packages/NLog.3.1.0.0/lib/net40/NLog.dll deleted file mode 100644 index cad50ccc7..000000000 Binary files a/src/Pickles/packages/NLog.3.1.0.0/lib/net40/NLog.dll and /dev/null differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/net45/NLog.dll b/src/Pickles/packages/NLog.3.1.0.0/lib/net45/NLog.dll deleted file mode 100644 index 86e374ad5..000000000 Binary files a/src/Pickles/packages/NLog.3.1.0.0/lib/net45/NLog.dll and /dev/null differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/sl4/NLog.dll b/src/Pickles/packages/NLog.3.1.0.0/lib/sl4/NLog.dll deleted file mode 100644 index 00d261981..000000000 Binary files a/src/Pickles/packages/NLog.3.1.0.0/lib/sl4/NLog.dll and /dev/null differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/sl5/NLog.dll b/src/Pickles/packages/NLog.3.1.0.0/lib/sl5/NLog.dll deleted file mode 100644 index 6cd4722e0..000000000 Binary files a/src/Pickles/packages/NLog.3.1.0.0/lib/sl5/NLog.dll and /dev/null 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 new file mode 100644 index 000000000..c3628b831 Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/net45/NLog.xml b/src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.xml similarity index 97% rename from src/Pickles/packages/NLog.3.1.0.0/lib/net45/NLog.xml rename to src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.xml index 17c3740df..3fed4788f 100644 --- a/src/Pickles/packages/NLog.3.1.0.0/lib/net45/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.0.0/lib/net35/NLog.xml @@ -1633,11 +1633,11 @@ Provides means to populate factories of named items (such as targets, layouts, layout renderers, etc.). - + Scans the assembly. - The assembly. + The types to scane. The prefix. @@ -2064,13 +2064,13 @@ The type of the class marker attribute. The type of the method marker attribute. - + Scans the assembly for classes marked with and methods marked with and adds them to the factory. - The assembly. + The types to scan. The prefix to use for names. @@ -2125,6 +2125,16 @@ the item. + + + Indicates NLog should not scan this property during configuration. + + + + + Initializes a new instance of the class. + + Marks the object as configuration item for NLog. @@ -2368,6 +2378,11 @@ the application configuration file (app.exe.config). + + + Gets the variables defined in the configuration. + + Gets or sets a value indicating whether the configuration files @@ -2621,6 +2636,207 @@ + + + A fluent class to build log events for NLog. + + + + + Initializes a new instance of the class. + + The to send the log event. + + + + Initializes a new instance of the class. + + The to send the log event. + The for the log event. + + + + Sets the information of the logging event. + + The exception information of the logging event. + + + + + Sets the level of the logging event. + + The level of the logging event. + + + + + Sets the logger name of the logging event. + + The logger name of the logging event. + + + + + Sets the log message on the logging event. + + The log message for the logging event. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + The third object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + The third object to format. + The fourth object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + An object array that contains zero or more objects to format. + + + + + Sets the log message and parameters for formating on the logging event. + + An object that supplies culture-specific formatting information. + A composite format string. + An object array that contains zero or more objects to format. + + + + + Sets a per-event context property on the logging event. + + The name of the context property. + The value of the context property. + + + + + Sets the timestamp of the logging event. + + The timestamp of the logging event. + + + + + Sets the stack trace for the event info. + + The stack trace. + Index of the first user stack frame within the stack trace. + + + + + Writes the log event to the underlying logger. + + + + + Writes the log event to the underlying logger. + + If condition is true, write log event; otherwise ignore event. + + + + Writes the log event to the underlying logger. + + If condition is true, write log event; otherwise ignore event. + + + + Gets the created by the builder. + + + + + Extension methods for NLog . + + + + + Starts building a log event with the specified . + + The logger to write the log event to. + The log level. + + + + + Starts building a log event at the Trace level. + + The logger to write the log event to. + + + + + Starts building a log event at the Debug level. + + The logger to write the log event to. + + + + + Starts building a log event at the Info level. + + The logger to write the log event to. + + + + + Starts building a log event at the Warn level. + + The logger to write the log event to. + + + + + Starts building a log event at the Error level. + + The logger to write the log event to. + + + + + Starts building a log event at the Fatal level. + + The logger to write the log event to. + + Global Diagnostics Context - used for log4net compatibility. @@ -2912,56 +3128,6 @@ The current element in the collection. - - - LINQ-like helpers (cannot use LINQ because we must work with .NET 2.0 profile). - - - - - Filters the given enumerable to return only items of the specified type. - - - Type of the item. - - - The enumerable. - - - Items of specified type. - - - - - Reverses the specified enumerable. - - - Type of enumerable item. - - - The enumerable. - - - Reversed enumerable. - - - - - Determines is the given predicate is met by any element of the enumerable. - - Element type. - The enumerable. - The predicate. - True if predicate returns true for any element of the collection, false otherwise. - - - - Converts the enumerable to list. - - Type of the list element. - The enumerable. - List of elements. - Safe way to get environment variables. @@ -3570,6 +3736,66 @@ Supports mocking of SMTP Client code. + + + Sends a QUIT message to the SMTP server, gracefully ends the TCP connection, and releases all resources used by the current instance of the class. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + + + + Supports mocking of SMTP Client code. + + Network sender which uses HTTP or HTTPS POST. @@ -3771,6 +3997,11 @@ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + Gets underlying socket instance. + + Sends messages over a TCP network connection. @@ -4730,6 +4961,55 @@ The to append the rendered data to. Logging event. + + + Appends the Message of an Exception to the specified . + + The to append the rendered data to. + The exception containing the Message to append. + + + + Appends the method name from Exception's stack trace to the specified . + + The to append the rendered data to. + The Exception whose method name should be appended. + + + + Appends the stack trace from an Exception to the specified . + + The to append the rendered data to. + The Exception whose stack trace should be appended. + + + + Appends the result of calling ToString() on an Exception to the specified . + + The to append the rendered data to. + The Exception whose call to ToString() should be appended. + + + + Appends the type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose type should be appended. + + + + Appends the short type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose short type should be appended. + + + + Appends the contents of an Exception's Data property to the specified . + + The to append the rendered data to. + The Exception whose Data property elements should be appended. + Gets or sets the format of the output. Must be a comma-separated list of exception @@ -8156,31 +8436,6 @@ Fallback value to return in case of exception. Defaults to default value of type T. Result returned by the provided function or fallback value in case of exception. - - - Runs async action. If the action throws, the exception is logged at Error level. Exception is not propagated outside of this method. - - Async action to execute. - - - - Runs the provided async function and returns its result. If exception is thrown, it is logged at Error level. - Exception is not propagated outside of this method. Fallback value is returned instead. - - Return type of the provided function. - Async function to run. - Result returned by the provided function or fallback value in case of exception. - - - - Runs the provided async function and returns its result. If exception is thrown, it is logged at Error level. - Exception is not propagated outside of this method. Fallback value is returned instead. - - Return type of the provided function. - Async function to run. - Fallback value to return in case of exception. Defaults to default value of type T. - Result returned by the provided function or fallback value in case of exception. - Writes the diagnostic message at the specified level. @@ -10036,6 +10291,13 @@ Prevents a default instance of the LogManager class from being created. + + + Adds the given assembly which will be skipped + when NLog is trying to find the calling method on stack trace. + + The assembly to skip. + Gets the logger named after the currently-being-initialized class. @@ -10896,6 +11158,13 @@ Date style numbering. Archives will be stamped with the prior period (Year, Month, Day, Hour, Minute) datetime. + + + Date and sequence style numbering. + Archives will be stamped with the prior period (Year, Month, Day) datetime. + The most recent archive has the highest number (in combination with the date). + + Outputs log messages through the ASP Response object. @@ -12378,6 +12647,16 @@ + + + Gets or sets a value indicating whether to archive old log file on startup. + + + This option works only when the "FileName" parameter denotes a single file. + After archiving the old file, the current log file will be empty. + + + Gets or sets a value indicating whether to replace file contents on each write instead of appending log message at the end. @@ -12694,6 +12973,12 @@ Logging events to be written out. + + + Flush any pending log messages asynchronously (in case of asynchronous targets). + + The asynchronous continuation. + Creating a new instance of WcfLogReceiverClient 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 new file mode 100644 index 000000000..6e6e0d8aa Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/net35/NLog.xml b/src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.xml similarity index 98% rename from src/Pickles/packages/NLog.3.1.0.0/lib/net35/NLog.xml rename to src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.xml index 59e91a170..4daafc873 100644 --- a/src/Pickles/packages/NLog.3.1.0.0/lib/net35/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.0.0/lib/net40/NLog.xml @@ -1633,11 +1633,11 @@ Provides means to populate factories of named items (such as targets, layouts, layout renderers, etc.). - + Scans the assembly. - The assembly. + The types to scane. The prefix. @@ -2064,13 +2064,13 @@ The type of the class marker attribute. The type of the method marker attribute. - + Scans the assembly for classes marked with and methods marked with and adds them to the factory. - The assembly. + The types to scan. The prefix to use for names. @@ -2125,6 +2125,16 @@ the item. + + + Indicates NLog should not scan this property during configuration. + + + + + Initializes a new instance of the class. + + Marks the object as configuration item for NLog. @@ -2368,6 +2378,11 @@ the application configuration file (app.exe.config). + + + Gets the variables defined in the configuration. + + Gets or sets a value indicating whether the configuration files @@ -2621,6 +2636,207 @@ + + + A fluent class to build log events for NLog. + + + + + Initializes a new instance of the class. + + The to send the log event. + + + + Initializes a new instance of the class. + + The to send the log event. + The for the log event. + + + + Sets the information of the logging event. + + The exception information of the logging event. + + + + + Sets the level of the logging event. + + The level of the logging event. + + + + + Sets the logger name of the logging event. + + The logger name of the logging event. + + + + + Sets the log message on the logging event. + + The log message for the logging event. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + The third object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + The third object to format. + The fourth object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + An object array that contains zero or more objects to format. + + + + + Sets the log message and parameters for formating on the logging event. + + An object that supplies culture-specific formatting information. + A composite format string. + An object array that contains zero or more objects to format. + + + + + Sets a per-event context property on the logging event. + + The name of the context property. + The value of the context property. + + + + + Sets the timestamp of the logging event. + + The timestamp of the logging event. + + + + + Sets the stack trace for the event info. + + The stack trace. + Index of the first user stack frame within the stack trace. + + + + + Writes the log event to the underlying logger. + + + + + Writes the log event to the underlying logger. + + If condition is true, write log event; otherwise ignore event. + + + + Writes the log event to the underlying logger. + + If condition is true, write log event; otherwise ignore event. + + + + Gets the created by the builder. + + + + + Extension methods for NLog . + + + + + Starts building a log event with the specified . + + The logger to write the log event to. + The log level. + + + + + Starts building a log event at the Trace level. + + The logger to write the log event to. + + + + + Starts building a log event at the Debug level. + + The logger to write the log event to. + + + + + Starts building a log event at the Info level. + + The logger to write the log event to. + + + + + Starts building a log event at the Warn level. + + The logger to write the log event to. + + + + + Starts building a log event at the Error level. + + The logger to write the log event to. + + + + + Starts building a log event at the Fatal level. + + The logger to write the log event to. + + Global Diagnostics Context - used for log4net compatibility. @@ -2912,56 +3128,6 @@ The current element in the collection. - - - LINQ-like helpers (cannot use LINQ because we must work with .NET 2.0 profile). - - - - - Filters the given enumerable to return only items of the specified type. - - - Type of the item. - - - The enumerable. - - - Items of specified type. - - - - - Reverses the specified enumerable. - - - Type of enumerable item. - - - The enumerable. - - - Reversed enumerable. - - - - - Determines is the given predicate is met by any element of the enumerable. - - Element type. - The enumerable. - The predicate. - True if predicate returns true for any element of the collection, false otherwise. - - - - Converts the enumerable to list. - - Type of the list element. - The enumerable. - List of elements. - Safe way to get environment variables. @@ -3570,66 +3736,6 @@ Supports mocking of SMTP Client code. - - - Sends a QUIT message to the SMTP server, gracefully ends the TCP connection, and releases all resources used by the current instance of the class. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - - - - Supports mocking of SMTP Client code. - - Network sender which uses HTTP or HTTPS POST. @@ -3831,6 +3937,11 @@ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + Gets underlying socket instance. + + Sends messages over a TCP network connection. @@ -4790,6 +4901,55 @@ The to append the rendered data to. Logging event. + + + Appends the Message of an Exception to the specified . + + The to append the rendered data to. + The exception containing the Message to append. + + + + Appends the method name from Exception's stack trace to the specified . + + The to append the rendered data to. + The Exception whose method name should be appended. + + + + Appends the stack trace from an Exception to the specified . + + The to append the rendered data to. + The Exception whose stack trace should be appended. + + + + Appends the result of calling ToString() on an Exception to the specified . + + The to append the rendered data to. + The Exception whose call to ToString() should be appended. + + + + Appends the type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose type should be appended. + + + + Appends the short type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose short type should be appended. + + + + Appends the contents of an Exception's Data property to the specified . + + The to append the rendered data to. + The Exception whose Data property elements should be appended. + Gets or sets the format of the output. Must be a comma-separated list of exception @@ -10071,6 +10231,13 @@ Prevents a default instance of the LogManager class from being created. + + + Adds the given assembly which will be skipped + when NLog is trying to find the calling method on stack trace. + + The assembly to skip. + Gets the logger named after the currently-being-initialized class. @@ -10931,6 +11098,13 @@ Date style numbering. Archives will be stamped with the prior period (Year, Month, Day, Hour, Minute) datetime. + + + Date and sequence style numbering. + Archives will be stamped with the prior period (Year, Month, Day) datetime. + The most recent archive has the highest number (in combination with the date). + + Outputs log messages through the ASP Response object. @@ -12413,6 +12587,16 @@ + + + Gets or sets a value indicating whether to archive old log file on startup. + + + This option works only when the "FileName" parameter denotes a single file. + After archiving the old file, the current log file will be empty. + + + Gets or sets a value indicating whether to replace file contents on each write instead of appending log message at the end. @@ -12729,6 +12913,12 @@ Logging events to be written out. + + + Flush any pending log messages asynchronously (in case of asynchronous targets). + + The asynchronous continuation. + Creating a new instance of WcfLogReceiverClient 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 new file mode 100644 index 000000000..153b966a6 Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/net40/NLog.xml b/src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.xml similarity index 97% rename from src/Pickles/packages/NLog.3.1.0.0/lib/net40/NLog.xml rename to src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.xml index d8ca44623..2a1cede40 100644 --- a/src/Pickles/packages/NLog.3.1.0.0/lib/net40/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.0.0/lib/net45/NLog.xml @@ -1633,11 +1633,11 @@ Provides means to populate factories of named items (such as targets, layouts, layout renderers, etc.). - + Scans the assembly. - The assembly. + The types to scane. The prefix. @@ -2064,13 +2064,13 @@ The type of the class marker attribute. The type of the method marker attribute. - + Scans the assembly for classes marked with and methods marked with and adds them to the factory. - The assembly. + The types to scan. The prefix to use for names. @@ -2125,6 +2125,16 @@ the item. + + + Indicates NLog should not scan this property during configuration. + + + + + Initializes a new instance of the class. + + Marks the object as configuration item for NLog. @@ -2368,6 +2378,11 @@ the application configuration file (app.exe.config). + + + Gets the variables defined in the configuration. + + Gets or sets a value indicating whether the configuration files @@ -2621,6 +2636,271 @@ + + + A global logging class using caller info to find the logger. + + + + + Starts building a log event with the specified . + + The log level. + The full path of the source file that contains the caller. This is the file path at the time of compile. + An instance of the fluent . + + + + Starts building a log event at the Trace level. + + The full path of the source file that contains the caller. This is the file path at the time of compile. + An instance of the fluent . + + + + Starts building a log event at the Debug level. + + The full path of the source file that contains the caller. This is the file path at the time of compile. + An instance of the fluent . + + + + Starts building a log event at the Info level. + + The full path of the source file that contains the caller. This is the file path at the time of compile. + An instance of the fluent . + + + + Starts building a log event at the Warn level. + + The full path of the source file that contains the caller. This is the file path at the time of compile. + An instance of the fluent . + + + + Starts building a log event at the Error level. + + The full path of the source file that contains the caller. This is the file path at the time of compile. + An instance of the fluent . + + + + Starts building a log event at the Fatal level. + + The full path of the source file that contains the caller. This is the file path at the time of compile. + An instance of the fluent . + + + + A fluent class to build log events for NLog. + + + + + Initializes a new instance of the class. + + The to send the log event. + + + + Initializes a new instance of the class. + + The to send the log event. + The for the log event. + + + + Sets the information of the logging event. + + The exception information of the logging event. + + + + + Sets the level of the logging event. + + The level of the logging event. + + + + + Sets the logger name of the logging event. + + The logger name of the logging event. + + + + + Sets the log message on the logging event. + + The log message for the logging event. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + The third object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + The third object to format. + The fourth object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + An object array that contains zero or more objects to format. + + + + + Sets the log message and parameters for formating on the logging event. + + An object that supplies culture-specific formatting information. + A composite format string. + An object array that contains zero or more objects to format. + + + + + Sets a per-event context property on the logging event. + + The name of the context property. + The value of the context property. + + + + + Sets the timestamp of the logging event. + + The timestamp of the logging event. + + + + + Sets the stack trace for the event info. + + The stack trace. + Index of the first user stack frame within the stack trace. + + + + + Writes the log event to the underlying logger. + + The method or property name of the caller to the method. This is set at by the compiler. + The full path of the source file that contains the caller. This is set at by the compiler. + The line number in the source file at which the method is called. This is set at by the compiler. + + + + Writes the log event to the underlying logger if the condition delegate is true. + + If condition is true, write log event; otherwise ignore event. + The method or property name of the caller to the method. This is set at by the compiler. + The full path of the source file that contains the caller. This is set at by the compiler. + The line number in the source file at which the method is called. This is set at by the compiler. + + + + Writes the log event to the underlying logger if the condition is true. + + If condition is true, write log event; otherwise ignore event. + The method or property name of the caller to the method. This is set at by the compiler. + The full path of the source file that contains the caller. This is set at by the compiler. + The line number in the source file at which the method is called. This is set at by the compiler. + + + + Gets the created by the builder. + + + + + Extension methods for NLog . + + + + + Starts building a log event with the specified . + + The logger to write the log event to. + The log level. + + + + + Starts building a log event at the Trace level. + + The logger to write the log event to. + + + + + Starts building a log event at the Debug level. + + The logger to write the log event to. + + + + + Starts building a log event at the Info level. + + The logger to write the log event to. + + + + + Starts building a log event at the Warn level. + + The logger to write the log event to. + + + + + Starts building a log event at the Error level. + + The logger to write the log event to. + + + + + Starts building a log event at the Fatal level. + + The logger to write the log event to. + + Global Diagnostics Context - used for log4net compatibility. @@ -2912,56 +3192,6 @@ The current element in the collection. - - - LINQ-like helpers (cannot use LINQ because we must work with .NET 2.0 profile). - - - - - Filters the given enumerable to return only items of the specified type. - - - Type of the item. - - - The enumerable. - - - Items of specified type. - - - - - Reverses the specified enumerable. - - - Type of enumerable item. - - - The enumerable. - - - Reversed enumerable. - - - - - Determines is the given predicate is met by any element of the enumerable. - - Element type. - The enumerable. - The predicate. - True if predicate returns true for any element of the collection, false otherwise. - - - - Converts the enumerable to list. - - Type of the list element. - The enumerable. - List of elements. - Safe way to get environment variables. @@ -3771,6 +4001,11 @@ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + Gets underlying socket instance. + + Sends messages over a TCP network connection. @@ -4730,6 +4965,55 @@ The to append the rendered data to. Logging event. + + + Appends the Message of an Exception to the specified . + + The to append the rendered data to. + The exception containing the Message to append. + + + + Appends the method name from Exception's stack trace to the specified . + + The to append the rendered data to. + The Exception whose method name should be appended. + + + + Appends the stack trace from an Exception to the specified . + + The to append the rendered data to. + The Exception whose stack trace should be appended. + + + + Appends the result of calling ToString() on an Exception to the specified . + + The to append the rendered data to. + The Exception whose call to ToString() should be appended. + + + + Appends the type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose type should be appended. + + + + Appends the short type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose short type should be appended. + + + + Appends the contents of an Exception's Data property to the specified . + + The to append the rendered data to. + The Exception whose Data property elements should be appended. + Gets or sets the format of the output. Must be a comma-separated list of exception @@ -8156,6 +8440,31 @@ Fallback value to return in case of exception. Defaults to default value of type T. Result returned by the provided function or fallback value in case of exception. + + + Runs async action. If the action throws, the exception is logged at Error level. Exception is not propagated outside of this method. + + Async action to execute. + + + + Runs the provided async function and returns its result. If exception is thrown, it is logged at Error level. + Exception is not propagated outside of this method. Fallback value is returned instead. + + Return type of the provided function. + Async function to run. + Result returned by the provided function or fallback value in case of exception. + + + + Runs the provided async function and returns its result. If exception is thrown, it is logged at Error level. + Exception is not propagated outside of this method. Fallback value is returned instead. + + Return type of the provided function. + Async function to run. + Fallback value to return in case of exception. Defaults to default value of type T. + Result returned by the provided function or fallback value in case of exception. + Writes the diagnostic message at the specified level. @@ -10011,6 +10320,13 @@ Prevents a default instance of the LogManager class from being created. + + + Adds the given assembly which will be skipped + when NLog is trying to find the calling method on stack trace. + + The assembly to skip. + Gets the logger named after the currently-being-initialized class. @@ -10871,6 +11187,13 @@ Date style numbering. Archives will be stamped with the prior period (Year, Month, Day, Hour, Minute) datetime. + + + Date and sequence style numbering. + Archives will be stamped with the prior period (Year, Month, Day) datetime. + The most recent archive has the highest number (in combination with the date). + + Outputs log messages through the ASP Response object. @@ -12353,6 +12676,16 @@ + + + Gets or sets a value indicating whether to archive old log file on startup. + + + This option works only when the "FileName" parameter denotes a single file. + After archiving the old file, the current log file will be empty. + + + Gets or sets a value indicating whether to replace file contents on each write instead of appending log message at the end. @@ -12669,6 +13002,12 @@ Logging events to be written out. + + + Flush any pending log messages asynchronously (in case of asynchronous targets). + + The asynchronous continuation. + Creating a new instance of WcfLogReceiverClient 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 new file mode 100644 index 000000000..5dc1c10b6 Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/sl4/NLog.xml b/src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.xml similarity index 96% rename from src/Pickles/packages/NLog.3.1.0.0/lib/sl4/NLog.xml rename to src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.xml index 216f1178b..2092e7f37 100644 --- a/src/Pickles/packages/NLog.3.1.0.0/lib/sl4/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.0.0/lib/sl4/NLog.xml @@ -1593,11 +1593,11 @@ Provides means to populate factories of named items (such as targets, layouts, layout renderers, etc.). - + Scans the assembly. - The assembly. + The types to scane. The prefix. @@ -1995,13 +1995,13 @@ The type of the class marker attribute. The type of the method marker attribute. - + Scans the assembly for classes marked with and methods marked with and adds them to the factory. - The assembly. + The types to scan. The prefix to use for names. @@ -2056,6 +2056,16 @@ the item. + + + Indicates NLog should not scan this property during configuration. + + + + + Initializes a new instance of the class. + + Marks the object as configuration item for NLog. @@ -2273,6 +2283,11 @@ Name of the file that contains the element (to be used as a base for including other files). Ignore any errors during configuration. + + + Gets the variables defined in the configuration. + + Gets or sets a value indicating whether the configuration files @@ -2526,6 +2541,207 @@ + + + A fluent class to build log events for NLog. + + + + + Initializes a new instance of the class. + + The to send the log event. + + + + Initializes a new instance of the class. + + The to send the log event. + The for the log event. + + + + Sets the information of the logging event. + + The exception information of the logging event. + + + + + Sets the level of the logging event. + + The level of the logging event. + + + + + Sets the logger name of the logging event. + + The logger name of the logging event. + + + + + Sets the log message on the logging event. + + The log message for the logging event. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + The third object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + The third object to format. + The fourth object to format. + + + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + An object array that contains zero or more objects to format. + + + + + Sets the log message and parameters for formating on the logging event. + + An object that supplies culture-specific formatting information. + A composite format string. + An object array that contains zero or more objects to format. + + + + + Sets a per-event context property on the logging event. + + The name of the context property. + The value of the context property. + + + + + Sets the timestamp of the logging event. + + The timestamp of the logging event. + + + + + Sets the stack trace for the event info. + + The stack trace. + Index of the first user stack frame within the stack trace. + + + + + Writes the log event to the underlying logger. + + + + + Writes the log event to the underlying logger. + + If condition is true, write log event; otherwise ignore event. + + + + Writes the log event to the underlying logger. + + If condition is true, write log event; otherwise ignore event. + + + + Gets the created by the builder. + + + + + Extension methods for NLog . + + + + + Starts building a log event with the specified . + + The logger to write the log event to. + The log level. + + + + + Starts building a log event at the Trace level. + + The logger to write the log event to. + + + + + Starts building a log event at the Debug level. + + The logger to write the log event to. + + + + + Starts building a log event at the Info level. + + The logger to write the log event to. + + + + + Starts building a log event at the Warn level. + + The logger to write the log event to. + + + + + Starts building a log event at the Error level. + + The logger to write the log event to. + + + + + Starts building a log event at the Fatal level. + + The logger to write the log event to. + + Global Diagnostics Context - used for log4net compatibility. @@ -2790,56 +3006,6 @@ The current element in the collection. - - - LINQ-like helpers (cannot use LINQ because we must work with .NET 2.0 profile). - - - - - Filters the given enumerable to return only items of the specified type. - - - Type of the item. - - - The enumerable. - - - Items of specified type. - - - - - Reverses the specified enumerable. - - - Type of enumerable item. - - - The enumerable. - - - Reversed enumerable. - - - - - Determines is the given predicate is met by any element of the enumerable. - - Element type. - The enumerable. - The predicate. - True if predicate returns true for any element of the collection, false otherwise. - - - - Converts the enumerable to list. - - Type of the list element. - The enumerable. - List of elements. - Safe way to get environment variables. @@ -3456,6 +3622,11 @@ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + Gets underlying socket instance. + + Sends messages over a TCP network connection. @@ -4110,6 +4281,55 @@ The to append the rendered data to. Logging event. + + + Appends the Message of an Exception to the specified . + + The to append the rendered data to. + The exception containing the Message to append. + + + + Appends the method name from Exception's stack trace to the specified . + + The to append the rendered data to. + The Exception whose method name should be appended. + + + + Appends the stack trace from an Exception to the specified . + + The to append the rendered data to. + The Exception whose stack trace should be appended. + + + + Appends the result of calling ToString() on an Exception to the specified . + + The to append the rendered data to. + The Exception whose call to ToString() should be appended. + + + + Appends the type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose type should be appended. + + + + Appends the short type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose short type should be appended. + + + + Appends the contents of an Exception's Data property to the specified . + + The to append the rendered data to. + The Exception whose Data property elements should be appended. + Gets or sets the format of the output. Must be a comma-separated list of exception @@ -7283,6 +7503,13 @@ Prevents a default instance of the LogManager class from being created. + + + Adds the given assembly which will be skipped + when NLog is trying to find the calling method on stack trace. + + The assembly to skip. + Gets the logger named after the currently-being-initialized class. @@ -7907,6 +8134,13 @@ Date style numbering. Archives will be stamped with the prior period (Year, Month, Day, Hour, Minute) datetime. + + + Date and sequence style numbering. + Archives will be stamped with the prior period (Year, Month, Day) datetime. + The most recent archive has the highest number (in combination with the date). + + Sends log messages to the remote instance of Chainsaw application from log4j. @@ -8655,6 +8889,16 @@ + + + Gets or sets a value indicating whether to archive old log file on startup. + + + This option works only when the "FileName" parameter denotes a single file. + After archiving the old file, the current log file will be empty. + + + Gets or sets a value indicating whether to replace file contents on each write instead of appending log message at the end. @@ -8907,6 +9151,12 @@ Logging events to be written out. + + + Flush any pending log messages asynchronously (in case of asynchronous targets). + + The asynchronous continuation. + Creating a new instance of WcfLogReceiverClient 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 new file mode 100644 index 000000000..80337449b Binary files /dev/null and b/src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.dll differ diff --git a/src/Pickles/packages/NLog.3.1.0.0/lib/sl5/NLog.xml b/src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.xml similarity index 96% rename from src/Pickles/packages/NLog.3.1.0.0/lib/sl5/NLog.xml rename to src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.xml index ab8bd8c14..2092e7f37 100644 --- a/src/Pickles/packages/NLog.3.1.0.0/lib/sl5/NLog.xml +++ b/src/Pickles/packages/NLog.3.2.0.0/lib/sl5/NLog.xml @@ -4,6 +4,366 @@ NLog + + + Indicates that the value of the marked element could be null sometimes, + so the check for null is necessary before its usage + + + [CanBeNull] public object Test() { return null; } + public void UseTest() { + var p = Test(); + var s = p.ToString(); // Warning: Possible 'System.NullReferenceException' + } + + + + + Indicates that the value of the marked element could never be null + + + [NotNull] public object Foo() { + return null; // Warning: Possible 'null' assignment + } + + + + + Indicates that the marked method builds string by format pattern and (optional) arguments. + Parameter, which contains format string, should be given in constructor. The format string + should be in -like form + + + [StringFormatMethod("message")] + public void ShowError(string message, params object[] args) { /* do something */ } + public void Foo() { + ShowError("Failed: {0}"); // Warning: Non-existing argument in format string + } + + + + + Specifies which parameter of an annotated method should be treated as format-string + + + + + Indicates that the function argument should be string literal and match one + of the parameters of the caller function. For example, ReSharper annotates + the parameter of + + + public void Foo(string param) { + if (param == null) + throw new ArgumentNullException("par"); // Warning: Cannot resolve symbol + } + + + + + Indicates that the method is contained in a type that implements + interface + and this method is used to notify that some property value changed + + + The method should be non-static and conform to one of the supported signatures: + + NotifyChanged(string) + NotifyChanged(params string[]) + NotifyChanged{T}(Expression{Func{T}}) + NotifyChanged{T,U}(Expression{Func{T,U}}) + SetProperty{T}(ref T, T, string) + + + + internal class Foo : INotifyPropertyChanged { + public event PropertyChangedEventHandler PropertyChanged; + [NotifyPropertyChangedInvocator] + protected virtual void NotifyChanged(string propertyName) { ... } + + private string _name; + public string Name { + get { return _name; } + set { _name = value; NotifyChanged("LastName"); /* Warning */ } + } + } + + Examples of generated notifications: + + NotifyChanged("Property") + NotifyChanged(() => Property) + NotifyChanged((VM x) => x.Property) + SetProperty(ref myField, value, "Property") + + + + + + Describes dependency between method input and output + + +

Function Definition Table syntax:

+ + FDT ::= FDTRow [;FDTRow]* + FDTRow ::= Input => Output | Output <= Input + Input ::= ParameterName: Value [, Input]* + Output ::= [ParameterName: Value]* {halt|stop|void|nothing|Value} + Value ::= true | false | null | notnull | canbenull + + If method has single input parameter, it's name could be omitted.
+ Using halt (or void/nothing, which is the same) + for method output means that the methos doesn't return normally.
+ canbenull annotation is only applicable for output parameters.
+ You can use multiple [ContractAnnotation] for each FDT row, + or use single attribute with rows separated by semicolon.
+
+ + + [ContractAnnotation("=> halt")] + public void TerminationMethod() + + + [ContractAnnotation("halt <= condition: false")] + public void Assert(bool condition, string text) // regular assertion method + + + [ContractAnnotation("s:null => true")] + public bool IsNullOrEmpty(string s) // string.IsNullOrEmpty() + + + // A method that returns null if the parameter is null, and not null if the parameter is not null + [ContractAnnotation("null => null; notnull => notnull")] + public object Transform(object data) + + + [ContractAnnotation("s:null=>false; =>true,result:notnull; =>false, result:null")] + public bool TryParse(string s, out Person result) + + +
+ + + Indicates that marked element should be localized or not + + + [LocalizationRequiredAttribute(true)] + internal class Foo { + private string str = "my string"; // Warning: Localizable string + } + + + + + Indicates that the value of the marked type (or its derivatives) + cannot be compared using '==' or '!=' operators and Equals() + should be used instead. However, using '==' or '!=' for comparison + with null is always permitted. + + + [CannotApplyEqualityOperator] + class NoEquality { } + class UsesNoEquality { + public void Test() { + var ca1 = new NoEquality(); + var ca2 = new NoEquality(); + if (ca1 != null) { // OK + bool condition = ca1 == ca2; // Warning + } + } + } + + + + + When applied to a target attribute, specifies a requirement for any type marked + with the target attribute to implement or inherit specific type or types. + + + [BaseTypeRequired(typeof(IComponent)] // Specify requirement + internal class ComponentAttribute : Attribute { } + [Component] // ComponentAttribute requires implementing IComponent interface + internal class MyComponent : IComponent { } + + + + + Indicates that the marked symbol is used implicitly + (e.g. via reflection, in external library), so this symbol + will not be marked as unused (as well as by other usage inspections) + + + + + Should be used on attributes and causes ReSharper + to not mark symbols marked with such attributes as unused + (as well as by other usage inspections) + + + + Only entity marked with attribute considered used + + + Indicates implicit assignment to a member + + + + Indicates implicit instantiation of a type with fixed constructor signature. + That means any unused constructor parameters won't be reported as such. + + + + Indicates implicit instantiation of a type + + + + Specify what is considered used implicitly + when marked with + or + + + + Members of entity marked with attribute are considered used + + + Entity marked with attribute and all its members considered used + + + + This attribute is intended to mark publicly available API + which should not be removed and so is treated as used + + + + + Tells code analysis engine if the parameter is completely handled + when the invoked method is on stack. If the parameter is a delegate, + indicates that delegate is executed while the method is executed. + If the parameter is an enumerable, indicates that it is enumerated + while the method is executed + + + + + Indicates that a method does not make any observable state changes. + The same as System.Diagnostics.Contracts.PureAttribute + + + [Pure] private int Multiply(int x, int y) { return x * y; } + public void Foo() { + const int a = 2, b = 2; + Multiply(a, b); // Waring: Return value of pure method is not used + } + + + + + Indicates that a parameter is a path to a file or a folder + within a web project. Path can be relative or absolute, + starting from web root (~) + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter + is an MVC action. If applied to a method, the MVC action name is calculated + implicitly from the context. Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String) + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC area. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String) + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that + the parameter is an MVC controller. If applied to a method, + the MVC controller name is calculated implicitly from the context. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String, String) + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC Master. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Controller.View(String, String) + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC model type. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Controller.View(String, Object) + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that + the parameter is an MVC partial view. If applied to a method, + the MVC partial view name is calculated implicitly from the context. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(HtmlHelper, String) + + + + + ASP.NET MVC attribute. Allows disabling all inspections + for MVC views within a class or a method. + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC display template. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.DisplayExtensions.DisplayForModel(HtmlHelper, String) + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC editor template. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.EditorExtensions.EditorForModel(HtmlHelper, String) + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC template. + Use this attribute for custom wrappers similar to + System.ComponentModel.DataAnnotations.UIHintAttribute(System.String) + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter + is an MVC view. If applied to a method, the MVC view name is calculated implicitly + from the context. Use this attribute for custom wrappers similar to + System.Web.Mvc.Controller.View(Object) + + + + + ASP.NET MVC attribute. When applied to a parameter of an attribute, + indicates that this parameter is an MVC action name + + + [ActionName("Foo")] + public ActionResult Login(string returnUrl) { + ViewBag.ReturnUrl = Url.Action("Foo"); // OK + return RedirectToAction("Bar"); // Error: Cannot resolve action + } + + + + + Razor attribute. Indicates that a parameter or a method is a Razor section. + Use this attribute for custom wrappers similar to + System.Web.WebPages.WebPageBase.RenderSection(String) + + Asynchronous continuation delegate - function invoked at the end of asynchronous @@ -1233,11 +1593,11 @@ Provides means to populate factories of named items (such as targets, layouts, layout renderers, etc.). - + Scans the assembly. - The assembly. + The types to scane. The prefix. @@ -1635,13 +1995,13 @@ The type of the class marker attribute. The type of the method marker attribute. - + Scans the assembly for classes marked with and methods marked with and adds them to the factory. - The assembly. + The types to scan. The prefix to use for names. @@ -1696,6 +2056,16 @@ the item. + + + Indicates NLog should not scan this property during configuration. + + + + + Initializes a new instance of the class. + + Marks the object as configuration item for NLog. @@ -1913,6 +2283,11 @@ Name of the file that contains the element (to be used as a base for including other files). Ignore any errors during configuration. + + + Gets the variables defined in the configuration. + + Gets or sets a value indicating whether the configuration files @@ -2166,438 +2541,279 @@ - - - Global Diagnostics Context - used for log4net compatibility. - - - - - Sets the Global Diagnostics Context item to the specified value. - - Item name. - Item value. - - - - Gets the Global Diagnostics Context named item. - - Item name. - The item value of string.Empty if the value is not present. - - - - Checks whether the specified item exists in the Global Diagnostics Context. - - Item name. - A boolean indicating whether the specified item exists in current thread GDC. - - - - Removes the specified item from the Global Diagnostics Context. - - Item name. - - - - Clears the content of the GDC. - - - - - Global Diagnostics Context - a dictionary structure to hold per-application-instance values. - - - - - Sets the Global Diagnostics Context item to the specified value. - - Item name. - Item value. - - + - Gets the Global Diagnostics Context named item. + A fluent class to build log events for NLog. - Item name. - The item value of string.Empty if the value is not present. - + - Checks whether the specified item exists in the Global Diagnostics Context. + Initializes a new instance of the class. - Item name. - A boolean indicating whether the specified item exists in current thread GDC. + The to send the log event. - + - Removes the specified item from the Global Diagnostics Context. + Initializes a new instance of the class. - Item name. + The to send the log event. + The for the log event. - + - Clears the content of the GDC. + Sets the information of the logging event. + The exception information of the logging event. + - + - Indicates that the value of the marked element could be null sometimes, - so the check for null is necessary before its usage + Sets the level of the logging event. - - [CanBeNull] public object Test() { return null; } - public void UseTest() { - var p = Test(); - var s = p.ToString(); // Warning: Possible 'System.NullReferenceException' - } - + The level of the logging event. + - + - Indicates that the value of the marked element could never be null + Sets the logger name of the logging event. - - [NotNull] public object Foo() { - return null; // Warning: Possible 'null' assignment - } - + The logger name of the logging event. + - + - Indicates that the marked method builds string by format pattern and (optional) arguments. - Parameter, which contains format string, should be given in constructor. The format string - should be in -like form + Sets the log message on the logging event. - - [StringFormatMethod("message")] - public void ShowError(string message, params object[] args) { /* do something */ } - public void Foo() { - ShowError("Failed: {0}"); // Warning: Non-existing argument in format string - } - - - - - Specifies which parameter of an annotated method should be treated as format-string - + The log message for the logging event. + - + - Indicates that the function argument should be string literal and match one - of the parameters of the caller function. For example, ReSharper annotates - the parameter of + Sets the log message and parameters for formating on the logging event. - - public void Foo(string param) { - if (param == null) - throw new ArgumentNullException("par"); // Warning: Cannot resolve symbol - } - - - - - Indicates that the method is contained in a type that implements - interface - and this method is used to notify that some property value changed - - - The method should be non-static and conform to one of the supported signatures: - - NotifyChanged(string) - NotifyChanged(params string[]) - NotifyChanged{T}(Expression{Func{T}}) - NotifyChanged{T,U}(Expression{Func{T,U}}) - SetProperty{T}(ref T, T, string) - - - - internal class Foo : INotifyPropertyChanged { - public event PropertyChangedEventHandler PropertyChanged; - [NotifyPropertyChangedInvocator] - protected virtual void NotifyChanged(string propertyName) { ... } - - private string _name; - public string Name { - get { return _name; } - set { _name = value; NotifyChanged("LastName"); /* Warning */ } - } - } - - Examples of generated notifications: - - NotifyChanged("Property") - NotifyChanged(() => Property) - NotifyChanged((VM x) => x.Property) - SetProperty(ref myField, value, "Property") - - + A composite format string. + The object to format. + - + - Describes dependency between method input and output + Sets the log message and parameters for formating on the logging event. - -

Function Definition Table syntax:

- - FDT ::= FDTRow [;FDTRow]* - FDTRow ::= Input => Output | Output <= Input - Input ::= ParameterName: Value [, Input]* - Output ::= [ParameterName: Value]* {halt|stop|void|nothing|Value} - Value ::= true | false | null | notnull | canbenull - - If method has single input parameter, it's name could be omitted.
- Using halt (or void/nothing, which is the same) - for method output means that the methos doesn't return normally.
- canbenull annotation is only applicable for output parameters.
- You can use multiple [ContractAnnotation] for each FDT row, - or use single attribute with rows separated by semicolon.
-
- - - [ContractAnnotation("=> halt")] - public void TerminationMethod() - - - [ContractAnnotation("halt <= condition: false")] - public void Assert(bool condition, string text) // regular assertion method - - - [ContractAnnotation("s:null => true")] - public bool IsNullOrEmpty(string s) // string.IsNullOrEmpty() - - - // A method that returns null if the parameter is null, and not null if the parameter is not null - [ContractAnnotation("null => null; notnull => notnull")] - public object Transform(object data) - - - [ContractAnnotation("s:null=>false; =>true,result:notnull; =>false, result:null")] - public bool TryParse(string s, out Person result) - - + A composite format string. + The first object to format. + The second object to format. +
- + - Indicates that marked element should be localized or not + Sets the log message and parameters for formating on the logging event. - - [LocalizationRequiredAttribute(true)] - internal class Foo { - private string str = "my string"; // Warning: Localizable string - } - + A composite format string. + The first object to format. + The second object to format. + The third object to format. + - - - Indicates that the value of the marked type (or its derivatives) - cannot be compared using '==' or '!=' operators and Equals() - should be used instead. However, using '==' or '!=' for comparison - with null is always permitted. - - - [CannotApplyEqualityOperator] - class NoEquality { } - class UsesNoEquality { - public void Test() { - var ca1 = new NoEquality(); - var ca2 = new NoEquality(); - if (ca1 != null) { // OK - bool condition = ca1 == ca2; // Warning - } - } - } - + + + Sets the log message and parameters for formating on the logging event. + + A composite format string. + The first object to format. + The second object to format. + The third object to format. + The fourth object to format. + - + - When applied to a target attribute, specifies a requirement for any type marked - with the target attribute to implement or inherit specific type or types. + Sets the log message and parameters for formating on the logging event. - - [BaseTypeRequired(typeof(IComponent)] // Specify requirement - internal class ComponentAttribute : Attribute { } - [Component] // ComponentAttribute requires implementing IComponent interface - internal class MyComponent : IComponent { } - + A composite format string. + An object array that contains zero or more objects to format. + - + - Indicates that the marked symbol is used implicitly - (e.g. via reflection, in external library), so this symbol - will not be marked as unused (as well as by other usage inspections) + Sets the log message and parameters for formating on the logging event. + An object that supplies culture-specific formatting information. + A composite format string. + An object array that contains zero or more objects to format. + - + - Should be used on attributes and causes ReSharper - to not mark symbols marked with such attributes as unused - (as well as by other usage inspections) + Sets a per-event context property on the logging event. + The name of the context property. + The value of the context property. + - - Only entity marked with attribute considered used + + + Sets the timestamp of the logging event. + + The timestamp of the logging event. + - - Indicates implicit assignment to a member + + + Sets the stack trace for the event info. + + The stack trace. + Index of the first user stack frame within the stack trace. + - + - Indicates implicit instantiation of a type with fixed constructor signature. - That means any unused constructor parameters won't be reported as such. + Writes the log event to the underlying logger. - - Indicates implicit instantiation of a type + + + Writes the log event to the underlying logger. + + If condition is true, write log event; otherwise ignore event. - + - Specify what is considered used implicitly - when marked with - or + Writes the log event to the underlying logger. + If condition is true, write log event; otherwise ignore event. - - Members of entity marked with attribute are considered used + + + Gets the created by the builder. + - - Entity marked with attribute and all its members considered used + + + Extension methods for NLog . + - + - This attribute is intended to mark publicly available API - which should not be removed and so is treated as used + Starts building a log event with the specified . + The logger to write the log event to. + The log level. + - + - Tells code analysis engine if the parameter is completely handled - when the invoked method is on stack. If the parameter is a delegate, - indicates that delegate is executed while the method is executed. - If the parameter is an enumerable, indicates that it is enumerated - while the method is executed + Starts building a log event at the Trace level. + The logger to write the log event to. + - + - Indicates that a method does not make any observable state changes. - The same as System.Diagnostics.Contracts.PureAttribute + Starts building a log event at the Debug level. - - [Pure] private int Multiply(int x, int y) { return x * y; } - public void Foo() { - const int a = 2, b = 2; - Multiply(a, b); // Waring: Return value of pure method is not used - } - + The logger to write the log event to. + - + - Indicates that a parameter is a path to a file or a folder - within a web project. Path can be relative or absolute, - starting from web root (~) + Starts building a log event at the Info level. + The logger to write the log event to. + - + - ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter - is an MVC action. If applied to a method, the MVC action name is calculated - implicitly from the context. Use this attribute for custom wrappers similar to - System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String) + Starts building a log event at the Warn level. + The logger to write the log event to. + - + - ASP.NET MVC attribute. Indicates that a parameter is an MVC area. - Use this attribute for custom wrappers similar to - System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String) + Starts building a log event at the Error level. + The logger to write the log event to. + - + - ASP.NET MVC attribute. If applied to a parameter, indicates that - the parameter is an MVC controller. If applied to a method, - the MVC controller name is calculated implicitly from the context. - Use this attribute for custom wrappers similar to - System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String, String) + Starts building a log event at the Fatal level. + The logger to write the log event to. + - + - ASP.NET MVC attribute. Indicates that a parameter is an MVC Master. - Use this attribute for custom wrappers similar to - System.Web.Mvc.Controller.View(String, String) + Global Diagnostics Context - used for log4net compatibility. - + - ASP.NET MVC attribute. Indicates that a parameter is an MVC model type. - Use this attribute for custom wrappers similar to - System.Web.Mvc.Controller.View(String, Object) + Sets the Global Diagnostics Context item to the specified value. + Item name. + Item value. - + - ASP.NET MVC attribute. If applied to a parameter, indicates that - the parameter is an MVC partial view. If applied to a method, - the MVC partial view name is calculated implicitly from the context. - Use this attribute for custom wrappers similar to - System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(HtmlHelper, String) + Gets the Global Diagnostics Context named item. + Item name. + The item value of string.Empty if the value is not present. - + - ASP.NET MVC attribute. Allows disabling all inspections - for MVC views within a class or a method. + Checks whether the specified item exists in the Global Diagnostics Context. + Item name. + A boolean indicating whether the specified item exists in current thread GDC. - + - ASP.NET MVC attribute. Indicates that a parameter is an MVC display template. - Use this attribute for custom wrappers similar to - System.Web.Mvc.Html.DisplayExtensions.DisplayForModel(HtmlHelper, String) + Removes the specified item from the Global Diagnostics Context. + Item name. - + - ASP.NET MVC attribute. Indicates that a parameter is an MVC editor template. - Use this attribute for custom wrappers similar to - System.Web.Mvc.Html.EditorExtensions.EditorForModel(HtmlHelper, String) + Clears the content of the GDC. - + - ASP.NET MVC attribute. Indicates that a parameter is an MVC template. - Use this attribute for custom wrappers similar to - System.ComponentModel.DataAnnotations.UIHintAttribute(System.String) + Global Diagnostics Context - a dictionary structure to hold per-application-instance values. - + - ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter - is an MVC view. If applied to a method, the MVC view name is calculated implicitly - from the context. Use this attribute for custom wrappers similar to - System.Web.Mvc.Controller.View(Object) + Sets the Global Diagnostics Context item to the specified value. + + Item name. + Item value. + + + + Gets the Global Diagnostics Context named item. + Item name. + The item value of string.Empty if the value is not present. - + - ASP.NET MVC attribute. When applied to a parameter of an attribute, - indicates that this parameter is an MVC action name + Checks whether the specified item exists in the Global Diagnostics Context. - - [ActionName("Foo")] - public ActionResult Login(string returnUrl) { - ViewBag.ReturnUrl = Url.Action("Foo"); // OK - return RedirectToAction("Bar"); // Error: Cannot resolve action - } - + Item name. + A boolean indicating whether the specified item exists in current thread GDC. - + - Razor attribute. Indicates that a parameter or a method is a Razor section. - Use this attribute for custom wrappers similar to - System.Web.WebPages.WebPageBase.RenderSection(String) + Removes the specified item from the Global Diagnostics Context. + + Item name. + + + + Clears the content of the GDC. @@ -2790,56 +3006,6 @@ The current element in the collection. - - - LINQ-like helpers (cannot use LINQ because we must work with .NET 2.0 profile). - - - - - Filters the given enumerable to return only items of the specified type. - - - Type of the item. - - - The enumerable. - - - Items of specified type. - - - - - Reverses the specified enumerable. - - - Type of enumerable item. - - - The enumerable. - - - Reversed enumerable. - - - - - Determines is the given predicate is met by any element of the enumerable. - - Element type. - The enumerable. - The predicate. - True if predicate returns true for any element of the collection, false otherwise. - - - - Converts the enumerable to list. - - Type of the list element. - The enumerable. - List of elements. - Safe way to get environment variables. @@ -3456,6 +3622,11 @@ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + Gets underlying socket instance. + + Sends messages over a TCP network connection. @@ -4110,6 +4281,55 @@ The to append the rendered data to. Logging event. + + + Appends the Message of an Exception to the specified . + + The to append the rendered data to. + The exception containing the Message to append. + + + + Appends the method name from Exception's stack trace to the specified . + + The to append the rendered data to. + The Exception whose method name should be appended. + + + + Appends the stack trace from an Exception to the specified . + + The to append the rendered data to. + The Exception whose stack trace should be appended. + + + + Appends the result of calling ToString() on an Exception to the specified . + + The to append the rendered data to. + The Exception whose call to ToString() should be appended. + + + + Appends the type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose type should be appended. + + + + Appends the short type of an Exception to the specified . + + The to append the rendered data to. + The Exception whose short type should be appended. + + + + Appends the contents of an Exception's Data property to the specified . + + The to append the rendered data to. + The Exception whose Data property elements should be appended. + Gets or sets the format of the output. Must be a comma-separated list of exception @@ -7283,6 +7503,13 @@ Prevents a default instance of the LogManager class from being created. + + + Adds the given assembly which will be skipped + when NLog is trying to find the calling method on stack trace. + + The assembly to skip. + Gets the logger named after the currently-being-initialized class. @@ -7907,6 +8134,13 @@ Date style numbering. Archives will be stamped with the prior period (Year, Month, Day, Hour, Minute) datetime. + + + Date and sequence style numbering. + Archives will be stamped with the prior period (Year, Month, Day) datetime. + The most recent archive has the highest number (in combination with the date). + + Sends log messages to the remote instance of Chainsaw application from log4j. @@ -8655,6 +8889,16 @@ + + + Gets or sets a value indicating whether to archive old log file on startup. + + + This option works only when the "FileName" parameter denotes a single file. + After archiving the old file, the current log file will be empty. + + + Gets or sets a value indicating whether to replace file contents on each write instead of appending log message at the end. @@ -8907,6 +9151,12 @@ Logging events to be written out. + + + Flush any pending log messages asynchronously (in case of asynchronous targets). + + The asynchronous continuation. + Creating a new instance of WcfLogReceiverClient diff --git a/src/Pickles/packages/NLog.Config.3.1.0.0/content/NLog.config b/src/Pickles/packages/NLog.Config.3.2.0.0/content/NLog.config similarity index 100% rename from src/Pickles/packages/NLog.Config.3.1.0.0/content/NLog.config rename to src/Pickles/packages/NLog.Config.3.2.0.0/content/NLog.config diff --git a/src/Pickles/packages/NLog.Config.3.1.0.0/tools/Install.ps1 b/src/Pickles/packages/NLog.Config.3.2.0.0/tools/Install.ps1 similarity index 100% rename from src/Pickles/packages/NLog.Config.3.1.0.0/tools/Install.ps1 rename to src/Pickles/packages/NLog.Config.3.2.0.0/tools/Install.ps1 diff --git a/src/Pickles/packages/NLog.Schema.3.1.0.0/content/NLog.xsd b/src/Pickles/packages/NLog.Schema.3.2.0.0/content/NLog.xsd similarity index 98% rename from src/Pickles/packages/NLog.Schema.3.1.0.0/content/NLog.xsd rename to src/Pickles/packages/NLog.Schema.3.2.0.0/content/NLog.xsd index 98aba4e2f..481702860 100644 --- a/src/Pickles/packages/NLog.Schema.3.1.0.0/content/NLog.xsd +++ b/src/Pickles/packages/NLog.Schema.3.2.0.0/content/NLog.xsd @@ -8,6 +8,7 @@ + @@ -214,6 +215,7 @@ + @@ -991,21 +993,22 @@ + - - - - - - - - - + + + + + + + + + + - @@ -1068,14 +1071,14 @@ Gets ors set a value indicating whether a managed file stream is forced, instead of used the native implementation. - + - Indicates whether to replace file contents on each write instead of appending log message at the end. + File attributes (Windows only). - + - Indicates whether to enable log file(s) to be deleted. + Indicates whether to replace file contents on each write instead of appending log message at the end. @@ -1083,9 +1086,9 @@ Indicates whether to delete old log file on startup. - + - Indicates whether to create directories if they don't exist. + Name of the file to write to. @@ -1093,29 +1096,34 @@ Value specifying the date format to use when archving files. - + - Name of the file to write to. + Indicates whether to archive old log file on startup. - + - File attributes (Windows only). + Indicates whether to create directories if they don't exist. - + - Log file buffer size in bytes. + Indicates whether to enable log file(s) to be deleted. - + - Delay in milliseconds to wait before attempting to write to the file again. + Maximum number of seconds that files are kept open. If this number is negative the files are not automatically closed after a period of inactivity. - + - Number of times the write is appended on the file before NLog discards the log message. + Indicates whether concurrent writes to the log file by multiple processes on different network hosts. + + + + + Indicates whether to keep log file open instead of opening and closing it on each logging event. @@ -1123,24 +1131,24 @@ Indicates whether concurrent writes to the log file by multiple processes on the same host. - + - Indicates whether to keep log file open instead of opening and closing it on each logging event. + Number of times the write is appended on the file before NLog discards the log message. - + - Indicates whether concurrent writes to the log file by multiple processes on different network hosts. + Delay in milliseconds to wait before attempting to write to the file again. - + - Number of files to be kept open. Setting this to a higher value may improve performance in a situation where a single File target is writing to many files (such as splitting by level or by logger). + Log file buffer size in bytes. - + - Maximum number of seconds that files are kept open. If this number is negative the files are not automatically closed after a period of inactivity. + Number of files to be kept open. Setting this to a higher value may improve performance in a situation where a single File target is writing to many files (such as splitting by level or by logger). @@ -1165,6 +1173,7 @@ + @@ -2654,4 +2663,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Pickles/packages/NUnit.2.6.3/lib/nunit.framework.dll b/src/Pickles/packages/NUnit.2.6.3/lib/nunit.framework.dll deleted file mode 100644 index 780727f21..000000000 Binary files a/src/Pickles/packages/NUnit.2.6.3/lib/nunit.framework.dll and /dev/null differ diff --git a/src/Pickles/packages/NUnit.2.6.4/lib/nunit.framework.dll b/src/Pickles/packages/NUnit.2.6.4/lib/nunit.framework.dll new file mode 100644 index 000000000..ed6550bb0 Binary files /dev/null and b/src/Pickles/packages/NUnit.2.6.4/lib/nunit.framework.dll differ diff --git a/src/Pickles/packages/NUnit.2.6.3/lib/nunit.framework.xml b/src/Pickles/packages/NUnit.2.6.4/lib/nunit.framework.xml similarity index 99% rename from src/Pickles/packages/NUnit.2.6.3/lib/nunit.framework.xml rename to src/Pickles/packages/NUnit.2.6.4/lib/nunit.framework.xml index f40847c7a..450552c11 100644 --- a/src/Pickles/packages/NUnit.2.6.3/lib/nunit.framework.xml +++ b/src/Pickles/packages/NUnit.2.6.4/lib/nunit.framework.xml @@ -3581,49 +3581,49 @@ - Asserts that superset is not a subject of subset. + Asserts that the superset does not contain the subset - The IEnumerable superset to be considered - The IEnumerable subset to be considered + The IEnumerable subset to be considered + The IEnumerable superset to be considered - Asserts that superset is not a subject of subset. + Asserts that the superset does not contain the subset - The IEnumerable superset to be considered - The IEnumerable subset to be considered + The IEnumerable subset to be considered + The IEnumerable superset to be considered The message that will be displayed on failure - Asserts that superset is not a subject of subset. + Asserts that the superset does not contain the subset - The IEnumerable superset to be considered - The IEnumerable subset to be considered + The IEnumerable subset to be considered + The IEnumerable superset to be considered The message that will be displayed on failure Arguments to be used in formatting the message - Asserts that superset is a subset of subset. + Asserts that the superset contains the subset. - The IEnumerable superset to be considered - The IEnumerable subset to be considered + The IEnumerable subset to be considered + The IEnumerable superset to be considered - Asserts that superset is a subset of subset. + Asserts that the superset contains the subset. - The IEnumerable superset to be considered - The IEnumerable subset to be considered + The IEnumerable subset to be considered + The IEnumerable superset to be considered The message that will be displayed on failure - Asserts that superset is a subset of subset. + Asserts that the superset contains the subset. - The IEnumerable superset to be considered - The IEnumerable subset to be considered + The IEnumerable subset to be considered + The IEnumerable superset to be considered The message that will be displayed on failure Arguments to be used in formatting the message @@ -6551,6 +6551,23 @@ The target for the action attribute + + + Method called before each test + + Info about the test to be run + + + + Method called after each test + + Info about the test that was just run + + + + Gets or sets the ActionTargets for this attribute + + Adding this attribute to a method within a @@ -8066,7 +8083,7 @@ presence of a particular attribute on an object. - + Returns the constraint provided as an argument - used to allow custom custom constraints to easily participate in the syntax. @@ -10352,6 +10369,13 @@ The value to be tested True if no exception is thrown, otherwise false + + + Test whether the constraint is satisfied by a given delegate + + Delegate returning the value to be tested + True if no exception is thrown, otherwise false + Write the constraint description to a MessageWriter diff --git a/src/Pickles/packages/NUnit.2.6.3/license.txt b/src/Pickles/packages/NUnit.2.6.4/license.txt similarity index 91% rename from src/Pickles/packages/NUnit.2.6.3/license.txt rename to src/Pickles/packages/NUnit.2.6.4/license.txt index b12903afb..def2bb812 100644 --- a/src/Pickles/packages/NUnit.2.6.3/license.txt +++ b/src/Pickles/packages/NUnit.2.6.4/license.txt @@ -1,4 +1,4 @@ -Copyright © 2002-2013 Charlie Poole +Copyright © 2002-2014 Charlie Poole Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov Copyright © 2000-2002 Philip A. Craig @@ -8,7 +8,7 @@ Permission is granted to anyone to use this software for any purpose, including 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required. -Portions Copyright © 2002-2013 Charlie Poole or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. Craig +Portions Copyright © 2002-2014 Charlie Poole or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. Craig 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit.framework.dll b/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit.framework.dll deleted file mode 100644 index 780727f21..000000000 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit.framework.dll and /dev/null differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/license.txt b/src/Pickles/packages/NUnit.Runners.2.6.4/license.txt similarity index 91% rename from src/Pickles/packages/NUnit.Runners.2.6.3/license.txt rename to src/Pickles/packages/NUnit.Runners.2.6.4/license.txt index b12903afb..def2bb812 100644 --- a/src/Pickles/packages/NUnit.Runners.2.6.3/license.txt +++ b/src/Pickles/packages/NUnit.Runners.2.6.4/license.txt @@ -1,4 +1,4 @@ -Copyright © 2002-2013 Charlie Poole +Copyright © 2002-2014 Charlie Poole Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov Copyright © 2000-2002 Philip A. Craig @@ -8,7 +8,7 @@ Permission is granted to anyone to use this software for any purpose, including 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required. -Portions Copyright © 2002-2013 Charlie Poole or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. Craig +Portions Copyright © 2002-2014 Charlie Poole or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. Craig 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/agent.conf b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/agent.conf similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/agent.conf rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/agent.conf diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/agent.log.conf b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/agent.log.conf similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/agent.log.conf rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/agent.log.conf diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/launcher.log.conf b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/launcher.log.conf similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/launcher.log.conf rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/launcher.log.conf diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Failure.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Failure.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Failure.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Failure.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Ignored.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Ignored.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Ignored.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Ignored.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Inconclusive.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Inconclusive.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Inconclusive.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Inconclusive.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Skipped.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Skipped.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Skipped.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Skipped.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Success.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Success.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Circles/Success.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Circles/Success.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Failure.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Failure.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Failure.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Failure.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Ignored.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Ignored.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Ignored.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Ignored.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Inconclusive.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Inconclusive.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Inconclusive.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Inconclusive.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Skipped.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Skipped.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Skipped.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Skipped.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Success.jpg b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Success.jpg similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Classic/Success.jpg rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Classic/Success.jpg diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Failure.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Failure.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Failure.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Failure.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Ignored.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Ignored.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Ignored.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Ignored.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Inconclusive.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Inconclusive.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Inconclusive.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Inconclusive.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Skipped.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Skipped.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Skipped.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Skipped.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Success.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Success.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Default/Success.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Default/Success.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Failure.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Failure.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Failure.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Failure.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Ignored.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Ignored.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Ignored.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Ignored.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Inconclusive.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Inconclusive.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Inconclusive.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Inconclusive.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Skipped.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Skipped.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Skipped.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Skipped.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Success.png b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Success.png similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/Images/Tree/Visual Studio/Success.png rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/Images/Tree/Visual Studio/Success.png diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/log4net.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/log4net.dll similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/log4net.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/log4net.dll diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit-console-runner.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit-console-runner.dll similarity index 97% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit-console-runner.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit-console-runner.dll index a2a21ceeb..f6bdf7edb 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit-console-runner.dll and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit-console-runner.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit-gui-runner.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit-gui-runner.dll similarity index 77% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit-gui-runner.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit-gui-runner.dll index 7161b97b7..be2f39a07 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit-gui-runner.dll and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit-gui-runner.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.core.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.core.dll similarity index 52% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.core.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.core.dll index b306faeed..0156d2d73 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.core.dll and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.core.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.core.interfaces.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.core.interfaces.dll similarity index 98% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.core.interfaces.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.core.interfaces.dll index 4053b0dda..32d9b1fd0 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.core.interfaces.dll and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.core.interfaces.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.uiexception.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.uiexception.dll similarity index 99% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.uiexception.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.uiexception.dll index 34f2f4ef9..2a926b265 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.uiexception.dll and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.uiexception.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.uikit.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.uikit.dll similarity index 76% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.uikit.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.uikit.dll index d93d8cad8..f0e9ae22b 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.uikit.dll and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.uikit.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.util.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.util.dll similarity index 95% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.util.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.util.dll index 122eff440..c7e029476 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/lib/nunit.util.dll and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/lib/nunit.util.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent-x86.exe b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent-x86.exe similarity index 90% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent-x86.exe rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent-x86.exe index fe0d71987..39c908f49 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent-x86.exe and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent-x86.exe differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent-x86.exe.config b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent-x86.exe.config similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent-x86.exe.config rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent-x86.exe.config diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent.exe b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent.exe similarity index 91% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent.exe rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent.exe index 6f057bc21..98718baeb 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent.exe and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent.exe differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent.exe.config b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent.exe.config similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-agent.exe.config rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-agent.exe.config diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console-x86.exe b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console-x86.exe similarity index 90% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console-x86.exe rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console-x86.exe index c71d21ff0..8f5eb9244 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console-x86.exe and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console-x86.exe differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console-x86.exe.config b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console-x86.exe.config similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console-x86.exe.config rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console-x86.exe.config diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console.exe b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console.exe similarity index 89% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console.exe rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console.exe index 8d65c8257..e24be6abc 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console.exe and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console.exe differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console.exe.config b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console.exe.config similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-console.exe.config rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-console.exe.config diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-editor.exe b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-editor.exe similarity index 99% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-editor.exe rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-editor.exe index 640a25332..b8b4c6f84 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-editor.exe and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-editor.exe differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-x86.exe b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-x86.exe similarity index 92% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-x86.exe rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-x86.exe index bd77b8155..90a7c76a2 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-x86.exe and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-x86.exe differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-x86.exe.config b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-x86.exe.config similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit-x86.exe.config rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit-x86.exe.config diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit.exe b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit.exe similarity index 91% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit.exe rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit.exe index 5cd35b91a..9f2408684 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit.exe and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit.exe differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit.exe.config b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit.exe.config similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/nunit.exe.config rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit.exe.config diff --git a/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit.framework.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit.framework.dll new file mode 100644 index 000000000..ed6550bb0 Binary files /dev/null and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/nunit.framework.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-agent.exe b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-agent.exe similarity index 97% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-agent.exe rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-agent.exe index 9ec9da03d..d90c62fb0 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-agent.exe and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-agent.exe differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-agent.exe.config b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-agent.exe.config similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-agent.exe.config rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-agent.exe.config diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-launcher.exe b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-launcher.exe similarity index 98% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-launcher.exe rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-launcher.exe index edc56d327..626d3359c 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-launcher.exe and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-launcher.exe differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-launcher.exe.config b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-launcher.exe.config similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit-launcher.exe.config rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit-launcher.exe.config diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit.framework.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit.framework.dll similarity index 95% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit.framework.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit.framework.dll index 573b9fcb7..1fca36829 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit.framework.dll and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit.framework.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit.tests.dll b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit.tests.dll similarity index 81% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit.tests.dll rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit.tests.dll index 7051add97..dc9496bb7 100644 Binary files a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/pnunit.tests.dll and b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/pnunit.tests.dll differ diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/runpnunit.bat b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/runpnunit.bat similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/runpnunit.bat rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/runpnunit.bat diff --git a/src/Pickles/packages/NUnit.Runners.2.6.3/tools/test.conf b/src/Pickles/packages/NUnit.Runners.2.6.4/tools/test.conf similarity index 100% rename from src/Pickles/packages/NUnit.Runners.2.6.3/tools/test.conf rename to src/Pickles/packages/NUnit.Runners.2.6.4/tools/test.conf diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net20/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net20/Newtonsoft.Json.dll deleted file mode 100644 index 53d12e85e..000000000 Binary files a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net20/Newtonsoft.Json.dll and /dev/null differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net35/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net35/Newtonsoft.Json.dll deleted file mode 100644 index 5f3d9bd1d..000000000 Binary files a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net35/Newtonsoft.Json.dll and /dev/null differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net40/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net40/Newtonsoft.Json.dll deleted file mode 100644 index 5931de169..000000000 Binary files a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net40/Newtonsoft.Json.dll and /dev/null differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net45/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net45/Newtonsoft.Json.dll deleted file mode 100644 index 0f63bef10..000000000 Binary files a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net45/Newtonsoft.Json.dll and /dev/null differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/netcore45/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/netcore45/Newtonsoft.Json.dll deleted file mode 100644 index 57bfc8d0d..000000000 Binary files a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/netcore45/Newtonsoft.Json.dll and /dev/null differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll deleted file mode 100644 index db2daf5ce..000000000 Binary files a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll and /dev/null differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll deleted file mode 100644 index 8fe392baf..000000000 Binary files a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll and /dev/null differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll new file mode 100644 index 000000000..475e31231 Binary files /dev/null and b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net20/Newtonsoft.Json.xml b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.xml similarity index 97% rename from src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net20/Newtonsoft.Json.xml rename to src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.xml index 570f98817..159260e2e 100644 --- a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net20/Newtonsoft.Json.xml +++ b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.xml @@ -23,12 +23,12 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -56,9 +56,9 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -297,10 +297,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -369,7 +369,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -449,6 +449,22 @@ The to read the token from. A flag indicating whether the current token's children should be written. + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + Writes the specified end token. @@ -692,9 +708,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -968,9 +984,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -992,7 +1008,7 @@ - Writes a value that represents a BSON object id. + Writes a [] value that represents a BSON object id. The Object ID value to write. @@ -1771,6 +1787,26 @@ The that will be used to filter the trace messages passed to the writer. + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Contract details for a used by the . @@ -1950,6 +1986,31 @@ The that will be used to filter the trace messages passed to the writer. + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Provides an interface to enable a class to return line and position information. @@ -3205,6 +3266,12 @@ A collection of the ancestor tokens of this token. + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + Returns a collection of the sibling tokens after this token, in document order. @@ -3484,7 +3551,7 @@ - Performs an explicit conversion from to . + Performs an explicit conversion from to []. The value. The result of the conversion. @@ -3715,7 +3782,7 @@ - Performs an implicit conversion from to . + Performs an implicit conversion from [] to . The value to create a from. The initialized with the specified value. @@ -3879,6 +3946,52 @@ A new instance of the . + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + Gets a comparer that can compare two tokens for value equality. @@ -4597,10 +4710,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. + A [] or a null reference if the next JSON token is null. @@ -4892,10 +5005,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -5065,7 +5178,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -5261,9 +5374,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -6237,7 +6350,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the ancestors of every node in the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. @@ -6245,7 +6366,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the descendants of every node in the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. @@ -6260,14 +6389,14 @@ An of that contains the source collection. The token key. - An of that contains the values of every node in the source collection with the given key. + An of that contains the values of every token in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -6276,7 +6405,7 @@ The type to convert the values to. An of that contains the source collection. The token key. - An that contains the converted values of every node in the source collection with the given key. + An that contains the converted values of every token in the source collection with the given key. @@ -6284,7 +6413,7 @@ The type to convert the values to. An of that contains the source collection. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -6309,7 +6438,7 @@ The source collection type. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -6318,7 +6447,7 @@ An of that contains the source collection. The type to convert the values to. The source collection type. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -6380,6 +6509,12 @@ An containing the descendant tokens of the . + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + Adds the specified content as children of this . @@ -7061,7 +7196,7 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -7072,10 +7207,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -7110,6 +7245,11 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Gets the at the reader's current position. + + Gets the path of the current JSON token. @@ -7117,7 +7257,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -7290,9 +7430,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -7312,6 +7452,11 @@ The value to write. + + + Gets the at the writer's current position. + + Gets the token being writen. @@ -8144,6 +8289,12 @@ The that will get and set the during serialization. + + + Gets or sets the for this property. + + The for this property. + Gets or sets the type of the property. diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll new file mode 100644 index 000000000..0a61735d2 Binary files /dev/null and b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net35/Newtonsoft.Json.xml b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.xml similarity index 97% rename from src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net35/Newtonsoft.Json.xml rename to src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.xml index 943a0d0f3..328141547 100644 --- a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net35/Newtonsoft.Json.xml +++ b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.xml @@ -6,12 +6,12 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -39,9 +39,9 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -286,10 +286,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -366,7 +366,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -446,6 +446,22 @@ The to read the token from. A flag indicating whether the current token's children should be written. + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + Writes the specified end token. @@ -701,9 +717,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -983,9 +999,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1007,7 +1023,7 @@ - Writes a value that represents a BSON object id. + Writes a [] value that represents a BSON object id. The Object ID value to write. @@ -1929,6 +1945,26 @@ The that will be used to filter the trace messages passed to the writer. + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Contract details for a used by the . @@ -2108,6 +2144,31 @@ The that will be used to filter the trace messages passed to the writer. + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Provides an interface to enable a class to return line and position information. @@ -2206,6 +2267,12 @@ A collection of the ancestor tokens of this token. + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + Returns a collection of the sibling tokens after this token, in document order. @@ -2499,7 +2566,7 @@ - Performs an explicit conversion from to . + Performs an explicit conversion from to []. The value. The result of the conversion. @@ -2744,7 +2811,7 @@ - Performs an implicit conversion from to . + Performs an implicit conversion from [] to . The value to create a from. The initialized with the specified value. @@ -2908,6 +2975,52 @@ A new instance of the . + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + Gets a comparer that can compare two tokens for value equality. @@ -3739,10 +3852,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. + A [] or a null reference if the next JSON token is null. @@ -4040,10 +4153,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -4219,7 +4332,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -4415,9 +4528,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -5464,7 +5577,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the ancestors of every node in the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. @@ -5472,7 +5593,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the descendants of every node in the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. @@ -5487,14 +5616,14 @@ An of that contains the source collection. The token key. - An of that contains the values of every node in the source collection with the given key. + An of that contains the values of every token in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -5503,7 +5632,7 @@ The type to convert the values to. An of that contains the source collection. The token key. - An that contains the converted values of every node in the source collection with the given key. + An that contains the converted values of every token in the source collection with the given key. @@ -5511,7 +5640,7 @@ The type to convert the values to. An of that contains the source collection. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -5536,7 +5665,7 @@ The source collection type. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -5545,7 +5674,7 @@ An of that contains the source collection. The type to convert the values to. The source collection type. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -5607,6 +5736,12 @@ An containing the descendant tokens of the . + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + Adds the specified content as children of this . @@ -6299,7 +6434,7 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -6310,10 +6445,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -6354,6 +6489,11 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Gets the at the reader's current position. + + Gets the path of the current JSON token. @@ -6361,7 +6501,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -6540,9 +6680,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -6562,6 +6702,11 @@ The value to write. + + + Gets the at the writer's current position. + + Gets the token being writen. @@ -7287,6 +7432,12 @@ The that will get and set the during serialization. + + + Gets or sets the for this property. + + The for this property. + Gets or sets the type of the property. diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll new file mode 100644 index 000000000..55d537fb9 Binary files /dev/null and b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net40/Newtonsoft.Json.xml b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.xml similarity index 97% rename from src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net40/Newtonsoft.Json.xml rename to src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.xml index 067e55918..c8eecf630 100644 --- a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net40/Newtonsoft.Json.xml +++ b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.xml @@ -6,12 +6,12 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -39,9 +39,9 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -286,10 +286,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -366,7 +366,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -446,6 +446,22 @@ The to read the token from. A flag indicating whether the current token's children should be written. + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + Writes the specified end token. @@ -701,9 +717,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -983,9 +999,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1007,7 +1023,7 @@ - Writes a value that represents a BSON object id. + Writes a [] value that represents a BSON object id. The Object ID value to write. @@ -1956,6 +1972,26 @@ The target to get the value from. The value. + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Contract details for a used by the . @@ -2135,6 +2171,31 @@ The that will be used to filter the trace messages passed to the writer. + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Provides an interface to enable a class to return line and position information. @@ -2233,6 +2294,12 @@ A collection of the ancestor tokens of this token. + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + Returns a collection of the sibling tokens after this token, in document order. @@ -2526,7 +2593,7 @@ - Performs an explicit conversion from to . + Performs an explicit conversion from to []. The value. The result of the conversion. @@ -2771,7 +2838,7 @@ - Performs an implicit conversion from to . + Performs an implicit conversion from [] to . The value to create a from. The initialized with the specified value. @@ -2953,6 +3020,52 @@ A new instance of the . + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + Gets a comparer that can compare two tokens for value equality. @@ -3886,10 +3999,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. + A [] or a null reference if the next JSON token is null. @@ -4187,10 +4300,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -4366,7 +4479,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -4562,9 +4675,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -5710,7 +5823,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the ancestors of every node in the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. @@ -5718,7 +5839,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the descendants of every node in the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. @@ -5733,14 +5862,14 @@ An of that contains the source collection. The token key. - An of that contains the values of every node in the source collection with the given key. + An of that contains the values of every token in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -5749,7 +5878,7 @@ The type to convert the values to. An of that contains the source collection. The token key. - An that contains the converted values of every node in the source collection with the given key. + An that contains the converted values of every token in the source collection with the given key. @@ -5757,7 +5886,7 @@ The type to convert the values to. An of that contains the source collection. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -5782,7 +5911,7 @@ The source collection type. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -5791,7 +5920,7 @@ An of that contains the source collection. The type to convert the values to. The source collection type. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -5859,6 +5988,12 @@ An containing the descendant tokens of the . + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + Adds the specified content as children of this . @@ -6565,7 +6700,7 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -6576,10 +6711,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -6620,6 +6755,11 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Gets the at the reader's current position. + + Gets the path of the current JSON token. @@ -6627,7 +6767,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -6806,9 +6946,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -6828,6 +6968,11 @@ The value to write. + + + Gets the at the writer's current position. + + Gets the token being writen. @@ -7568,6 +7713,12 @@ The that will get and set the during serialization. + + + Gets or sets the for this property. + + The for this property. + Gets or sets the type of the property. diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll new file mode 100644 index 000000000..71fd69e54 Binary files /dev/null and b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net45/Newtonsoft.Json.xml b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.xml similarity index 97% rename from src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net45/Newtonsoft.Json.xml rename to src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.xml index d855f39cf..4ecec600b 100644 --- a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/net45/Newtonsoft.Json.xml +++ b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.xml @@ -23,12 +23,12 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -56,9 +56,9 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -303,10 +303,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -383,7 +383,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -463,6 +463,22 @@ The to read the token from. A flag indicating whether the current token's children should be written. + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + Writes the specified end token. @@ -718,9 +734,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1000,9 +1016,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1024,7 +1040,7 @@ - Writes a value that represents a BSON object id. + Writes a [] value that represents a BSON object id. The Object ID value to write. @@ -3440,10 +3456,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -3507,7 +3523,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -3703,9 +3719,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -3878,10 +3894,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. + A [] or a null reference if the next JSON token is null. @@ -4019,7 +4035,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the ancestors of every node in the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. @@ -4027,7 +4051,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the descendants of every node in the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. @@ -4042,14 +4074,14 @@ An of that contains the source collection. The token key. - An of that contains the values of every node in the source collection with the given key. + An of that contains the values of every token in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -4058,7 +4090,7 @@ The type to convert the values to. An of that contains the source collection. The token key. - An that contains the converted values of every node in the source collection with the given key. + An that contains the converted values of every token in the source collection with the given key. @@ -4066,7 +4098,7 @@ The type to convert the values to. An of that contains the source collection. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -4091,7 +4123,7 @@ The source collection type. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -4100,7 +4132,7 @@ An of that contains the source collection. The type to convert the values to. The source collection type. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -4173,6 +4205,12 @@ A collection of the ancestor tokens of this token. + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + Returns a collection of the sibling tokens after this token, in document order. @@ -4466,7 +4504,7 @@ - Performs an explicit conversion from to . + Performs an explicit conversion from to []. The value. The result of the conversion. @@ -4711,7 +4749,7 @@ - Performs an implicit conversion from to . + Performs an implicit conversion from [] to . The value to create a from. The initialized with the specified value. @@ -4893,6 +4931,52 @@ A new instance of the . + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + Gets a comparer that can compare two tokens for value equality. @@ -5001,6 +5085,12 @@ An containing the descendant tokens of the . + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + Adds the specified content as children of this . @@ -6156,7 +6246,7 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -6167,10 +6257,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -6211,6 +6301,11 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Gets the at the reader's current position. + + Gets the path of the current JSON token. @@ -6313,7 +6408,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -6492,9 +6587,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -6514,6 +6609,11 @@ The value to write. + + + Gets the at the writer's current position. + + Gets the token being writen. @@ -7687,6 +7787,26 @@ The target to get the value from. The value. + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Contract details for a used by the . @@ -8081,6 +8201,12 @@ The that will get and set the during serialization. + + + Gets or sets the for this property. + + The for this property. + Gets or sets the type of the property. @@ -8337,6 +8463,31 @@ When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Get and set values for a using reflection. diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll new file mode 100644 index 000000000..b170d83a8 Binary files /dev/null and b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/netcore45/Newtonsoft.Json.xml b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.xml similarity index 97% rename from src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/netcore45/Newtonsoft.Json.xml rename to src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.xml index 0b3066ee8..fed0a2a33 100644 --- a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/netcore45/Newtonsoft.Json.xml +++ b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.xml @@ -23,12 +23,12 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -56,9 +56,9 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -303,10 +303,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -383,7 +383,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -463,6 +463,22 @@ The to read the token from. A flag indicating whether the current token's children should be written. + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + Writes the specified end token. @@ -718,9 +734,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1000,9 +1016,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1024,7 +1040,7 @@ - Writes a value that represents a BSON object id. + Writes a [] value that represents a BSON object id. The Object ID value to write. @@ -3248,10 +3264,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -3315,7 +3331,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -3511,9 +3527,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -3686,10 +3702,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. + A [] or a null reference if the next JSON token is null. @@ -3818,7 +3834,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the ancestors of every node in the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. @@ -3826,7 +3850,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the descendants of every node in the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. @@ -3841,14 +3873,14 @@ An of that contains the source collection. The token key. - An of that contains the values of every node in the source collection with the given key. + An of that contains the values of every token in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -3857,7 +3889,7 @@ The type to convert the values to. An of that contains the source collection. The token key. - An that contains the converted values of every node in the source collection with the given key. + An that contains the converted values of every token in the source collection with the given key. @@ -3865,7 +3897,7 @@ The type to convert the values to. An of that contains the source collection. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -3890,7 +3922,7 @@ The source collection type. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -3899,7 +3931,7 @@ An of that contains the source collection. The type to convert the values to. The source collection type. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -3972,6 +4004,12 @@ A collection of the ancestor tokens of this token. + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + Returns a collection of the sibling tokens after this token, in document order. @@ -4265,7 +4303,7 @@ - Performs an explicit conversion from to . + Performs an explicit conversion from to []. The value. The result of the conversion. @@ -4510,7 +4548,7 @@ - Performs an implicit conversion from to . + Performs an implicit conversion from [] to . The value to create a from. The initialized with the specified value. @@ -4692,6 +4730,52 @@ A new instance of the . + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + Gets a comparer that can compare two tokens for value equality. @@ -4788,6 +4872,12 @@ An containing the descendant tokens of the . + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + Adds the specified content as children of this . @@ -5733,7 +5823,7 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -5744,10 +5834,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -5788,6 +5878,11 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Gets the at the reader's current position. + + Gets the path of the current JSON token. @@ -5890,7 +5985,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -6069,9 +6164,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -6091,6 +6186,11 @@ The value to write. + + + Gets the at the writer's current position. + + Gets the token being writen. @@ -7158,6 +7258,26 @@ The target to get the value from. The value. + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Represents a trace writer. @@ -7556,6 +7676,12 @@ The that will get and set the during serialization. + + + Gets or sets the for this property. + + The for this property. + Gets or sets the type of the property. @@ -7769,6 +7895,31 @@ When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Get and set values for a using reflection. diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll new file mode 100644 index 000000000..a3b24af5e Binary files /dev/null and b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml similarity index 96% rename from src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml rename to src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml index 713544714..d83f318c9 100644 --- a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml +++ b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml @@ -23,12 +23,12 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -56,9 +56,9 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -303,10 +303,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -383,7 +383,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -463,6 +463,22 @@ The to read the token from. A flag indicating whether the current token's children should be written. + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + Writes the specified end token. @@ -718,9 +734,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1000,9 +1016,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1024,7 +1040,7 @@ - Writes a value that represents a BSON object id. + Writes a [] value that represents a BSON object id. The Object ID value to write. @@ -2998,10 +3014,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -3065,7 +3081,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -3261,9 +3277,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -3436,10 +3452,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. + A [] or a null reference if the next JSON token is null. @@ -3568,7 +3584,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the ancestors of every node in the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. @@ -3576,7 +3600,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the descendants of every node in the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. @@ -3591,14 +3623,14 @@ An of that contains the source collection. The token key. - An of that contains the values of every node in the source collection with the given key. + An of that contains the values of every token in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -3607,7 +3639,7 @@ The type to convert the values to. An of that contains the source collection. The token key. - An that contains the converted values of every node in the source collection with the given key. + An that contains the converted values of every token in the source collection with the given key. @@ -3615,7 +3647,7 @@ The type to convert the values to. An of that contains the source collection. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -3640,7 +3672,7 @@ The source collection type. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -3649,7 +3681,7 @@ An of that contains the source collection. The type to convert the values to. The source collection type. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -3722,6 +3754,12 @@ A collection of the ancestor tokens of this token. + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + Returns a collection of the sibling tokens after this token, in document order. @@ -4015,7 +4053,7 @@ - Performs an explicit conversion from to . + Performs an explicit conversion from to []. The value. The result of the conversion. @@ -4260,7 +4298,7 @@ - Performs an implicit conversion from to . + Performs an implicit conversion from [] to . The value to create a from. The initialized with the specified value. @@ -4424,6 +4462,52 @@ A new instance of the . + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + Gets a comparer that can compare two tokens for value equality. @@ -4514,6 +4598,12 @@ An containing the descendant tokens of the . + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + Adds the specified content as children of this . @@ -5436,7 +5526,7 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -5447,10 +5537,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -5491,6 +5581,11 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Gets the at the reader's current position. + + Gets the path of the current JSON token. @@ -5593,7 +5688,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -5772,9 +5867,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -5794,6 +5889,11 @@ The value to write. + + + Gets the at the writer's current position. + + Gets the token being writen. @@ -6880,6 +6980,26 @@ The target to get the value from. The value. + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Represents a trace writer. @@ -7255,6 +7375,12 @@ The that will get and set the during serialization. + + + Gets or sets the for this property. + + The for this property. + Gets or sets the type of the property. @@ -7511,6 +7637,31 @@ When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Get and set values for a using reflection. diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll new file mode 100644 index 000000000..c1ac3db03 Binary files /dev/null and b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll differ diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml similarity index 97% rename from src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml rename to src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml index 8f9a5f0a6..9c84a89db 100644 --- a/src/Pickles/packages/Newtonsoft.Json.6.0.6/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml +++ b/src/Pickles/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml @@ -23,12 +23,12 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -56,9 +56,9 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -303,10 +303,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -383,7 +383,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -463,6 +463,22 @@ The to read the token from. A flag indicating whether the current token's children should be written. + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + Writes the specified end token. @@ -718,9 +734,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1000,9 +1016,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -1024,7 +1040,7 @@ - Writes a value that represents a BSON object id. + Writes a [] value that represents a BSON object id. The Object ID value to write. @@ -3248,10 +3264,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -3315,7 +3331,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -3511,9 +3527,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -3686,10 +3702,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. + A [] or a null reference if the next JSON token is null. @@ -3818,7 +3834,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the ancestors of every node in the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. @@ -3826,7 +3850,15 @@ The type of the objects in source, constrained to . An of that contains the source collection. - An of that contains the descendants of every node in the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. @@ -3841,14 +3873,14 @@ An of that contains the source collection. The token key. - An of that contains the values of every node in the source collection with the given key. + An of that contains the values of every token in the source collection with the given key. Returns a collection of child values of every object in the source collection. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -3857,7 +3889,7 @@ The type to convert the values to. An of that contains the source collection. The token key. - An that contains the converted values of every node in the source collection with the given key. + An that contains the converted values of every token in the source collection with the given key. @@ -3865,7 +3897,7 @@ The type to convert the values to. An of that contains the source collection. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -3890,7 +3922,7 @@ The source collection type. An of that contains the source collection. - An of that contains the values of every node in the source collection. + An of that contains the values of every token in the source collection. @@ -3899,7 +3931,7 @@ An of that contains the source collection. The type to convert the values to. The source collection type. - An that contains the converted values of every node in the source collection. + An that contains the converted values of every token in the source collection. @@ -3972,6 +4004,12 @@ A collection of the ancestor tokens of this token. + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + Returns a collection of the sibling tokens after this token, in document order. @@ -4265,7 +4303,7 @@ - Performs an explicit conversion from to . + Performs an explicit conversion from to []. The value. The result of the conversion. @@ -4510,7 +4548,7 @@ - Performs an implicit conversion from to . + Performs an implicit conversion from [] to . The value to create a from. The initialized with the specified value. @@ -4692,6 +4730,52 @@ A new instance of the . + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + Gets a comparer that can compare two tokens for value equality. @@ -4788,6 +4872,12 @@ An containing the descendant tokens of the . + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + Adds the specified content as children of this . @@ -5733,7 +5823,7 @@ - Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. @@ -5744,10 +5834,10 @@ - Reads the next JSON token from the stream as a . + Reads the next JSON token from the stream as a []. - A or a null reference if the next JSON token is null. This method will return null at the end of an array. + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. @@ -5788,6 +5878,11 @@ true if the next token was read successfully; false if there are no more tokens to read. + + + Gets the at the reader's current position. + + Gets the path of the current JSON token. @@ -5890,7 +5985,7 @@ - Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. @@ -6069,9 +6164,9 @@ - Writes a value. + Writes a [] value. - The value to write. + The [] value to write. @@ -6091,6 +6186,11 @@ The value to write. + + + Gets the at the writer's current position. + + Gets the token being writen. @@ -7178,6 +7278,26 @@ The error context. + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Represents a trace writer. @@ -7576,6 +7696,12 @@ The that will get and set the during serialization. + + + Gets or sets the for this property. + + The for this property. + Gets or sets the type of the property. @@ -7832,6 +7958,31 @@ When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + Get and set values for a using reflection. diff --git a/src/Pickles/packages/Newtonsoft.Json.6.0.6/tools/install.ps1 b/src/Pickles/packages/Newtonsoft.Json.6.0.8/tools/install.ps1 similarity index 84% rename from src/Pickles/packages/Newtonsoft.Json.6.0.6/tools/install.ps1 rename to src/Pickles/packages/Newtonsoft.Json.6.0.8/tools/install.ps1 index dfc78f057..6ff8fcb90 100644 --- a/src/Pickles/packages/Newtonsoft.Json.6.0.6/tools/install.ps1 +++ b/src/Pickles/packages/Newtonsoft.Json.6.0.8/tools/install.ps1 @@ -5,7 +5,7 @@ param($installPath, $toolsPath, $package, $project) try { - $url = "http://james.newtonking.com/json" + $url = "http://james.newtonking.com/json/install?version=" + $package.Version $dte2 = Get-Interface $dte ([EnvDTE80.DTE2]) if ($dte2.ActiveWindow.Caption -eq "Package Manager Console") @@ -46,11 +46,14 @@ try $instanceField = [NuGet.Dialog.PackageManagerWindow].GetField("CurrentInstance", [System.Reflection.BindingFlags]::Static -bor ` [System.Reflection.BindingFlags]::NonPublic) + $consoleField = [NuGet.Dialog.PackageManagerWindow].GetField("_smartOutputConsoleProvider", [System.Reflection.BindingFlags]::Instance -bor ` [System.Reflection.BindingFlags]::NonPublic) + if ($instanceField -eq $null -or $consoleField -eq $null) { return } $instance = $instanceField.GetValue($null) + if ($instance -eq $null) { return } $consoleProvider = $consoleField.GetValue($instance) @@ -86,8 +89,24 @@ try } catch { - # stop potential errors from bubbling up - # worst case the splash page won't open + try + { + $pmPane = $dte2.ToolWindows.OutputWindow.OutputWindowPanes.Item("Package Manager") + + $selection = $pmPane.TextDocument.Selection + $selection.StartOfDocument($false) + $selection.EndOfDocument($true) + + if ($selection.Text.StartsWith("Installing 'Newtonsoft.Json ")) + { + $dte2.ItemOperations.Navigate($url) | Out-Null + } + } + catch + { + # stop potential errors from bubbling up + # worst case the splash page won't open + } } -# yolo \ No newline at end of file +# still yolo \ No newline at end of file diff --git a/src/Pickles/packages/System.IO.Abstractions.1.4.0.92/lib/net35/System.IO.Abstractions.dll b/src/Pickles/packages/System.IO.Abstractions.1.4.0.93/lib/net35/System.IO.Abstractions.dll similarity index 96% rename from src/Pickles/packages/System.IO.Abstractions.1.4.0.92/lib/net35/System.IO.Abstractions.dll rename to src/Pickles/packages/System.IO.Abstractions.1.4.0.93/lib/net35/System.IO.Abstractions.dll index 36d51f0e2..531f714ce 100644 Binary files a/src/Pickles/packages/System.IO.Abstractions.1.4.0.92/lib/net35/System.IO.Abstractions.dll and b/src/Pickles/packages/System.IO.Abstractions.1.4.0.93/lib/net35/System.IO.Abstractions.dll differ diff --git a/src/Pickles/packages/System.IO.Abstractions.2.0.0.103/lib/net40/System.IO.Abstractions.dll b/src/Pickles/packages/System.IO.Abstractions.2.0.0.103/lib/net40/System.IO.Abstractions.dll new file mode 100644 index 000000000..b5bbcf1ea Binary files /dev/null and b/src/Pickles/packages/System.IO.Abstractions.2.0.0.103/lib/net40/System.IO.Abstractions.dll differ diff --git a/src/Pickles/packages/System.IO.Abstractions.TestingHelpers.1.4.0.92/lib/net35/System.IO.Abstractions.TestingHelpers.dll b/src/Pickles/packages/System.IO.Abstractions.TestingHelpers.1.4.0.93/lib/net35/System.IO.Abstractions.TestingHelpers.dll similarity index 97% rename from src/Pickles/packages/System.IO.Abstractions.TestingHelpers.1.4.0.92/lib/net35/System.IO.Abstractions.TestingHelpers.dll rename to src/Pickles/packages/System.IO.Abstractions.TestingHelpers.1.4.0.93/lib/net35/System.IO.Abstractions.TestingHelpers.dll index 6c35bfbbb..dc76c3c9b 100644 Binary files a/src/Pickles/packages/System.IO.Abstractions.TestingHelpers.1.4.0.92/lib/net35/System.IO.Abstractions.TestingHelpers.dll and b/src/Pickles/packages/System.IO.Abstractions.TestingHelpers.1.4.0.93/lib/net35/System.IO.Abstractions.TestingHelpers.dll differ diff --git a/src/Pickles/packages/repositories.config b/src/Pickles/packages/repositories.config index d41e47d30..c662b8067 100644 --- a/src/Pickles/packages/repositories.config +++ b/src/Pickles/packages/repositories.config @@ -2,7 +2,6 @@ -