Fix loading libcoreclrtraceptprovider.so (#24702)
[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://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json;
8       https://dotnet.myget.org/F/dotnet-core/api/v3/index.json;
9       https://api.nuget.org/v3/index.json;
10       $(RestoreSources)
11     </RestoreSources>
12   </PropertyGroup>
13
14   <Import Project="eng/Versions.props" />
15
16   <!-- Source of truth for dependency tooling: the commit hash of the dotnet/versions master branch as of the last auto-upgrade. -->
17   <PropertyGroup>
18     <CoreClrCurrentRef>f1ee12b0dab462d0f58b87e878250146a125d9ff</CoreClrCurrentRef>
19     <BuildToolsCurrentRef>9519ad281b838b0b2bffa86b2837994d4f7c41d3</BuildToolsCurrentRef>
20   </PropertyGroup>
21
22   <!-- Tests/infrastructure dependency versions. -->
23   <PropertyGroup>
24     <MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview6-27702-71</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
25     <XunitPackageVersion>2.4.1-pre.build.4059</XunitPackageVersion>
26     <XunitPerformanceApiPackageVersion>1.0.0-beta-build0015</XunitPerformanceApiPackageVersion>
27     <MicrosoftDiagnosticsTracingTraceEventPackageVersion>2.0.40</MicrosoftDiagnosticsTracingTraceEventPackageVersion>
28     <CommandLineParserVersion>2.2.0</CommandLineParserVersion>
29
30     <!-- Scenario tests install this version of Microsoft.NetCore.App, then patch coreclr binaries via xcopy. At the moment it is
31          updated manually whenever breaking changes require it to move forward, but it would be nice if we could update it automatically
32          as we do with many of the package versions above -->
33     <BaselineMicrosoftNetCoreAppPackageVersion>2.1.0-preview3-26416-01</BaselineMicrosoftNetCoreAppPackageVersion>
34   </PropertyGroup>
35
36   <!-- Package dependency verification/auto-upgrade configuration. -->
37   <PropertyGroup>
38     <BaseDotNetBuildInfo>build-info/dotnet/</BaseDotNetBuildInfo>
39     <DependencyBranch>master</DependencyBranch>
40     <CurrentRefXmlPath>$(MSBuildThisFileFullPath)</CurrentRefXmlPath>
41   </PropertyGroup>
42
43   <!-- ILLink.Tasks package version -->
44   <PropertyGroup>
45     <ILLinkTasksPackage>ILLink.Tasks</ILLinkTasksPackage>
46     <ILLinkTasksPackageVersion>0.1.5-preview-1461378</ILLinkTasksPackageVersion>
47   </PropertyGroup>
48
49   <ItemGroup>
50     <RemoteDependencyBuildInfo Include="CoreClr">
51       <BuildInfoPath>$(BaseDotNetBuildInfo)coreclr/$(DependencyBranch)</BuildInfoPath>
52       <CurrentRef>$(CoreClrCurrentRef)</CurrentRef>
53     </RemoteDependencyBuildInfo>
54     <RemoteDependencyBuildInfo Include="BuildTools">
55       <BuildInfoPath>$(BaseDotNetBuildInfo)buildtools/$(DependencyBranch)</BuildInfoPath>
56       <CurrentRef>$(BuildToolsCurrentRef)</CurrentRef>
57     </RemoteDependencyBuildInfo>
58
59     <DependencyBuildInfo Include="@(RemoteDependencyBuildInfo)">
60       <RawVersionsBaseUrl>https://raw.githubusercontent.com/dotnet/versions</RawVersionsBaseUrl>
61     </DependencyBuildInfo>
62
63     <XmlUpdateStep Include="CoreClr">
64       <Path>$(MSBuildThisFileFullPath)</Path>
65       <ElementName>MicrosoftNETCoreRuntimeCoreCLRPackageVersion</ElementName>
66       <PackageId>Microsoft.NETCore.Runtime.CoreCLR</PackageId>
67     </XmlUpdateStep>
68     <UpdateStep Include="BuildTools">
69       <UpdaterType>File</UpdaterType>
70       <Path>$(MSBuildThisFileDirectory)BuildToolsVersion.txt</Path>
71       <PackageId>Microsoft.DotNet.BuildTools</PackageId>
72     </UpdateStep>
73     <UpdateStep Include="ILAsm">
74       <UpdaterType>File</UpdaterType>
75       <Path>$(MSBuildThisFileDirectory)ILAsmVersion.txt</Path>
76       <PackageId>Microsoft.NETCore.ILAsm</PackageId>
77     </UpdateStep>
78   </ItemGroup>
79
80   <!-- Set up dependencies on packages that aren't found in a BuildInfo. -->
81   <ItemGroup>
82     <XUnitDependency Include="xunit"/>
83     <XUnitDependency Include="xunit.assert"/>
84     <XUnitDependency Include="xunit.core"/>
85     <XUnitDependency Include="xunit.extensibility.core" />
86     <XUnitDependency Include="xunit.runner.console"/>
87     <XUnitDependency Include="xunit.runner.msbuild"/>
88     <XUnitDependency Include="xunit.runner.utility"/>
89     <StaticDependency Include="@(XUnitDependency)">
90       <Version>$(XunitPackageVersion)</Version>
91     </StaticDependency>
92
93     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance" />
94     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis" />
95     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis.cli" />
96     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.metrics" />
97     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.run.core" />
98     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.cli" />
99     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.Windows" />
100     <StaticDependency Include="@(XunitPerformanceDependency)">
101       <Version>1.0.0-alpha-build0040</Version>
102     </StaticDependency>
103
104     <XUnitPerformanceApiDependency Include="xunit.performance.api" />
105     <XUnitPerformanceApiDependency Include="xunit.performance.core" />
106     <XUnitPerformanceApiDependency Include="xunit.performance.execution" />
107     <XUnitPerformanceApiDependency Include="xunit.performance.metrics" />
108     <StaticDependency Include="@(XUnitPerformanceApiDependency)">
109       <Version>$(XunitPerformanceApiPackageVersion)</Version>
110     </StaticDependency>
111
112     <DependencyBuildInfo Include="@(StaticDependency)">
113       <PackageId>%(Identity)</PackageId>
114       <UpdateStableVersions>true</UpdateStableVersions>
115     </DependencyBuildInfo>
116   </ItemGroup>
117
118   <!-- Override isolated build dependency versions with versions from Repo API. -->
119   <Import Project="$(DotNetPackageVersionPropsPath)"
120           Condition="'$(DotNetPackageVersionPropsPath)' != ''" />
121
122 </Project>