Merge pull request #2272 from dotnet/brthor/ship-pdbs

Publish an Archive with the SDK Pdbs
This commit is contained in:
Bryan Thornbury 2016-04-05 12:13:01 -07:00
commit e64d4fc81b
5 changed files with 34 additions and 2 deletions

View file

@ -130,6 +130,7 @@ namespace Microsoft.DotNet.Cli.Build
AddInstallerArtifactToContext(c, "dotnet-sharedframework", "SharedFramework", sharedFrameworkVersion);
AddInstallerArtifactToContext(c, "dotnet-dev", "CombinedFrameworkSDKHost", cliVersion);
AddInstallerArtifactToContext(c, "dotnet", "CombinedFrameworkHost", sharedFrameworkVersion);
AddInstallerArtifactToContext(c, "dotnet-sdk-debug", "SdkSymbols", cliVersion);
return c.Success();
}