Allow projects to compile on Visual Studio 2019#1
Open
jcansdale wants to merge 107 commits into
Open
Conversation
InsertAllObjects self recursion
This is especially important when using Akavache on iOS or Android, to keep the package size down
This makes initial calls to e.g BlobCache.Get faster, because it doesn't have to construct the SQLite operations that aren't even used when selecting from the database
…ization Lazily initialize the various SQLite operations
Remove some unused code
… building Akavache with Fixes reactiveui#206
Pin the Splat dependency in the nuspec file to the same version we're building Akavache with
Remove the support for WinRT80, since it can't even be opened in VS2015
Makes GetAllKeys() and others 100x faster when storing multi MB blobs
Added CacheElement.Expiration index
Index the TypeName in the database to make bulk object queries faster
…rt80 Revert "Remove the support for WinRT80, since it can't even be opened in VS2015"
Add Shutdown docs to README.
docs: added issue/pr templates and contrib guidelines
BREAKING CHANGE: Xamarin.Monotouch has been deprecated by Xamarin
BREAKING CHANGE: Xamarin.MonoMac has been deprecated by Xamarin
Netstandard conversion
this directive will be ignored after the tag of 6.0.0
* adding contentfiles in for package.config * appveyor fail * set specific versions for tools on cake file * Cake.FileHelpers&version=2.0.0 * PinNuGetDependency * version down cake
* updating frameworks and build scripts * git ignore and json versioning
Use `Task.Run` to start `OperationQueue`'s processing task rather than using the constructor and then calling `task.Start`. This ensures two things: 1. The `TaskScheduler.Default` scheduler is used, which will be a threadpool scheduler 2. That `task` tracks the running of the entire task: previously the task will have completed when it `await`ed as the `Task` constructor accepts an `Action` and not a `Func<Task>` Fixes reactiveui#406
* Removed project.json file from the UWP project * remove project.json replacement from build.cake file
* Update README.md Update readme to include linker instruction so first time user is aware about linker in Xamarin and not get weird error when running * changed wording a little bit
* added editor config * minor cake changes * deleted older files
* update to latest sdk extras structures * feature: Stamp the code repository details in projects
update build scripts
Somehow `GetObjectAsync` found it's way back in to the README.
As this is the latest version supported for VS2017 extensions.
We've been advised to do this by MS.
This version is compatible with Visual Studio 2019.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Change to using Update to MSBuild.Sdk.Extras 2.0.0-preview.14. This versions is compatible with Visual Studio 2019.