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