From 5b1eadc2d959594fe1d09afd9d8d0c2bd0426952 Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Tue, 26 Apr 2016 14:33:40 -0700 Subject: [PATCH] Only publish SharedFramework + SDK for Windows We don't build the combined framework + SDK tarball for any Unix platforms, but we were incorrectly trying to publish it. Make the publish step for this artifact specific to Windows as well. --- scripts/dotnet-cli-build/PublishTargets.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/dotnet-cli-build/PublishTargets.cs b/scripts/dotnet-cli-build/PublishTargets.cs index f7eccbdeb..60b91658f 100644 --- a/scripts/dotnet-cli-build/PublishTargets.cs +++ b/scripts/dotnet-cli-build/PublishTargets.cs @@ -174,6 +174,7 @@ namespace Microsoft.DotNet.Cli.Build } [Target] + [BuildPlatforms(BuildPlatform.Windows)] public static BuildTargetResult PublishCombinedFrameworkSDKArchiveToAzure(BuildTargetContext c) { var version = CliNuGetVersion;