Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #7664 from livarcocc/update_runtime_to_stable_version
Browse files Browse the repository at this point in the history
Moving the runtime dependency to 1.0.7 and 1.1.4.
  • Loading branch information
Livar authored Sep 15, 2017
2 parents 071da27 + d67473b commit d2f3571
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build/Microsoft.DotNet.Cli.DependencyVersions.props
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<CLI_SharedFrameworkVersion>1.1.3</CLI_SharedFrameworkVersion>
<CLI_CoreCLRVersion>1.1.3</CLI_CoreCLRVersion>
<CLI_JitVersion>1.1.3</CLI_JitVersion>
<CLI_SharedFrameworkVersion>1.1.4</CLI_SharedFrameworkVersion>
<CLI_CoreCLRVersion>1.1.4</CLI_CoreCLRVersion>
<CLI_JitVersion>1.1.4</CLI_JitVersion>
<CLI_SharedHostVersion>1.1.0</CLI_SharedHostVersion>
<CLI_HostFxrContainerVersion>1.1.0</CLI_HostFxrContainerVersion>
<CLI_HostFxrVersion Condition="'$(OS)' != 'Windows_NT'">1.1.0</CLI_HostFxrVersion>
<CLI_HostFxrVersion Condition="'$(OS)' == 'Windows_NT'">1.1.2</CLI_HostFxrVersion>

<CLI_SharedFrameworkVersion_1_0>1.0.6</CLI_SharedFrameworkVersion_1_0>
<CLI_SharedFrameworkVersion_1_0>1.0.7</CLI_SharedFrameworkVersion_1_0>
<CLI_SharedHostVersion_1_0>1.0.1</CLI_SharedHostVersion_1_0>
<CLI_HostFxrContainerVersion_1_0>1.0.1</CLI_HostFxrContainerVersion_1_0>
<CLI_HostFxrVersion_1_0 Condition="'$(OS)' != 'Windows_NT'">1.0.1</CLI_HostFxrVersion_1_0>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public override bool Execute()
{
ToolPath = ToolPath,
TemplateType = newArgs[0],
TemplateArgs = newArgs[1] + $" --debug:ephemeral-hive -n TempProject -o \"{outputDir}\"",
TemplateArgs = newArgs[1] + $" --no-restore --debug:ephemeral-hive -n TempProject -o \"{outputDir}\"",
HostObject = HostObject,
BuildEngine = BuildEngine
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public void ItAddsFxVersionAsAParamWhenTheToolHasThePrefercliruntimeFile()

result.Should().NotBeNull();

result.Args.Should().Contain("--fx-version 1.1.3");
result.Args.Should().Contain("--fx-version 1.1.4");
}

[Fact]
Expand Down

0 comments on commit d2f3571

Please sign in to comment.