Make the new stream class sealed
[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   <PropertyGroup>
17     <!-- Central place to set the versions of all nuget packages produced in the repo -->
18     <PackageVersion Condition="'$(PackageVersion)' == ''">3.0.0</PackageVersion>
19
20     <!-- Set the boolean below to true to generate packages with stabilized versions -->
21     <StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
22     <StableVersion Condition="'$(StabilizePackageVersion)' == 'true' and '$(StableVersion)' == ''">$(PackageVersion)</StableVersion>
23
24     <PreReleaseLabel>preview4</PreReleaseLabel>
25   </PropertyGroup>
26
27   <!-- Source of truth for dependency tooling: the commit hash of the dotnet/versions master branch as of the last auto-upgrade. -->
28   <PropertyGroup>
29     <CoreClrCurrentRef>f31086500dc58cefe7b1275300f6fc07b38c1bcc</CoreClrCurrentRef>
30     <BuildToolsCurrentRef>fc12d73e8ea045517fde9b4bd1c89065917a5413</BuildToolsCurrentRef>
31     <PgoDataCurrentRef>fc12d73e8ea045517fde9b4bd1c89065917a5413</PgoDataCurrentRef>
32     <IbcDataCurrentRef>fc12d73e8ea045517fde9b4bd1c89065917a5413</IbcDataCurrentRef>
33   </PropertyGroup>
34
35   <!-- Tests/infrastructure dependency versions. -->
36   <PropertyGroup>
37     <PgoDataPackageVersion>99.99.99-master-20190208.1</PgoDataPackageVersion>
38     <MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview-27316-02</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
39     <XunitPackageVersion>2.4.1</XunitPackageVersion>
40     <IbcDataPackageVersion>99.99.99-master-20190208.1</IbcDataPackageVersion>
41     <IbcMergePackageVersion>4.6.0-alpha-00001</IbcMergePackageVersion>
42     <XunitPerformanceApiPackageVersion>1.0.0-beta-build0015</XunitPerformanceApiPackageVersion>
43     <MicrosoftDiagnosticsTracingTraceEventPackageVersion>2.0.34</MicrosoftDiagnosticsTracingTraceEventPackageVersion>
44     <CommandLineParserVersion>2.2.0</CommandLineParserVersion>
45
46     <!-- Scenario tests install this version of Microsoft.NetCore.App, then patch coreclr binaries via xcopy. At the moment it is
47          updated manually whenever breaking changes require it to move forward, but it would be nice if we could update it automatically
48          as we do with many of the package versions above -->
49     <BaselineMicrosoftNetCoreAppPackageVersion>2.1.0-preview3-26416-01</BaselineMicrosoftNetCoreAppPackageVersion>
50   </PropertyGroup>
51
52   <!-- Package versions used as toolsets -->
53   <PropertyGroup>
54     <FeedTasksPackage>Microsoft.DotNet.Build.Tasks.Feed</FeedTasksPackage>
55     <FeedTasksPackageVersion>3.0.0-preview1-03715-01</FeedTasksPackageVersion>
56   </PropertyGroup>
57
58   <!-- Publish symbol build task package -->
59   <PropertyGroup>
60     <PublishSymbolsPackage>Microsoft.SymbolUploader.Build.Task</PublishSymbolsPackage>
61     <PublishSymbolsPackageVersion>1.0.0-beta-63604-05</PublishSymbolsPackageVersion>
62   </PropertyGroup>
63
64   <!-- Package dependency verification/auto-upgrade configuration. -->
65   <PropertyGroup>
66     <BaseDotNetBuildInfo>build-info/dotnet/</BaseDotNetBuildInfo>
67     <DependencyBranch>master</DependencyBranch>
68     <CurrentRefXmlPath>$(MSBuildThisFileFullPath)</CurrentRefXmlPath>
69   </PropertyGroup>
70
71   <!-- ILLink.Tasks package version -->
72   <PropertyGroup>
73     <ILLinkTasksPackage>ILLink.Tasks</ILLinkTasksPackage>
74     <ILLinkTasksPackageVersion>0.1.5-preview-1461378</ILLinkTasksPackageVersion>
75   </PropertyGroup>
76
77   <ItemGroup>
78     <RemoteDependencyBuildInfo Include="CoreClr">
79       <BuildInfoPath>$(BaseDotNetBuildInfo)coreclr/$(DependencyBranch)</BuildInfoPath>
80       <CurrentRef>$(CoreClrCurrentRef)</CurrentRef>
81     </RemoteDependencyBuildInfo>
82     <RemoteDependencyBuildInfo Include="BuildTools">
83       <BuildInfoPath>$(BaseDotNetBuildInfo)buildtools/$(DependencyBranch)</BuildInfoPath>
84       <CurrentRef>$(BuildToolsCurrentRef)</CurrentRef>
85     </RemoteDependencyBuildInfo>
86     <RemoteDependencyBuildInfo Include="PgoData">
87       <BuildInfoPath>$(BaseDotNetBuildInfo)optimization/$(DependencyBranch)/PGO</BuildInfoPath>
88       <CurrentRef>$(PgoDataCurrentRef)</CurrentRef>
89     </RemoteDependencyBuildInfo>
90     <RemoteDependencyBuildInfo Include="IbcData">
91       <BuildInfoPath>$(BaseDotNetBuildInfo)optimization/$(DependencyBranch)/IBC</BuildInfoPath>
92       <CurrentRef>$(IbcDataCurrentRef)</CurrentRef>
93     </RemoteDependencyBuildInfo>
94     
95     <DependencyBuildInfo Include="@(RemoteDependencyBuildInfo)">
96       <RawVersionsBaseUrl>https://raw.githubusercontent.com/dotnet/versions</RawVersionsBaseUrl>
97     </DependencyBuildInfo>
98
99     <XmlUpdateStep Include="CoreClr">
100       <Path>$(MSBuildThisFileFullPath)</Path>
101       <ElementName>MicrosoftNETCoreRuntimeCoreCLRPackageVersion</ElementName>
102       <PackageId>Microsoft.NETCore.Runtime.CoreCLR</PackageId>
103     </XmlUpdateStep>
104     <UpdateStep Include="BuildTools">
105       <UpdaterType>File</UpdaterType>
106       <Path>$(MSBuildThisFileDirectory)BuildToolsVersion.txt</Path>
107       <PackageId>Microsoft.DotNet.BuildTools</PackageId>
108     </UpdateStep>
109     <XmlUpdateStep Include="BuildTools">
110        <Path>$(MSBuildThisFileFullPath)</Path>
111        <ElementName>FeedTasksPackageVersion</ElementName>
112        <PackageId>$(FeedTasksPackage)</PackageId>
113     </XmlUpdateStep>
114     <XmlUpdateStep Include="PgoData">
115       <Path>$(MSBuildThisFileFullPath)</Path>
116       <ElementName>PgoDataPackageVersion</ElementName>
117       <PackageId>optimization.PGO.CoreCLR</PackageId>
118     </XmlUpdateStep>
119     <XmlUpdateStep Include="IbcData">
120       <Path>$(MSBuildThisFileFullPath)</Path>
121       <ElementName>IbcDataPackageVersion</ElementName>
122       <PackageId>optimization.IBC.CoreCLR</PackageId>
123     </XmlUpdateStep>
124     <UpdateStep Include="ILAsm">
125       <UpdaterType>File</UpdaterType>
126       <Path>$(MSBuildThisFileDirectory)ILAsmVersion.txt</Path>
127       <PackageId>Microsoft.NETCore.ILAsm</PackageId>
128     </UpdateStep>
129   </ItemGroup>
130
131   <!-- Set up dependencies on packages that aren't found in a BuildInfo. -->
132   <ItemGroup>
133     <XUnitDependency Include="xunit"/>
134     <XUnitDependency Include="xunit.assert"/>
135     <XUnitDependency Include="xunit.core"/>
136     <XUnitDependency Include="xunit.extensibility.core" />
137     <XUnitDependency Include="xunit.runner.console"/>
138     <XUnitDependency Include="xunit.runner.msbuild"/>
139     <XUnitDependency Include="xunit.runner.utility"/>
140     <StaticDependency Include="@(XUnitDependency)">
141       <Version>$(XunitPackageVersion)</Version>
142     </StaticDependency>
143
144     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance" />
145     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis" />
146     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.analysis.cli" />
147     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.metrics" />
148     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.run.core" />
149     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.cli" />
150     <XunitPerformanceDependency Include="Microsoft.DotNet.xunit.performance.runner.Windows" />
151     <StaticDependency Include="@(XunitPerformanceDependency)">
152       <Version>1.0.0-alpha-build0040</Version>
153     </StaticDependency>
154
155     <XUnitPerformanceApiDependency Include="xunit.performance.api" />
156     <XUnitPerformanceApiDependency Include="xunit.performance.core" />
157     <XUnitPerformanceApiDependency Include="xunit.performance.execution" />
158     <XUnitPerformanceApiDependency Include="xunit.performance.metrics" />
159     <StaticDependency Include="@(XUnitPerformanceApiDependency)">
160       <Version>$(XunitPerformanceApiPackageVersion)</Version>
161     </StaticDependency>
162
163     <DependencyBuildInfo Include="@(StaticDependency)">
164       <PackageId>%(Identity)</PackageId>
165       <UpdateStableVersions>true</UpdateStableVersions>
166     </DependencyBuildInfo>
167   </ItemGroup>
168
169   <!-- Override isolated build dependency versions with versions from Repo API. -->
170   <Import Project="$(DotNetPackageVersionPropsPath)"
171           Condition="'$(DotNetPackageVersionPropsPath)' != ''" />
172
173 </Project>