Revert "[ARM32/Linux] Copy tests.zip only for CI test and use x86 unittest"
[platform/upstream/coreclr.git] / dependencies.props
1 <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2   <!-- Source of truth for dependency tooling: the commit hash of the dotnet/versions master branch as of the last auto-upgrade. -->
3   <PropertyGroup>
4     <CoreFxCurrentRef>4c90661bc00114b4e7ba79c944d1c011dda5b126</CoreFxCurrentRef>
5     <CoreClrCurrentRef>caa7245d2aabffcb177ee456e4d1d2901462ebcb</CoreClrCurrentRef>
6   </PropertyGroup>
7
8   <!-- Auto-upgraded properties for each build info dependency. -->
9   <PropertyGroup>
10     <CoreFxExpectedPrerelease>preview2-25302-03</CoreFxExpectedPrerelease>
11   </PropertyGroup>
12
13   <!-- Full package version strings that are used in other parts of the build. -->
14   <PropertyGroup>
15     <CoreClrPackageVersion>2.0.0-preview2-25302-02</CoreClrPackageVersion>
16     <XunitPackageVersion>2.2.0-beta2-build3300</XunitPackageVersion>
17   </PropertyGroup>
18
19   <!-- Package dependency verification/auto-upgrade configuration. -->
20   <PropertyGroup>
21     <BaseDotNetBuildInfo>build-info/dotnet/</BaseDotNetBuildInfo>
22     <DependencyBranch>master</DependencyBranch>
23     <CurrentRefXmlPath>$(MSBuildThisFileFullPath)</CurrentRefXmlPath>
24   </PropertyGroup>
25
26   <ItemGroup>
27     <RemoteDependencyBuildInfo Include="CoreFx">
28       <BuildInfoPath>$(BaseDotNetBuildInfo)corefx/$(DependencyBranch)</BuildInfoPath>
29       <CurrentRef>$(CoreFxCurrentRef)</CurrentRef>
30     </RemoteDependencyBuildInfo>
31     <RemoteDependencyBuildInfo Include="CoreClr">
32       <BuildInfoPath>$(BaseDotNetBuildInfo)coreclr/$(DependencyBranch)</BuildInfoPath>
33       <CurrentRef>$(CoreClrCurrentRef)</CurrentRef>
34     </RemoteDependencyBuildInfo>
35     
36     <DependencyBuildInfo Include="@(RemoteDependencyBuildInfo)">
37       <RawVersionsBaseUrl>https://raw.githubusercontent.com/dotnet/versions</RawVersionsBaseUrl>
38     </DependencyBuildInfo>
39
40     <XmlUpdateStep Include="CoreFx">
41       <Path>$(MSBuildThisFileFullPath)</Path>
42       <ElementName>CoreFxExpectedPrerelease</ElementName>
43       <BuildInfoName>CoreFx</BuildInfoName>
44     </XmlUpdateStep>
45     <XmlUpdateStep Include="CoreClr">
46       <Path>$(MSBuildThisFileFullPath)</Path>
47       <ElementName>CoreClrPackageVersion</ElementName>
48       <PackageId>Microsoft.NETCore.Runtime.CoreCLR</PackageId>
49     </XmlUpdateStep>
50   </ItemGroup>
51
52   <!-- Set up dependencies on packages that aren't found in a BuildInfo. -->
53   <ItemGroup>
54     <XUnitDependency Include="xunit"/>
55     <XUnitDependency Include="xunit.assert"/>
56     <XUnitDependency Include="xunit.core"/>
57     <XUnitDependency Include="xunit.runner.console"/>
58     <XUnitDependency Include="xunit.runner.msbuild"/>
59     <XUnitDependency Include="xunit.runner.utility"/>
60     <StaticDependency Include="@(XUnitDependency)">
61       <Version>$(XunitPackageVersion)</Version>
62     </StaticDependency>
63
64     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance" />
65     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis" />
66     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis.cli" />
67     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.metrics" />
68     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.run.core" />
69     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.cli" />
70     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.Windows" />
71     <StaticDependency Include="@(XunitPerformanceDependency)">
72       <Version>1.0.0-alpha-build0040</Version>
73     </StaticDependency>
74
75     <StaticDependency Include="xunit.console.netcore">
76       <Version>1.0.2-prerelease-00177</Version>
77     </StaticDependency>
78
79     <DependencyBuildInfo Include="@(StaticDependency)">
80       <PackageId>%(Identity)</PackageId>
81       <UpdateStableVersions>true</UpdateStableVersions>
82     </DependencyBuildInfo>
83   </ItemGroup>
84 </Project>