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