File tree Expand file tree Collapse file tree 11 files changed +46
-19
lines changed Expand file tree Collapse file tree 11 files changed +46
-19
lines changed Original file line number Diff line number Diff line change 1
- https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-1/20180720 -01/final/index.json
1
+ https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-1/20180722 -01/final/index.json
Original file line number Diff line number Diff line change 5
5
for which dotnet/versions commit was last used to update the dependency.
6
6
-->
7
7
<PropertyGroup >
8
- <ProdConCurrentRef >249d209ddf374b9fd057e23e1ddd8941aec117ee </ProdConCurrentRef >
9
- <CoreClrCurrentRef >249d209ddf374b9fd057e23e1ddd8941aec117ee </CoreClrCurrentRef >
8
+ <ProdConCurrentRef >c6f30484e30cd7db70143b1c46da03c9e5d37547 </ProdConCurrentRef >
9
+ <CoreClrCurrentRef >c6f30484e30cd7db70143b1c46da03c9e5d37547 </CoreClrCurrentRef >
10
10
<BuildToolsCurrentRef >91c9a3b3374ff71e72c06d5773bd26598539aa1d</BuildToolsCurrentRef >
11
11
</PropertyGroup >
12
12
23
23
<ILLinkTasksPackageVersion >0.1.5-preview-1461378</ILLinkTasksPackageVersion >
24
24
</PropertyGroup >
25
25
26
+ <!--
27
+ Packages built by ProdCon, but not source-build. These are included as prebuilts, or embedded in
28
+ the product as version strings to be used by the SDK to fetch extra content.
29
+ -->
30
+ <PropertyGroup >
31
+ <MicrosoftAspNetCoreAllPackageVersion >2.1.3-rtm-30923</MicrosoftAspNetCoreAllPackageVersion >
32
+ <MicrosoftAspNetCoreAppPackageVersion >2.1.3-rtm-30923</MicrosoftAspNetCoreAppPackageVersion >
33
+ <MicrosoftNETSdkRazorPackageVersion >2.1.2-rtm-30923</MicrosoftNETSdkRazorPackageVersion >
34
+ </PropertyGroup >
35
+
26
36
<ItemGroup >
27
37
<!-- Get ILAsm tool version from CoreCLR. -->
28
38
<RemoteDependencyBuildInfo Include =" CoreClr" >
40
50
41
51
<DependencyInfo Include =" ProdCon" Condition =" '$(UpdateFromManifestFile)' == ''" >
42
52
<DependencyType >Orchestrated build</DependencyType >
43
- <BasePath >build-info/dotnet/product/cli/release/2.1.3 </BasePath >
53
+ <BasePath >build-info/dotnet/product/cli/release/2.1</BasePath >
44
54
<CurrentRef >$(ProdConCurrentRef)</CurrentRef >
45
55
<VersionsRepoOwner >dotnet</VersionsRepoOwner >
46
56
<VersionsRepo >versions</VersionsRepo >
Original file line number Diff line number Diff line change 95
95
ReplacementSubstituteOld =" $(ProdConBlobFeedReplaceOld)"
96
96
ReplacementSubstituteNew =" $(ProdConBlobFeedReplaceNew)" />
97
97
</ItemGroup >
98
+
99
+ <!-- Upgrade some package versions that are built only by ProdCon. -->
100
+ <ItemGroup >
101
+ <PackageUpdatedFromProdCon Include =" Microsoft.AspNetCore.All" Element =" MicrosoftAspNetCoreAllPackageVersion" />
102
+ <PackageUpdatedFromProdCon Include =" Microsoft.AspNetCore.App" Element =" MicrosoftAspNetCoreAppPackageVersion" />
103
+ <PackageUpdatedFromProdCon Include =" Microsoft.NET.Sdk.Razor" Element =" MicrosoftNETSdkRazorPackageVersion" />
104
+
105
+ <UpdateStep
106
+ Include =" ProdCon"
107
+ UpdaterType =" Orchestrated blob feed package version"
108
+ PackageId =" @(PackageUpdatedFromProdCon)"
109
+ Path =" $(MSBuildThisFileDirectory)dependencies.props"
110
+ ElementName =" %(PackageUpdatedFromProdCon.Element)"
111
+ SkipIfNoReplacementFound =" true" />
112
+ </ItemGroup >
98
113
</Target >
99
114
</Project >
Original file line number Diff line number Diff line change 2
2
set -euo pipefail
3
3
IFS=$' \n\t '
4
4
5
+ getIndexedSubmoduleSha () {
6
+ (
7
+ cd " .."
8
+ git ls-tree HEAD " $REPO_NAME " | awk ' {print $3}'
9
+ )
10
+ }
11
+
5
12
SOURCE=" ${BASH_SOURCE[0]} "
6
13
while [ -h " $SOURCE " ]; do # resolve $SOURCE until the file is no longer a symlink
7
14
DIR=" $( cd -P " $( dirname " $SOURCE " ) " && pwd ) "
@@ -10,9 +17,9 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli
10
17
done
11
18
DIR=" $( cd -P " $( dirname " $SOURCE " ) " && pwd ) "
12
19
13
- BASE_SHA=$1
14
20
REPO_NAME=$( basename $( pwd) )
15
21
PATCHES_DIR=$DIR /patches/$REPO_NAME
22
+ BASE_SHA=${1:- $(getIndexedSubmoduleSha)}
16
23
17
24
if [ ! -d $PATCHES_DIR ]; then
18
25
mkdir -p $PATCHES_DIR
Original file line number Diff line number Diff line change 45
45
</PropertyGroup >
46
46
47
47
<ItemGroup >
48
- <ExtraPackageVersionPropsPackageInfo
49
- Include ="
50
- Microsoft.AspNetCore.All;
51
- Microsoft.AspNetCore.App"
52
- Version =" 2.1.3" />
53
- <ExtraPackageVersionPropsPackageInfo
54
- Include =" Microsoft.NET.Sdk.Razor"
55
- Version =" 2.1.2" />
48
+ <ExtraPackageVersionPropsPackageInfo Include =" Microsoft.AspNetCore.All" Version =" $(MicrosoftAspNetCoreAllPackageVersion)" />
49
+ <ExtraPackageVersionPropsPackageInfo Include =" Microsoft.AspNetCore.App" Version =" $(MicrosoftAspNetCoreAppPackageVersion)" />
50
+ <ExtraPackageVersionPropsPackageInfo Include =" Microsoft.NET.Sdk.Razor" Version =" $(MicrosoftNETSdkRazorPackageVersion)" />
56
51
</ItemGroup >
57
52
58
53
<ItemGroup >
Original file line number Diff line number Diff line change 6
6
<BuildArguments Condition =" $(Platform.Contains('arm'))" >$(BuildArguments) -TargetArchitecture=$(Platform) -DisableCrossgen=true -CrossBuild=true</BuildArguments >
7
7
<BuildCommand >$(ProjectDirectory)/build$(ShellExtension) $(BuildArguments) -- /p:BuildDebPackage=false /p:BuildAllPackages=true</BuildCommand >
8
8
<BuildCommand Condition =" $(Platform.Contains('arm'))" >$(ArmEnvironmentVariables) $(BuildCommand)</BuildCommand >
9
- <OfficialBuildId >20180720-04 </OfficialBuildId >
9
+ <OfficialBuildId >20180722-02 </OfficialBuildId >
10
10
11
11
<!-- Need to set $(PackagesOutput) so WriteVersions writes the versions file for cli, until cli respects auto-dependency flow -->
12
12
<PackagesOutput >$(SourceBuiltPackagesPath)</PackagesOutput >
Original file line number Diff line number Diff line change 10
10
<BuildCommand >$(ProjectDirectory)/build$(ShellExtension) $(BuildArguments) --</BuildCommand >
11
11
<BuildCommand Condition =" $(Platform.Contains('arm'))" >$(ArmEnvironmentVariables) $(BuildCommand)</BuildCommand >
12
12
<CleanCommand >$(ProjectDirectory)/clean$(ShellExtension)</CleanCommand >
13
- <OfficialBuildId >20180720-02 </OfficialBuildId >
13
+ <OfficialBuildId >20180722-03 </OfficialBuildId >
14
14
</PropertyGroup >
15
15
16
16
<ItemGroup >
Original file line number Diff line number Diff line change 7
7
<BuildCommand Condition =" $(Platform.Contains('arm'))" >$(ArmEnvironmentVariables) $(BuildCommand)</BuildCommand >
8
8
<PackagesOutput >$(ProjectDirectory)/bin/packages/$(Configuration)</PackagesOutput >
9
9
<CleanCommand >$(ProjectDirectory)/clean$(ShellExtension)</CleanCommand >
10
- <OfficialBuildId >20180720-08 </OfficialBuildId >
10
+ <OfficialBuildId >20180722-02 </OfficialBuildId >
11
11
</PropertyGroup >
12
12
13
13
<ItemGroup >
Original file line number Diff line number Diff line change 2
2
<Project ToolsVersion =" 15.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
3
<Import Project =" $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))/dir.props" />
4
4
<PropertyGroup >
5
- <OfficialBuildId >20180720 .2</OfficialBuildId >
5
+ <OfficialBuildId >20180722 .2</OfficialBuildId >
6
6
<OutputVersionArgs >/p:BUILD_BUILDNUMBER=$(OfficialBuildId)</OutputVersionArgs >
7
7
<BuildCommandArgs >--pack --configuration $(Configuration) $(OutputVersionArgs)</BuildCommandArgs >
8
8
You can’t perform that action at this time.
0 commit comments