Fix local var ref counts in IND/STOREIND decomposition
[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>afe7fab6bb2a2cd82d381eab880d290b23ed5214</CoreFxCurrentRef>
5     <CoreClrCurrentRef>5adc811e2d62ae1543bc3e88748476d088532d2a</CoreClrCurrentRef>
6     <ExternalCurrentRef>039e8532657c2599e2f8baf2c3dcd95265f28645</ExternalCurrentRef>
7   </PropertyGroup>
8
9   <!-- Auto-upgraded properties for each build info dependency. -->
10   <PropertyGroup>
11     <CoreFxExpectedPrerelease>beta-24328-05</CoreFxExpectedPrerelease>
12     <ExternalExpectedPrerelease>beta-24417-00</ExternalExpectedPrerelease>
13   </PropertyGroup>
14
15   <!-- Full package version strings that are used in other parts of the build. -->
16   <PropertyGroup>
17     <CoreClrPackageVersion>1.0.4-beta-24325-02</CoreClrPackageVersion>
18     <XunitPackageVersion>2.1.0</XunitPackageVersion>
19   </PropertyGroup>
20
21   <!-- Package dependency verification/auto-upgrade configuration. -->
22   <PropertyGroup>
23     <BaseDotNetBuildInfo>build-info/dotnet/</BaseDotNetBuildInfo>
24     <DependencyBranch>master</DependencyBranch>
25     <CurrentRefXmlPath>$(MSBuildThisFileFullPath)</CurrentRefXmlPath>
26   </PropertyGroup>
27
28   <ItemGroup>
29     <RemoteDependencyBuildInfo Include="CoreFx">
30       <BuildInfoPath>$(BaseDotNetBuildInfo)corefx/$(DependencyBranch)</BuildInfoPath>
31       <CurrentRef>$(CoreFxCurrentRef)</CurrentRef>
32     </RemoteDependencyBuildInfo>
33     <RemoteDependencyBuildInfo Include="CoreClr">
34       <BuildInfoPath>$(BaseDotNetBuildInfo)coreclr/$(DependencyBranch)</BuildInfoPath>
35       <CurrentRef>$(CoreClrCurrentRef)</CurrentRef>
36     </RemoteDependencyBuildInfo>
37     <RemoteDependencyBuildInfo Include="External">
38       <BuildInfoPath>$(BaseDotNetBuildInfo)projectk-tfs/$(DependencyBranch)</BuildInfoPath>
39       <CurrentRef>$(ExternalCurrentRef)</CurrentRef>
40     </RemoteDependencyBuildInfo>
41
42     <DependencyBuildInfo Include="@(RemoteDependencyBuildInfo)">
43       <RawVersionsBaseUrl>https://raw.githubusercontent.com/dotnet/versions</RawVersionsBaseUrl>
44     </DependencyBuildInfo>
45
46     <XmlUpdateStep Include="CoreFx">
47       <Path>$(MSBuildThisFileFullPath)</Path>
48       <ElementName>CoreFxExpectedPrerelease</ElementName>
49       <BuildInfoName>CoreFx</BuildInfoName>
50     </XmlUpdateStep>
51     <XmlUpdateStep Include="CoreClr">
52       <Path>$(MSBuildThisFileFullPath)</Path>
53       <ElementName>CoreClrPackageVersion</ElementName>
54       <PackageId>Microsoft.NETCore.Runtime.CoreCLR</PackageId>
55     </XmlUpdateStep>
56     <XmlUpdateStep Include="External">
57       <Path>$(MSBuildThisFileFullPath)</Path>
58       <ElementName>ExternalExpectedPrerelease</ElementName>
59       <BuildInfoName>External</BuildInfoName>
60     </XmlUpdateStep>
61   </ItemGroup>
62
63   <!-- Set up dependencies on packages that aren't found in a BuildInfo. -->
64   <ItemGroup>
65     <XUnitDependency Include="xunit"/>
66     <XUnitDependency Include="xunit.assert"/>
67     <XUnitDependency Include="xunit.core"/>
68     <XUnitDependency Include="xunit.runner.console"/>
69     <XUnitDependency Include="xunit.runner.msbuild"/>
70     <XUnitDependency Include="xunit.runner.utility"/>
71     <StaticDependency Include="@(XUnitDependency)">
72       <Version>$(XunitPackageVersion)</Version>
73     </StaticDependency>
74
75     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis" />
76     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis.cli" />
77     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.metrics" />
78     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.run.core" />
79     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.cli" />
80     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.Windows" />
81     <StaticDependency Include="@(XunitPerformanceDependency)">
82       <Version>1.0.0-alpha-build0035</Version>
83     </StaticDependency>
84
85     <StaticDependency Include="xunit.console.netcore">
86       <Version>1.0.2-prerelease-00101</Version>
87     </StaticDependency>
88
89     <DependencyBuildInfo Include="@(StaticDependency)">
90       <PackageId>%(Identity)</PackageId>
91       <UpdateStableVersions>true</UpdateStableVersions>
92     </DependencyBuildInfo>
93   </ItemGroup>
94 </Project>