Update BuildTools, CoreClr, CoreFx, CoreSetup, PgoData to preview1-03127-01, preview1...
[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>fdd0b548adc896b40ecb28af7de3b781b30fa890</CoreFxCurrentRef>
27     <CoreClrCurrentRef>fdd0b548adc896b40ecb28af7de3b781b30fa890</CoreClrCurrentRef>
28     <BuildToolsCurrentRef>e0c1d36d8a19fed21cadfff4890e027bd4c2c214</BuildToolsCurrentRef>
29     <PgoDataCurrentRef>fdd0b548adc896b40ecb28af7de3b781b30fa890</PgoDataCurrentRef>
30     <CoreSetupCurrentRef>fdd0b548adc896b40ecb28af7de3b781b30fa890</CoreSetupCurrentRef>
31     <IbcDataCurrentRef>e0c1d36d8a19fed21cadfff4890e027bd4c2c214</IbcDataCurrentRef>
32   </PropertyGroup>
33
34   <!-- Tests/infrastructure dependency versions. -->
35   <PropertyGroup>
36     <MicrosoftPrivateCoreFxNETCoreAppPackageVersion>4.6.0-preview1-26827-04</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
37     <MicrosoftNETCorePlatformsPackageVersion>3.0.0-preview1-26827-04</MicrosoftNETCorePlatformsPackageVersion>
38     <PgoDataPackageVersion>99.99.99-master-20180827-0150</PgoDataPackageVersion>
39     <MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview1-26827-04</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
40     <MicrosoftNETCoreAppPackageVersion>3.0.0-preview1-26827-01</MicrosoftNETCoreAppPackageVersion>
41     <XunitPackageVersion>2.4.0-beta.2.build4010</XunitPackageVersion>
42     <IbcDataPackageVersion>99.99.99-master-20180827-0150</IbcDataPackageVersion>
43     <IbcMergePackageVersion>4.6.0-alpha-00001</IbcMergePackageVersion>
44     <XunitPerformanceApiPackageVersion>1.0.0-beta-build0015</XunitPerformanceApiPackageVersion>
45     <MicrosoftDiagnosticsTracingTraceEventPackageVersion>2.0.4</MicrosoftDiagnosticsTracingTraceEventPackageVersion>
46     <CommandLineParserVersion>2.2.0</CommandLineParserVersion>
47     <VCRuntimeVersion>2.0.0</VCRuntimeVersion>
48     
49     <!-- Scenario tests install this version of Microsoft.NetCore.App, then patch coreclr binaries via xcopy. At the moment it is
50          updated manually whenever breaking changes require it to move forward, but it would be nice if we could update it automatically
51          as we do with many of the package versions above -->
52     <BaselineMicrosoftNetCoreAppPackageVersion>2.1.0-preview3-26416-01</BaselineMicrosoftNetCoreAppPackageVersion>
53   </PropertyGroup>
54
55   <!-- Package versions used as toolsets -->
56   <PropertyGroup>
57     <FeedTasksPackage>Microsoft.DotNet.Build.Tasks.Feed</FeedTasksPackage>
58     <FeedTasksPackageVersion>2.2.0-preview1-03116-01</FeedTasksPackageVersion>
59   </PropertyGroup>
60
61   <!-- Publish symbol build task package -->
62   <PropertyGroup>
63     <PublishSymbolsPackage>Microsoft.SymbolUploader.Build.Task</PublishSymbolsPackage>
64     <PublishSymbolsPackageVersion>1.0.0-beta-62806-01</PublishSymbolsPackageVersion>
65   </PropertyGroup>
66
67   <!-- Package dependency verification/auto-upgrade configuration. -->
68   <PropertyGroup>
69     <BaseDotNetBuildInfo>build-info/dotnet/</BaseDotNetBuildInfo>
70     <DependencyBranch>master</DependencyBranch>
71     <CurrentRefXmlPath>$(MSBuildThisFileFullPath)</CurrentRefXmlPath>
72   </PropertyGroup>
73
74   <!-- ILLink.Tasks package version -->
75   <PropertyGroup>
76     <ILLinkTasksPackage>ILLink.Tasks</ILLinkTasksPackage>
77     <ILLinkTasksPackageVersion>0.1.5-preview-1461378</ILLinkTasksPackageVersion>
78   </PropertyGroup>
79
80   <ItemGroup>
81     <RemoteDependencyBuildInfo Include="CoreFx">
82       <BuildInfoPath>$(BaseDotNetBuildInfo)corefx/$(DependencyBranch)</BuildInfoPath>
83       <CurrentRef>$(CoreFxCurrentRef)</CurrentRef>
84     </RemoteDependencyBuildInfo>
85     <RemoteDependencyBuildInfo Include="CoreClr">
86       <BuildInfoPath>$(BaseDotNetBuildInfo)coreclr/$(DependencyBranch)</BuildInfoPath>
87       <CurrentRef>$(CoreClrCurrentRef)</CurrentRef>
88     </RemoteDependencyBuildInfo>
89     <RemoteDependencyBuildInfo Include="BuildTools">
90       <BuildInfoPath>$(BaseDotNetBuildInfo)buildtools/$(DependencyBranch)</BuildInfoPath>
91       <CurrentRef>$(BuildToolsCurrentRef)</CurrentRef>
92     </RemoteDependencyBuildInfo>
93     <RemoteDependencyBuildInfo Include="PgoData">
94       <BuildInfoPath>$(BaseDotNetBuildInfo)optimization/$(DependencyBranch)</BuildInfoPath>
95       <CurrentRef>$(PgoDataCurrentRef)</CurrentRef>
96     </RemoteDependencyBuildInfo>
97     <RemoteDependencyBuildInfo Include="IbcData">
98       <BuildInfoPath>$(BaseDotNetBuildInfo)optimization/$(DependencyBranch)</BuildInfoPath>
99       <CurrentRef>$(IbcDataCurrentRef)</CurrentRef>
100     </RemoteDependencyBuildInfo>
101     <RemoteDependencyBuildInfo Include="CoreSetup">
102       <BuildInfoPath>$(BaseDotNetBuildInfo)core-setup/$(DependencyBranch)</BuildInfoPath>
103       <CurrentRef>$(CoreSetupCurrentRef)</CurrentRef>
104     </RemoteDependencyBuildInfo>
105
106     <DependencyBuildInfo Include="@(RemoteDependencyBuildInfo)">
107       <RawVersionsBaseUrl>https://raw.githubusercontent.com/dotnet/versions</RawVersionsBaseUrl>
108     </DependencyBuildInfo>
109
110     <XmlUpdateStep Include="CoreFx">
111       <Path>$(MSBuildThisFileFullPath)</Path>
112       <ElementName>MicrosoftPrivateCoreFxNETCoreAppPackageVersion</ElementName>
113       <PackageId>Microsoft.Private.CoreFx.NETCoreApp</PackageId>
114     </XmlUpdateStep>
115     <XmlUpdateStep Include="CoreFx">
116       <Path>$(MSBuildThisFileFullPath)</Path>
117       <ElementName>MicrosoftNETCorePlatformsPackageVersion</ElementName>
118       <PackageId>Microsoft.NETCore.Platforms</PackageId>
119     </XmlUpdateStep>
120     <XmlUpdateStep Include="CoreClr">
121       <Path>$(MSBuildThisFileFullPath)</Path>
122       <ElementName>MicrosoftNETCoreRuntimeCoreCLRPackageVersion</ElementName>
123       <PackageId>Microsoft.NETCore.Runtime.CoreCLR</PackageId>
124     </XmlUpdateStep>
125     <XmlUpdateStep Include="CoreSetup">
126       <Path>$(MSBuildThisFileFullPath)</Path>
127       <ElementName>MicrosoftNETCoreAppPackageVersion</ElementName>
128       <PackageId>Microsoft.NETCore.App</PackageId>
129     </XmlUpdateStep>
130     <UpdateStep Include="BuildTools">
131       <UpdaterType>File</UpdaterType>
132       <Path>$(MSBuildThisFileDirectory)BuildToolsVersion.txt</Path>
133       <PackageId>Microsoft.DotNet.BuildTools</PackageId>
134     </UpdateStep>
135     <XmlUpdateStep Include="BuildTools">
136        <Path>$(MSBuildThisFileFullPath)</Path>
137        <ElementName>FeedTasksPackageVersion</ElementName>
138        <PackageId>$(FeedTasksPackage)</PackageId>
139     </XmlUpdateStep>
140     <XmlUpdateStep Include="PgoData">
141       <Path>$(MSBuildThisFileFullPath)</Path>
142       <ElementName>PgoDataPackageVersion</ElementName>
143       <PackageId>optimization.PGO.CoreCLR</PackageId>
144     </XmlUpdateStep>
145     <XmlUpdateStep Include="Data">
146       <Path>$(MSBuildThisFileFullPath)</Path>
147       <ElementName>IbcDataPackageVersion</ElementName>
148       <PackageId>optimization.IBC.CoreCLR</PackageId>
149     </XmlUpdateStep>
150     <UpdateStep Include="ILAsm">
151       <UpdaterType>File</UpdaterType>
152       <Path>$(MSBuildThisFileDirectory)ILAsmVersion.txt</Path>
153       <PackageId>Microsoft.NETCore.ILAsm</PackageId>
154     </UpdateStep>
155   </ItemGroup>
156
157   <!-- Set up dependencies on packages that aren't found in a BuildInfo. -->
158   <ItemGroup>
159     <XUnitDependency Include="xunit"/>
160     <XUnitDependency Include="xunit.assert"/>
161     <XUnitDependency Include="xunit.core"/>
162     <XUnitDependency Include="xunit.extensibility.core" />
163     <XUnitDependency Include="xunit.runner.console"/>
164     <XUnitDependency Include="xunit.runner.msbuild"/>
165     <XUnitDependency Include="xunit.runner.utility"/>
166     <StaticDependency Include="@(XUnitDependency)">
167       <Version>$(XunitPackageVersion)</Version>
168     </StaticDependency>
169
170     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance" />
171     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis" />
172     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis.cli" />
173     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.metrics" />
174     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.run.core" />
175     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.cli" />
176     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.Windows" />
177     <StaticDependency Include="@(XunitPerformanceDependency)">
178       <Version>1.0.0-alpha-build0040</Version>
179     </StaticDependency>
180
181     <XUnitPerformanceApiDependency Include="xunit.performance.api" />
182     <XUnitPerformanceApiDependency Include="xunit.performance.core" />
183     <XUnitPerformanceApiDependency Include="xunit.performance.execution" />
184     <XUnitPerformanceApiDependency Include="xunit.performance.metrics" />
185     <StaticDependency Include="@(XUnitPerformanceApiDependency)">
186       <Version>$(XunitPerformanceApiPackageVersion)</Version>
187     </StaticDependency>
188
189     <DependencyBuildInfo Include="@(StaticDependency)">
190       <PackageId>%(Identity)</PackageId>
191       <UpdateStableVersions>true</UpdateStableVersions>
192     </DependencyBuildInfo>
193   </ItemGroup>
194
195   <!-- Override isolated build dependency versions with versions from Repo API. -->
196   <Import Project="$(DotNetPackageVersionPropsPath)"
197           Condition="'$(DotNetPackageVersionPropsPath)' != ''" />
198
199 </Project>