Add Shared Host MSI Authoring

Ideally in the project.json for the shared host we would just list the
actual package that holds the shared host, instead of all of
NetStandard.Library, but doing some leads to compliation errors, since
publish wants to include a compile step that has a generated
AssemblyAttributes file which references types like System.String.
This commit is contained in:
Matt Ellis 2016-03-08 15:22:33 -08:00
parent 29bc612565
commit 04d21e6693
9 changed files with 299 additions and 3 deletions

View file

@ -113,6 +113,7 @@ namespace Microsoft.DotNet.Cli.Build
c.BuildContext["VersionBadge"] = Path.Combine(Dirs.Output, versionBadgeName);
AddInstallerArtifactToContext(c, "dotnet", "Sdk");
AddInstallerArtifactToContext(c, "dotnet-host", "SharedHost");
return c.Success();
}