2021-06-24 16:36:04 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!-- Repo Version Information -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<VersionPrefix>0.1.0</VersionPrefix>
|
|
|
|
<PreReleaseVersionLabel>alpha.1</PreReleaseVersionLabel>
|
|
|
|
</PropertyGroup>
|
|
|
|
<!-- Humanizer expects us to tell the version it's building -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<HumanizerCorePackageVersion>2.2.0</HumanizerCorePackageVersion>
|
|
|
|
</PropertyGroup>
|
2022-12-15 16:21:48 -06:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<!--
|
2023-03-03 17:53:19 -08:00
|
|
|
Building .NET from source depends on several archives, depending on the branch's current
|
2022-12-15 16:21:48 -06:00
|
|
|
source-buildability status.
|
|
|
|
|
2023-06-21 09:30:41 -05:00
|
|
|
PrivateSourceBuiltArtifactsUrl is a tar.gz of .NET build outputs from a previous
|
|
|
|
build needed to build the current version of .NET. This is always defined, because .NET needs
|
|
|
|
to be bootstrappable at any point in time.
|
|
|
|
|
|
|
|
PrivateSourceBuiltPrebuiltsUrl is a tar.gz of assets downloaded from the internet
|
|
|
|
that are needed to build the current version of .NET. Early in the lifecycle of a .NET major
|
|
|
|
or minor release, prebuilts may be needed. When the release is mature, prebuilts are not
|
|
|
|
necessary, and this property is removed from the file.
|
|
|
|
|
|
|
|
PrivateSourceBuiltSdkUrl_<abc> is a tar.gz of the source build .NET SDK from the previous release
|
|
|
|
for a particular OS. It is used by CI to validate that the current release can be built with it.
|
|
|
|
|
2023-03-03 17:53:19 -08:00
|
|
|
These URLs can't be composed from their base URL and version as we read them from the
|
|
|
|
prep.sh and pipeline scripts, outside of MSBuild.
|
2022-12-15 16:21:48 -06:00
|
|
|
-->
|
2023-09-12 17:26:36 -05:00
|
|
|
<PrivateSourceBuiltArtifactsUrl>https://dotnetcli.azureedge.net/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.8.0.100-rc.1.23455.1.centos.8-x64.tar.gz</PrivateSourceBuiltArtifactsUrl>
|
|
|
|
<PrivateSourceBuiltSdkUrl_CentOS8Stream>https://dotnetcli.azureedge.net/source-built-artifacts/sdks/dotnet-sdk-8.0.100-rc.1.23455.1-centos.8-x64.tar.gz</PrivateSourceBuiltSdkUrl_CentOS8Stream>
|
2023-10-19 09:26:34 -05:00
|
|
|
<PrivateSourceBuiltPrebuiltsUrl>https://dotnetcli.azureedge.net/source-built-artifacts/assets/Private.SourceBuilt.Prebuilts.0.1.0-9.0.100-3.centos.8-x64.tar.gz</PrivateSourceBuiltPrebuiltsUrl>
|
2022-12-15 16:21:48 -06:00
|
|
|
</PropertyGroup>
|
2021-06-24 16:36:04 -05:00
|
|
|
</Project>
|