-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathdependencies.props
87 lines (79 loc) · 4.11 KB
/
dependencies.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
A CurrentRef is a commit on the dotnet/versions master branch. It is the single source of truth
for which dotnet/versions commit was last used to update the dependency.
-->
<PropertyGroup>
<ProdConCurrentRef>ac61a8c9e47e4fd7a4907170ddc45da0f7e8d888</ProdConCurrentRef>
<CoreClrCurrentRef>ac61a8c9e47e4fd7a4907170ddc45da0f7e8d888</CoreClrCurrentRef>
<BuildToolsCurrentRef>ac61a8c9e47e4fd7a4907170ddc45da0f7e8d888</BuildToolsCurrentRef>
</PropertyGroup>
<!-- Package dependency verification/auto-upgrade configuration. -->
<PropertyGroup>
<BaseDotNetBuildInfo>build-info/dotnet/</BaseDotNetBuildInfo>
<DependencyBranch>release/2.2</DependencyBranch>
<CurrentRefXmlPath>$(MSBuildThisFileFullPath)</CurrentRefXmlPath>
</PropertyGroup>
<!--
Packages built by ProdCon, but not source-build. These are included as prebuilts, or embedded in
the product as version strings to be used by the SDK to fetch extra content.
-->
<PropertyGroup>
<MicrosoftAspNetCoreAllPackageVersion>2.2.6</MicrosoftAspNetCoreAllPackageVersion>
<MicrosoftAspNetCoreAppPackageVersion>2.2.6</MicrosoftAspNetCoreAppPackageVersion>
<MicrosoftNETSdkRazorPackageVersion>2.2.0</MicrosoftNETSdkRazorPackageVersion>
</PropertyGroup>
<!-- versions used for self-contained published apps by the final product.
These currently need to be manually updated each release, using the latest
shipped 1.0, 1.1, and 2.1 version numbers. -->
<PropertyGroup>
<MicrosoftNETCoreAppLatestVersion1_0>1.0.15</MicrosoftNETCoreAppLatestVersion1_0>
<MicrosoftNETCoreAppLatestVersion1_1>1.1.12</MicrosoftNETCoreAppLatestVersion1_1>
<MicrosoftNETCoreAppLatestVersion2_1>2.1.12</MicrosoftNETCoreAppLatestVersion2_1>
<MicrosoftAspNetCoreAppLatestVersion2_1>2.1.12</MicrosoftAspNetCoreAppLatestVersion2_1>
<MicrosoftAspNetCoreAllLatestVersion2_1>2.1.12</MicrosoftAspNetCoreAllLatestVersion2_1>
</PropertyGroup>
<!-- Build stabilization properties as passed in by ProdCon. -->
<PropertyGroup>
<UseStableVersions Condition="'$(UseStableVersions)' == ''">true</UseStableVersions>
<VersionStamp Condition="'$(VersionStamp)' == ''"></VersionStamp>
</PropertyGroup>
<ItemGroup>
<!-- Get ILAsm tool version from CoreCLR. -->
<RemoteDependencyBuildInfo Include="CoreClr">
<BuildInfoPath>$(BaseDotNetBuildInfo)coreclr/$(DependencyBranch)</BuildInfoPath>
<CurrentRef>$(CoreClrCurrentRef)</CurrentRef>
</RemoteDependencyBuildInfo>
<RemoteDependencyBuildInfo Include="BuildTools">
<BuildInfoPath>$(BaseDotNetBuildInfo)buildtools/$(DependencyBranch)</BuildInfoPath>
<CurrentRef>$(BuildToolsCurrentRef)</CurrentRef>
</RemoteDependencyBuildInfo>
<DependencyBuildInfo Include="@(RemoteDependencyBuildInfo)">
<RawVersionsBaseUrl>https://raw.githubusercontent.com/dotnet/versions</RawVersionsBaseUrl>
</DependencyBuildInfo>
<DependencyInfo Include="ProdCon" Condition="'$(UpdateFromManifestFile)' == ''">
<DependencyType>Orchestrated build</DependencyType>
<BasePath>build-info/dotnet/product/cli/release/2.2.3</BasePath>
<CurrentRef>$(ProdConCurrentRef)</CurrentRef>
<VersionsRepoOwner>dotnet</VersionsRepoOwner>
<VersionsRepo>versions</VersionsRepo>
</DependencyInfo>
<DependencyInfo Include="ProdCon" Condition="'$(UpdateFromManifestFile)' != ''">
<DependencyType>Orchestrated build file</DependencyType>
<Path>$(UpdateFromManifestFile)</Path>
</DependencyInfo>
</ItemGroup>
<ItemGroup Condition="'$(SkipBuildToolsUpdate)' != 'true'">
<UpdateStep Include="BuildTools">
<UpdaterType>File</UpdaterType>
<Path>$(MSBuildThisFileDirectory)BuildToolsVersion.txt</Path>
<PackageId>Microsoft.DotNet.BuildTools</PackageId>
</UpdateStep>
<UpdateStep Include="CoreClr">
<UpdaterType>File</UpdaterType>
<Path>$(MSBuildThisFileDirectory)tools-local/ILAsmVersion.txt</Path>
<PackageId>Microsoft.NETCore.ILAsm</PackageId>
</UpdateStep>
</ItemGroup>
</Project>