Skip to content

Commit d4114ba

Browse files
authored
Merge pull request #1684 from microsoft/fix/pack-script
Fix packaging script - do not rebuild assemblies during packaging
2 parents 335a3b9 + 7891bd0 commit d4114ba

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* **[Feature]** Add .NET 6 support.
88
* **[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).
99
* **[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`
10-
* **[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`.
10+
* **[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`.
1111
* **[Breaking change]** Updated .NET Standard "fallback" target from `1.0` to `2.0`.
1212
* **[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.
1313

build.cake

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,12 @@ Task("Externals-Apple")
168168
Task("Externals").IsDependentOn("Externals-Apple").IsDependentOn("Externals-Android");
169169

170170
// Main Task.
171-
Task("Default").IsDependentOn("NuGet");
171+
Task("Default")
172+
.IsDependentOn("PrepareAssemblies")
173+
.IsDependentOn("NuGet");
172174

173175
// Pack NuGets for appropriate platform
174176
Task("NuGet")
175-
.IsDependentOn("PrepareAssemblies")
176177
.Does(()=>
177178
{
178179
CleanDirectory("output");

0 commit comments

Comments
 (0)