Update CoreClr to preview1-26719-01 (#19016)
[platform/upstream/coreclr.git] / dependencies.props
1 <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2
3   <!-- NuGet package restore sources. -->
4   <PropertyGroup>
5     <RestoreSources Condition="'$(DotNetBuildOffline)' != 'true'">
6       https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json;
7       https://dotnet.myget.org/F/dotnet-core/api/v3/index.json;
8       https://api.nuget.org/v3/index.json;
9       $(RestoreSources)
10     </RestoreSources>
11   </PropertyGroup>
12
13   <PropertyGroup>
14     <!-- Central place to set the versions of all nuget packages produced in the repo -->
15     <PackageVersion Condition="'$(PackageVersion)' == ''">3.0.0</PackageVersion>
16
17     <!-- Set the boolean below to true to generate packages with stabilized versions -->
18     <StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
19     <StableVersion Condition="'$(StabilizePackageVersion)' == 'true' and '$(StableVersion)' == ''">$(PackageVersion)</StableVersion>
20
21     <PreReleaseLabel>preview1</PreReleaseLabel>
22   </PropertyGroup>
23
24   <!-- Source of truth for dependency tooling: the commit hash of the dotnet/versions master branch as of the last auto-upgrade. -->
25   <PropertyGroup>
26     <CoreFxCurrentRef>300cfdc6d48406c1e70032cfd6754e81a1e31b1d</CoreFxCurrentRef>
27     <CoreClrCurrentRef>cd6277062ffecc4b34f590d29dfeac5004e9b58f</CoreClrCurrentRef>
28     <BuildToolsCurrentRef>d60645ab29d840336360335dfc84e3b055dd6d9d</BuildToolsCurrentRef>
29     <PgoDataCurrentRef>cfff11f63cd6c206d533dcd5714de8cebfdc3886</PgoDataCurrentRef>
30   </PropertyGroup>
31
32   <!-- Tests/infrastructure dependency versions. -->
33   <PropertyGroup>
34     <MicrosoftPrivateCoreFxNETCoreAppPackageVersion>4.6.0-preview1-26717-04</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
35     <MicrosoftNETCorePlatformsPackageVersion>3.0.0-preview1-26717-04</MicrosoftNETCorePlatformsPackageVersion>
36     <PgoDataPackageVersion>99.99.99-master-20180718-0214</PgoDataPackageVersion>
37     <MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview1-26719-01</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
38     <XunitPackageVersion>2.2.0-beta2-build3300</XunitPackageVersion>
39     <XunitConsoleNetcorePackageVersion>2.2.0-preview1-02830-02</XunitConsoleNetcorePackageVersion>
40     <XunitPerformanceApiPackageVersion>1.0.0-beta-build0015</XunitPerformanceApiPackageVersion>
41     <MicrosoftDiagnosticsTracingTraceEventPackageVersion>2.0.4</MicrosoftDiagnosticsTracingTraceEventPackageVersion>
42     <CommandLineParserVersion>2.2.0</CommandLineParserVersion>
43     <VCRuntimeVersion>1.2.0</VCRuntimeVersion>
44     
45     <!-- Scenario tests install this version of Microsoft.NetCore.App, then patch coreclr binaries via xcopy. At the moment it is
46          updated manually whenever breaking changes require it to move forward, but it would be nice if we could update it automatically
47          as we do with many of the package versions above -->
48     <BaselineMicrosoftNetCoreAppPackageVersion>2.1.0-preview3-26416-01</BaselineMicrosoftNetCoreAppPackageVersion>
49   </PropertyGroup>
50
51   <!-- Package versions used as toolsets -->
52   <PropertyGroup>
53     <FeedTasksPackage>Microsoft.DotNet.Build.Tasks.Feed</FeedTasksPackage>
54     <FeedTasksPackageVersion>2.2.0-preview1-03013-03</FeedTasksPackageVersion>
55   </PropertyGroup>
56
57   <!-- Publish symbol build task package -->
58   <PropertyGroup>
59     <PublishSymbolsPackage>Microsoft.SymbolUploader.Build.Task</PublishSymbolsPackage>
60     <PublishSymbolsPackageVersion>1.0.0-beta-62806-01</PublishSymbolsPackageVersion>
61   </PropertyGroup>
62
63   <!-- Package dependency verification/auto-upgrade configuration. -->
64   <PropertyGroup>
65     <BaseDotNetBuildInfo>build-info/dotnet/</BaseDotNetBuildInfo>
66     <DependencyBranch>master</DependencyBranch>
67     <CurrentRefXmlPath>$(MSBuildThisFileFullPath)</CurrentRefXmlPath>
68   </PropertyGroup>
69
70   <!-- ILLink.Tasks package version -->
71   <PropertyGroup>
72     <ILLinkTasksPackage>ILLink.Tasks</ILLinkTasksPackage>
73     <ILLinkTasksPackageVersion>0.1.5-preview-1461378</ILLinkTasksPackageVersion>
74   </PropertyGroup>
75
76   <ItemGroup>
77     <RemoteDependencyBuildInfo Include="CoreFx">
78       <BuildInfoPath>$(BaseDotNetBuildInfo)corefx/$(DependencyBranch)</BuildInfoPath>
79       <CurrentRef>$(CoreFxCurrentRef)</CurrentRef>
80     </RemoteDependencyBuildInfo>
81     <RemoteDependencyBuildInfo Include="CoreClr">
82       <BuildInfoPath>$(BaseDotNetBuildInfo)coreclr/$(DependencyBranch)</BuildInfoPath>
83       <CurrentRef>$(CoreClrCurrentRef)</CurrentRef>
84     </RemoteDependencyBuildInfo>
85     <RemoteDependencyBuildInfo Include="BuildTools">
86       <BuildInfoPath>$(BaseDotNetBuildInfo)buildtools/$(DependencyBranch)</BuildInfoPath>
87       <CurrentRef>$(BuildToolsCurrentRef)</CurrentRef>
88     </RemoteDependencyBuildInfo>
89     <RemoteDependencyBuildInfo Include="PgoData">
90       <BuildInfoPath>$(BaseDotNetBuildInfo)optimization/$(DependencyBranch)</BuildInfoPath>
91       <CurrentRef>$(PgoDataCurrentRef)</CurrentRef>
92     </RemoteDependencyBuildInfo>
93
94     <DependencyBuildInfo Include="@(RemoteDependencyBuildInfo)">
95       <RawVersionsBaseUrl>https://raw.githubusercontent.com/dotnet/versions</RawVersionsBaseUrl>
96     </DependencyBuildInfo>
97
98     <XmlUpdateStep Include="CoreFx">
99       <Path>$(MSBuildThisFileFullPath)</Path>
100       <ElementName>MicrosoftPrivateCoreFxNETCoreAppPackageVersion</ElementName>
101       <PackageId>Microsoft.Private.CoreFx.NETCoreApp</PackageId>
102     </XmlUpdateStep>
103     <XmlUpdateStep Include="CoreFx">
104       <Path>$(MSBuildThisFileFullPath)</Path>
105       <ElementName>MicrosoftNETCorePlatformsPackageVersion</ElementName>
106       <PackageId>Microsoft.NETCore.Platforms</PackageId>
107     </XmlUpdateStep>
108     <XmlUpdateStep Include="CoreClr">
109       <Path>$(MSBuildThisFileFullPath)</Path>
110       <ElementName>MicrosoftNETCoreRuntimeCoreCLRPackageVersion</ElementName>
111       <PackageId>Microsoft.NETCore.Runtime.CoreCLR</PackageId>
112     </XmlUpdateStep>
113     <UpdateStep Include="BuildTools">
114       <UpdaterType>File</UpdaterType>
115       <Path>$(MSBuildThisFileDirectory)BuildToolsVersion.txt</Path>
116       <PackageId>Microsoft.DotNet.BuildTools</PackageId>
117     </UpdateStep>
118     <XmlUpdateStep Include="BuildTools">
119        <Path>$(MSBuildThisFileFullPath)</Path>
120        <ElementName>FeedTasksPackageVersion</ElementName>
121        <PackageId>$(FeedTasksPackage)</PackageId>
122     </XmlUpdateStep>
123     <XmlUpdateStep Include="PgoData">
124       <Path>$(MSBuildThisFileFullPath)</Path>
125       <ElementName>PgoDataPackageVersion</ElementName>
126       <PackageId>optimization.PGO.CoreCLR</PackageId>
127     </XmlUpdateStep>
128     <UpdateStep Include="ILAsm">
129       <UpdaterType>File</UpdaterType>
130       <Path>$(MSBuildThisFileDirectory)ILAsmVersion.txt</Path>
131       <PackageId>Microsoft.NETCore.ILAsm</PackageId>
132     </UpdateStep>
133   </ItemGroup>
134
135   <!-- Set up dependencies on packages that aren't found in a BuildInfo. -->
136   <ItemGroup>
137     <XUnitDependency Include="xunit"/>
138     <XUnitDependency Include="xunit.assert"/>
139     <XUnitDependency Include="xunit.core"/>
140     <XUnitDependency Include="xunit.extensibility.core" />
141     <XUnitDependency Include="xunit.runner.console"/>
142     <XUnitDependency Include="xunit.runner.msbuild"/>
143     <XUnitDependency Include="xunit.runner.utility"/>
144     <StaticDependency Include="@(XUnitDependency)">
145       <Version>$(XunitPackageVersion)</Version>
146     </StaticDependency>
147
148     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance" />
149     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis" />
150     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis.cli" />
151     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.metrics" />
152     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.run.core" />
153     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.cli" />
154     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.Windows" />
155     <StaticDependency Include="@(XunitPerformanceDependency)">
156       <Version>1.0.0-alpha-build0040</Version>
157     </StaticDependency>
158
159     <XUnitPerformanceApiDependency Include="xunit.performance.api" />
160     <XUnitPerformanceApiDependency Include="xunit.performance.core" />
161     <XUnitPerformanceApiDependency Include="xunit.performance.execution" />
162     <XUnitPerformanceApiDependency Include="xunit.performance.metrics" />
163     <StaticDependency Include="@(XUnitPerformanceApiDependency)">
164       <Version>$(XunitPerformanceApiPackageVersion)</Version>
165     </StaticDependency>
166
167     <StaticDependency Include="xunit.console.netcore">
168       <Version>$(XunitConsoleNetcorePackageVersion)</Version>
169     </StaticDependency>
170
171     <DependencyBuildInfo Include="@(StaticDependency)">
172       <PackageId>%(Identity)</PackageId>
173       <UpdateStableVersions>true</UpdateStableVersions>
174     </DependencyBuildInfo>
175   </ItemGroup>
176
177   <!-- Override isolated build dependency versions with versions from Repo API. -->
178   <Import Project="$(DotNetPackageVersionPropsPath)"
179           Condition="'$(DotNetPackageVersionPropsPath)' != ''" />
180
181 </Project>