This commit is contained in:
nmilcoff 2018-03-29 22:18:45 -03:00
Родитель e95a2536a9
Коммит 0e256539d8
2 изменённых файлов: 7 добавлений и 9 удалений

Просмотреть файл

@ -7,11 +7,12 @@ Order: 3
This guide assumes you are using MvvmCross 5.6.x. If you are updating your app from a previous version, please look at the appropiate blog posts.
The very first thing you will notice when upgrading / installing v6 nugets, is that a readme file will open automatically. Please read its instructions carefully, and don't hesitate to jump in and make a PR to improve it if you think anything is missing!
The very first thing you will notice when upgrading / installing v6 nugets, is that a readme file will open automatically.
Please read the readme instructions carefully, and don't hesitate to jump in and make a PR to improve it if you think anything is missing!
## .NET Standard
TBA
MvvmCross 6 requires your app to use .NET Standard 2.0 as its base library now. Please make sure you make that upgrade before proceeding!
## Names and namespaces changes
@ -159,4 +160,4 @@ Some methods and classes that were marked as [Obsolete] previously, have been fi
- `MvxIoCExtensions` (all methods)
- `MvxEventSourceTabActivity` (Android)
- `MvxTabActivity` (Android)
- Some constructos for `MvxCollectionViewCell`
- Some constructos for `MvxCollectionViewCell` (iOS)

Просмотреть файл

@ -14,14 +14,14 @@ Yes, you read it correctly! MvvmCross 6 has finally arrived and it is available
- Migration to .NET Standard 2
- Polished support for Xamarin.Forms
- Brand new framework initialization (Setup & AppStart)
- New register process for plugins
- Supercharged `IMvxOverridePresentationAttribute` for ViewPresenters
- Support for multiple levels of nested fragments on Android
- Initial support for Tizen
- Tons of minor improvements and bug fixes!
- Tons of improvements and bug fixes!
## Migration guide
MvvmCross 6 comes with quite a lot of improvements, but this also means some things will break. We have prepared a migration guide that will help you do the transition real quick!
MvvmCross 6 comes with quite a lot of improvements, but this also means some things will break. We have prepared a migration guide that will help you do the transition real quick! You can find it [here](https://www.mvvmcross.com/documentation/upgrading/upgrade-to-mvvmcross-60).
### NuGet packages
@ -41,9 +41,6 @@ MvvmCross uses .NET Standard 2.0 as its base library now. This ensures compabili
For a explanation about .NET Standard see: https://blogs.msdn.microsoft.com/dotnet/2016/09/26/introducing-net-standard/
PRs:
- https://github.com/MvvmCross/MvvmCross/pull/2530
### Setup & platforms initialization
We've changed the way platforms are loaded. Previously you had to create the `Setup` class in every platform yourself (except for Android if you were using a Splashscreen).