Skip to content

Commit

Permalink
release 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasticFiasco committed Nov 2, 2019
1 parent 32e785e commit 884a324
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup>
<Version>5.3.0</Version>
<Version>6.0.0</Version>
<Authors>Mattias Kindborg</Authors>
<Company>FantasticFiasco</Company>
<Product>MVVM Dialogs</Product>
Expand Down
6 changes: 5 additions & 1 deletion MvvmDialogs.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<tags>wpf uwp mvvm dialog window messagebox openfiledialog savefiledialog folderbrowserdialog messagedialog contentdialog fileopenpicker filesavepicker folderpicker</tags>
</metadata>
<files>
<!-- .NET -->
<!-- .NET Framework -->
<file src="src\net\bin\Release\net35\MvvmDialogs.dll" target="lib\net35\MvvmDialogs.dll" />
<file src="src\net\bin\Release\net35\MvvmDialogs.xml" target="lib\net35\MvvmDialogs.xml" />
<file src="src\net\bin\Release\net40\MvvmDialogs.dll" target="lib\net40\MvvmDialogs.dll" />
Expand All @@ -30,6 +30,10 @@
<file src="src\net\bin\Release\net472\MvvmDialogs.dll" target="lib\net472\MvvmDialogs.dll" />
<file src="src\net\bin\Release\net472\MvvmDialogs.xml" target="lib\net472\MvvmDialogs.xml" />

<!-- .NET Core -->
<file src="src\net\bin\Release\netcoreapp3.0\MvvmDialogs.dll" target="lib\netcoreapp3.0\MvvmDialogs.dll" />
<file src="src\net\bin\Release\netcoreapp3.0\MvvmDialogs.xml" target="lib\netcoreapp3.0\MvvmDialogs.xml" />

<!-- UWP -->
<file src="src\universal\bin\Release\MvvmDialogs.dll" target="lib\uap10.0\MvvmDialogs.dll" />
<file src="src\universal\bin\Release\MvvmDialogs.xml" target="lib\uap10.0\MvvmDialogs.xml" />
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
<a href="https://www.nuget.org/packages/MvvmDialogs/"><img src="https://img.shields.io/nuget/dt/MvvmDialogs.svg"></a>
</p>

> NOTE: This project is currently migrating towards supporting .NET Core 3. Mismatch between documentation and code should be expected.
## Table of contents

- [Introduction](#introduction)
Expand Down Expand Up @@ -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

Expand All @@ -153,15 +151,15 @@ 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
```

## History

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)

Expand Down
2 changes: 1 addition & 1 deletion SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
[assembly: AssemblyCulture("")]

// Assembly version
[assembly: AssemblyVersion("5.3.0")]
[assembly: AssemblyVersion("6.0.0")]

0 comments on commit 884a324

Please sign in to comment.