diff --git a/README.md b/README.md index b4eb86957..ec28e04fc 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ This repository is work in progress for the next Greenshot (2.0?). Quick start for developers ---------------------------- * Download the latest (!!!) dotnet core SDK from here: https://github.com/dotnet/core-sdk ([quick-link to download](https://dotnetcli.blob.core.windows.net/dotnet/Sdk/master/dotnet-sdk-latest-win-x64.exe)) - * Make sure you only have the latest dotnet core 3.0 installed! + * Make sure you only have the latest dotnet core 3.1 installed! * Make sure you have the latest Visual Studio 2019, and enable "Use previews of the dotnet core SDK", as is shown here: https://stackoverflow.com/a/55033763 * Clone the [repository](https://github.com/greenshot/greenshot/tree/develop), branch develop * Open the solution from the src directory in Visual Studio @@ -42,9 +42,9 @@ If you can't use Visual Studio 2019, Rider from Jetbrains is also supported and * run dotnet build src/Greenshot.sln For users the major changes since 1.2.x are: -* dotnet core 3.0 support (why, read here: https://blogs.msdn.microsoft.com/dotnet/2018/10/04/update-on-net-core-3-0-and-net-framework-4-8/ ) +* dotnet core 3.1 support (why, read here: https://blogs.msdn.microsoft.com/dotnet/2018/10/04/update-on-net-core-3-0-and-net-framework-4-8/ ) * A newer and more modern configuration UI, using [MahApps.Metro](https://github.com/MahApps/MahApps.Metro "MahApps.Metro") -* Due to the update of .NET 2.0 to .NET 4.7.1 a lot of bugs are solved +* Due to the update of .NET 2.0 to .NET 4.7.2 a lot of bugs are solved * Added Windows 10 destinations, OCR & share * Better DPI support * Simplified code should make development easier and quicker @@ -52,7 +52,7 @@ For users the major changes since 1.2.x are: For developers, the major changes since 1.2.x are: -* Updated to .NET 4.7.1 and dotnet core 3.0 (multiple targets) +* Updated to .NET 4.7.2 and dotnet core 3.1 (multiple targets) * Moved logging from log4net to [Dapplo.Log](https://github.com/dapplo/Dapplo.Log) which is a very simple logger (reviewing changing to Microsoft.Extensions.Logging) * Using Dependency Injection (Inversion of Control) via [Dapplo.Addons](https://github.com/dapplo/Dapplo.Addons) which bases upon AutoFac. * Using MVVM, provided by Caliburn.Micro via [Dapplo.CaliburnMicro](https://github.com/dapplo/Dapplo.CaliburnMicro)