Skip to content

Commit ac25088

Browse files
dotnet-maestro-botdagood
authored andcommitted
Update ProdCon to 20180802-01-1915331 (release/2.2) (#679)
* Update ProdCon to 20180802-01-1915331 * Fix CLI patches (2 removed, 1 remains)
1 parent 80a0f15 commit ac25088

15 files changed

+18
-86
lines changed

ProdConFeed.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-2/20180725-01/final/index.json
1+
https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-2/20180802-01/final/index.json

dependencies.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
for which dotnet/versions commit was last used to update the dependency.
66
-->
77
<PropertyGroup>
8-
<ProdConCurrentRef>370e36164ef030daf1086ac5ef8a7de8956d5724</ProdConCurrentRef>
8+
<ProdConCurrentRef>07b337ef72ae40c52fbfb85047c06c8936c47462</ProdConCurrentRef>
99
<CoreClrCurrentRef>293e58e87c0575e7e425a1bab57d5eb0e25d743e</CoreClrCurrentRef>
1010
<BuildToolsCurrentRef>91c9a3b3374ff71e72c06d5773bd26598539aa1d</BuildToolsCurrentRef>
1111
</PropertyGroup>
@@ -28,9 +28,9 @@
2828
the product as version strings to be used by the SDK to fetch extra content.
2929
-->
3030
<PropertyGroup>
31-
<MicrosoftAspNetCoreAllPackageVersion>2.2.0-preview1-34785</MicrosoftAspNetCoreAllPackageVersion>
32-
<MicrosoftAspNetCoreAppPackageVersion>2.2.0-preview1-34785</MicrosoftAspNetCoreAppPackageVersion>
33-
<MicrosoftNETSdkRazorPackageVersion>2.2.0-preview1-34785</MicrosoftNETSdkRazorPackageVersion>
31+
<MicrosoftAspNetCoreAllPackageVersion>2.2.0-preview1-34866</MicrosoftAspNetCoreAllPackageVersion>
32+
<MicrosoftAspNetCoreAppPackageVersion>2.2.0-preview1-34866</MicrosoftAspNetCoreAppPackageVersion>
33+
<MicrosoftNETSdkRazorPackageVersion>2.2.0-preview1-34866</MicrosoftNETSdkRazorPackageVersion>
3434
</PropertyGroup>
3535

3636
<ItemGroup>

patches/cli/0001-Persist-ASP.NET-runtime-patch-targeting-default.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ https://github.com/dotnet/cli/issues/9469 is required to remove this patch.
1111
1 file changed, 3 insertions(+)
1212

1313
diff --git a/build/MSBuildExtensions.targets b/build/MSBuildExtensions.targets
14-
index f5365724a..f192226b8 100644
14+
index 9e0aa5db4..89c8503e1 100644
1515
--- a/build/MSBuildExtensions.targets
1616
+++ b/build/MSBuildExtensions.targets
17-
@@ -196,6 +196,9 @@ Copyright (c) .NET Foundation. All rights reserved.
18-
<LatestPatchVersionForNetCore1_0 Condition="'%24(LatestPatchVersionForNetCore1_0)' == ''">1.0.12</LatestPatchVersionForNetCore1_0>
17+
@@ -197,6 +197,9 @@ Copyright (c) .NET Foundation. All rights reserved.
1918
<LatestPatchVersionForNetCore1_1 Condition="'%24(LatestPatchVersionForNetCore1_1)' == ''">1.1.9</LatestPatchVersionForNetCore1_1>
2019
<LatestPatchVersionForNetCore2_0 Condition="'%24(LatestPatchVersionForNetCore2_0)' == ''">2.0.9</LatestPatchVersionForNetCore2_0>
20+
<LatestPatchVersionForNetCore2_1 Condition="'%24(LatestPatchVersionForNetCore2_1)' == ''">2.1.2</LatestPatchVersionForNetCore2_1>
2121
+
2222
+ <!-- If true, always target the latest ASP.NET Core runtime by default -->
2323
+ <TargetLatestAspNetCoreRuntimePatch Condition="'$(TargetLatestAspNetCoreRuntimePatch)' == ''">$(DefaultTargetLatestAspNetCoreRuntimePatch)</TargetLatestAspNetCoreRuntimePatch>

patches/cli/0002-Fix-NuGet-SDK-resolver-PackageVersion-property.patch

Lines changed: 0 additions & 40 deletions
This file was deleted.

patches/cli/0003-Add-binlog-build-args.patch

Lines changed: 0 additions & 28 deletions
This file was deleted.

repos/core-setup.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<BuildArguments Condition="$(Platform.Contains('arm'))">$(BuildArguments) -TargetArchitecture=$(Platform) -DisableCrossgen=true -CrossBuild=true</BuildArguments>
77
<BuildCommand>$(ProjectDirectory)/build$(ShellExtension) $(BuildArguments) -- /p:BuildDebPackage=false /p:BuildAllPackages=true</BuildCommand>
88
<BuildCommand Condition="$(Platform.Contains('arm'))">$(ArmEnvironmentVariables) $(BuildCommand)</BuildCommand>
9-
<OfficialBuildId>20180725-02</OfficialBuildId>
9+
<OfficialBuildId>20180802-03</OfficialBuildId>
1010

1111
<!-- Need to set $(PackagesOutput) so WriteVersions writes the versions file for cli, until cli respects auto-dependency flow -->
1212
<PackagesOutput>$(SourceBuiltPackagesPath)</PackagesOutput>

repos/coreclr.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<BuildCommand>$(ProjectDirectory)/build$(ShellExtension) $(BuildArguments) --</BuildCommand>
1111
<BuildCommand Condition="$(Platform.Contains('arm'))">$(ArmEnvironmentVariables) $(BuildCommand)</BuildCommand>
1212
<CleanCommand>$(ProjectDirectory)/clean$(ShellExtension)</CleanCommand>
13-
<OfficialBuildId>20180725-03</OfficialBuildId>
13+
<OfficialBuildId>20180802-03</OfficialBuildId>
1414
</PropertyGroup>
1515

1616
<ItemGroup>

repos/corefx.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<BuildCommand Condition="$(Platform.Contains('arm'))">$(ArmEnvironmentVariables) $(BuildCommand)</BuildCommand>
88
<PackagesOutput>$(ProjectDirectory)/bin/packages/$(Configuration)</PackagesOutput>
99
<CleanCommand>$(ProjectDirectory)/clean$(ShellExtension)</CleanCommand>
10-
<OfficialBuildId>20180725-02</OfficialBuildId>
10+
<OfficialBuildId>20180802-03</OfficialBuildId>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

repos/sdk.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))/dir.props" />
44
<PropertyGroup>
5-
<OfficialBuildId>20180725.2</OfficialBuildId>
5+
<OfficialBuildId>20180802.1</OfficialBuildId>
66
<OutputVersionArgs>/p:BUILD_BUILDNUMBER=$(OfficialBuildId)</OutputVersionArgs>
77
<BuildCommandArgs>--pack --configuration $(Configuration) $(OutputVersionArgs)</BuildCommandArgs>
88

src/cli

Submodule cli updated 42 files

0 commit comments

Comments
 (0)