From 884a324930d31c0527e979d8a6c50e87bb099ef7 Mon Sep 17 00:00:00 2001 From: FantasticFiasco Date: Sat, 2 Nov 2019 21:33:07 +0100 Subject: [PATCH] release 6.0.0 --- CHANGELOG.md | 5 ++++- Directory.Build.props | 2 +- MvvmDialogs.nuspec | 6 +++++- README.md | 8 +++----- SolutionInfo.cs | 2 +- 5 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9569405..cf576c73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,12 @@ This project adheres to [Semantic Versioning](http://semver.org/) and is followi ## Unreleased +## 6.0.0 - 2019-11-02 + ### :zap: Added -- NuGet package supporting .NET 4.5.2, .NET 4.6.2 and .NET 4.7.2 +- [#55](https://github.com/FantasticFiasco/mvvm-dialogs/issues/55) - Support for .NET Core 3.0 +- [#55](https://github.com/FantasticFiasco/mvvm-dialogs/issues/55) - NuGet package supporting .NET 4.5.2, .NET 4.6.2 and .NET 4.7.2 ### :dizzy: Changed diff --git a/Directory.Build.props b/Directory.Build.props index 292b8826..05aa3ec0 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@ - 5.3.0 + 6.0.0 Mattias Kindborg FantasticFiasco MVVM Dialogs diff --git a/MvvmDialogs.nuspec b/MvvmDialogs.nuspec index ed693098..82a2142f 100644 --- a/MvvmDialogs.nuspec +++ b/MvvmDialogs.nuspec @@ -16,7 +16,7 @@ wpf uwp mvvm dialog window messagebox openfiledialog savefiledialog folderbrowserdialog messagedialog contentdialog fileopenpicker filesavepicker folderpicker - + @@ -30,6 +30,10 @@ + + + + diff --git a/README.md b/README.md index ce31290e..45529256 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,6 @@

-> NOTE: This project is currently migrating towards supporting .NET Core 3. Mismatch between documentation and code should be expected. - ## Table of contents - [Introduction](#introduction) @@ -139,7 +137,7 @@ MVVM Dialogs is by default opening the standard Windows message box or the open ## More in the wiki -For more information regarding the concepts of MVVM Dialogs and extended samples on the subjects, please read the [wiki](https://github.com/FantasticFiasco/mvvm-dialogs/wiki). +For more information regarding the concepts of MVVM Dialogs and extended samples on the subjects, please see the [wiki](https://github.com/FantasticFiasco/mvvm-dialogs/wiki). ## MVVM Dialogs Contrib @@ -153,7 +151,7 @@ If you want to include MVVM Dialogs in your project, you can [install it directl To install MVVM Dialogs, run the following command in the Package Manager Console: -``` +```powershell PM> Install-Package MvvmDialogs ``` @@ -161,7 +159,7 @@ PM> Install-Package MvvmDialogs MVVM Dialogs started out as an [article on CodeProject](https://www.codeproject.com/Articles/36745/Showing-Dialogs-When-Using-the-MVVM-Pattern-in-WPF) with its first revision published in May 2009. At that time MVVM was still new and fresh, and the now hugely popular [MVVM Light](http://www.mvvmlight.net/) had yet not been published. In fact, none of the MVVM libraries commonly used today existed back then. MVVM Dialogs came about out of necessity to work with dialogs from the view model, a reaction to the fact that although MVVM was a popular pattern, the support to implement it was rather limited. -So, the initial publication was over 10 years ago. Give that a thought. An open source project that after 10 years still is maintained and extremely relevant with the upcoming .NET Core 3. Take that all you out there claiming open source code is volatile! +So, the initial publication was over 10 years ago. Give that a thought. An open source project that after 10 years still is maintained and extremely relevant with the release of .NET Core 3. Take that all you out there claiming open source code is volatile! ![MVVM Dialogs anniversary](doc/resources/cake.png) diff --git a/SolutionInfo.cs b/SolutionInfo.cs index a8d77a55..4c599133 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -10,4 +10,4 @@ [assembly: AssemblyCulture("")] // Assembly version -[assembly: AssemblyVersion("5.3.0")] +[assembly: AssemblyVersion("6.0.0")]