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