diff --git a/CHANGELOG.md b/CHANGELOG.md index 122e40f84..eecaac7e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ * **[Feature]** Add .NET 6 support. * **[Breaking change]** .NET Core `3.0` target for WPF and WinForms applications is [out of support](https://devblogs.microsoft.com/dotnet/net-core-3-0-end-of-life/), it's replaced with `3.1` (LTS). * **[Breaking change]** .NET Framework `4.6.1` target is [out of support](https://devblogs.microsoft.com/dotnet/net-framework-4-5-2-4-6-4-6-1-will-reach-end-of-support-on-april-26-2022/), it's replaced with `4.6.2` -* **[Breaking change]** .NET `5.0` for windows is [out of support](https://devblogs.microsoft.com/dotnet/dotnet-5-end-of-support-update/), it's replaced .NET `6.0`. +* **[Breaking change]** .NET `5.0` for windows is [out of support](https://devblogs.microsoft.com/dotnet/dotnet-5-end-of-support-update/), it's replaced with .NET `6.0`. * **[Breaking change]** Updated .NET Standard "fallback" target from `1.0` to `2.0`. * **[Breaking change]** Updated required version of `Xamarin.Android` target framework to `10.0`. The version is specified in the `` element in the project file. diff --git a/build.cake b/build.cake index ef5b62307..e7a5b12e6 100644 --- a/build.cake +++ b/build.cake @@ -168,11 +168,12 @@ Task("Externals-Apple") Task("Externals").IsDependentOn("Externals-Apple").IsDependentOn("Externals-Android"); // Main Task. -Task("Default").IsDependentOn("NuGet"); +Task("Default") + .IsDependentOn("PrepareAssemblies") + .IsDependentOn("NuGet"); // Pack NuGets for appropriate platform Task("NuGet") - .IsDependentOn("PrepareAssemblies") .Does(()=> { CleanDirectory("output");