Skip to content

Commit

Permalink
Merge pull request #1684 from microsoft/fix/pack-script
Browse files Browse the repository at this point in the history
Fix packaging script - do not rebuild assemblies during packaging
  • Loading branch information
MatkovIvan authored Sep 28, 2022
2 parents 335a3b9 + 7891bd0 commit d4114ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<TargetFrameworkVersion>` element in the project file.

Expand Down
5 changes: 3 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit d4114ba

Please sign in to comment.