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