Upgrade Corefx and coreclr references
Microsoft.NetCore.App 1.0.0 => 1.0.1 Microsoft.NETCore.Runtime.CoreCLR 1.0.2 => 1.0.4 CLI Branding "Microsoft .NET Core 1.0.0 - SDK Preview" => "Microsoft .NET Core 1.0.1 - SDK 1.0.0 Preview 2-003122" List of changes - all project.jsons - dotnet new templates - and build projects files - shared-build-targets-utils\DependencyVersions.cs - CliDependencyVersions.cs
This commit is contained in:
parent
1e9d529bc5
commit
8fcfc2af05
134 changed files with 147 additions and 140 deletions
|
@ -7,7 +7,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
{
|
||||
public class CliDependencyVersions
|
||||
{
|
||||
public static readonly string SharedFrameworkVersion = "1.0.0";
|
||||
public static readonly string SharedFrameworkVersion = "1.0.1";
|
||||
public static readonly string SharedHostVersion = "1.0.1";
|
||||
public static readonly string HostFxrVersion = "1.0.1";
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
"-i", sdkPublishRoot,
|
||||
"-o", debFile,
|
||||
"-p", packageName,
|
||||
"-b", Monikers.CLISdkBrandName,
|
||||
"-b", Monikers.GetCLISdkBrandName(c),
|
||||
"-m", manPagesDir,
|
||||
"--framework-debian-package-name", sharedFxDebianPackageName,
|
||||
"--framework-nuget-name", Monikers.SharedFrameworkName,
|
||||
|
|
|
@ -118,7 +118,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
{
|
||||
var cliSdkRoot = c.BuildContext.Get<string>("CLISDKRoot");
|
||||
var upgradeCode = Utils.GenerateGuidFromName(SdkMsi).ToString().ToUpper();
|
||||
var cliSdkBrandName = $"'{Monikers.CLISdkBrandName}'";
|
||||
var cliSdkBrandName = $"'{Monikers.GetCLISdkBrandName(c)}'";
|
||||
|
||||
Cmd("powershell", "-NoProfile", "-NoLogo",
|
||||
Path.Combine(Dirs.RepoRoot, "packaging", "windows", "clisdk", "generatemsi.ps1"),
|
||||
|
@ -133,7 +133,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
public static BuildTargetResult GenerateCliSdkBundle(BuildTargetContext c)
|
||||
{
|
||||
var upgradeCode = Utils.GenerateGuidFromName(SdkBundle).ToString().ToUpper();
|
||||
var cliSdkBrandName = $"'{Monikers.CLISdkBrandName}'";
|
||||
var cliSdkBrandName = $"'{Monikers.GetCLISdkBrandName(c)}'";
|
||||
|
||||
Cmd("powershell", "-NoProfile", "-NoLogo",
|
||||
Path.Combine(Dirs.RepoRoot, "packaging", "windows", "clisdk", "generatebundle.ps1"),
|
||||
|
|
|
@ -82,7 +82,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
.Replace("{HostFxrComponentId}", HostFxrComponentId)
|
||||
.Replace("{CLISdkComponentId}", CLISdkComponentId)
|
||||
.Replace("{CLISdkNugetVersion}", CLISdkNugetVersion)
|
||||
.Replace("{CLISdkBrandName}", Monikers.CLISdkBrandName)
|
||||
.Replace("{CLISdkBrandName}", Monikers.GetCLISdkBrandName(c))
|
||||
.Replace("{SharedFxBrandName}", Monikers.SharedFxBrandName)
|
||||
.Replace("{SharedHostBrandName}", Monikers.SharedHostBrandName)
|
||||
.Replace("{HostFxrBrandName}", Monikers.HostFxrBrandName);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.6.0",
|
||||
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2",
|
||||
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
|
||||
"Microsoft.CSharp": "4.0.1",
|
||||
"System.Dynamic.Runtime": "4.0.11",
|
||||
"System.Reflection.Metadata": "1.3.0",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue