Update dependencies from https://github.com/dotnet/arcade build 20230110.4
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.CMake.Sdk From Version 7.0.0-beta.22561.2 -> To Version 7.0.0-beta.23060.4
This commit is contained in:
parent
e0c95ad21e
commit
e348545cae
9 changed files with 27 additions and 15 deletions
|
@ -188,18 +188,18 @@
|
||||||
</Dependency>
|
</Dependency>
|
||||||
</ProductDependencies>
|
</ProductDependencies>
|
||||||
<ToolsetDependencies>
|
<ToolsetDependencies>
|
||||||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.22561.2">
|
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.23060.4">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>f36ea231c234560514ede4c2747897a737ced28f</Sha>
|
<Sha>ac5977ebf05451c1adcf24a15d16263e4d25fd0c</Sha>
|
||||||
<SourceBuild RepoName="arcade" ManagedOnly="true" />
|
<SourceBuild RepoName="arcade" ManagedOnly="true" />
|
||||||
</Dependency>
|
</Dependency>
|
||||||
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="7.0.0-beta.22561.2">
|
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="7.0.0-beta.23060.4">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>f36ea231c234560514ede4c2747897a737ced28f</Sha>
|
<Sha>ac5977ebf05451c1adcf24a15d16263e4d25fd0c</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="7.0.0-beta.22561.2">
|
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="7.0.0-beta.23060.4">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>f36ea231c234560514ede4c2747897a737ced28f</Sha>
|
<Sha>ac5977ebf05451c1adcf24a15d16263e4d25fd0c</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="7.0.0-alpha.1.22608.2">
|
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="7.0.0-alpha.1.22608.2">
|
||||||
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>
|
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Dependency from https://github.com/dotnet/arcade -->
|
<!-- Dependency from https://github.com/dotnet/arcade -->
|
||||||
<MicrosoftDotNetBuildTasksInstallersPackageVersion>7.0.0-beta.22561.2</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
<MicrosoftDotNetBuildTasksInstallersPackageVersion>7.0.0-beta.23060.4</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Dependency from https://github.com/dotnet/winforms -->
|
<!-- Dependency from https://github.com/dotnet/winforms -->
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
set(CROSS_ROOTFS $ENV{ROOTFS_DIR})
|
set(CROSS_ROOTFS $ENV{ROOTFS_DIR})
|
||||||
|
|
||||||
|
# reset platform variables (e.g. cmake 3.25 sets LINUX=1)
|
||||||
|
unset(LINUX)
|
||||||
|
unset(FREEBSD)
|
||||||
|
unset(ILLUMOS)
|
||||||
|
unset(ANDROID)
|
||||||
|
unset(TIZEN)
|
||||||
|
|
||||||
set(TARGET_ARCH_NAME $ENV{TARGET_BUILD_ARCH})
|
set(TARGET_ARCH_NAME $ENV{TARGET_BUILD_ARCH})
|
||||||
if(EXISTS ${CROSS_ROOTFS}/bin/freebsd-version)
|
if(EXISTS ${CROSS_ROOTFS}/bin/freebsd-version)
|
||||||
set(CMAKE_SYSTEM_NAME FreeBSD)
|
set(CMAKE_SYSTEM_NAME FreeBSD)
|
||||||
|
|
|
@ -64,7 +64,7 @@ try {
|
||||||
$GlobalJson.tools | Add-Member -Name "vs" -Value (ConvertFrom-Json "{ `"version`": `"16.5`" }") -MemberType NoteProperty
|
$GlobalJson.tools | Add-Member -Name "vs" -Value (ConvertFrom-Json "{ `"version`": `"16.5`" }") -MemberType NoteProperty
|
||||||
}
|
}
|
||||||
if( -not ($GlobalJson.tools.PSObject.Properties.Name -match "xcopy-msbuild" )) {
|
if( -not ($GlobalJson.tools.PSObject.Properties.Name -match "xcopy-msbuild" )) {
|
||||||
$GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "17.3.1" -MemberType NoteProperty
|
$GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "17.4.1" -MemberType NoteProperty
|
||||||
}
|
}
|
||||||
if ($GlobalJson.tools."xcopy-msbuild".Trim() -ine "none") {
|
if ($GlobalJson.tools."xcopy-msbuild".Trim() -ine "none") {
|
||||||
$xcopyMSBuildToolsFolder = InitializeXCopyMSBuild $GlobalJson.tools."xcopy-msbuild" -install $true
|
$xcopyMSBuildToolsFolder = InitializeXCopyMSBuild $GlobalJson.tools."xcopy-msbuild" -install $true
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
|
|
||||||
function Install-Gdn {
|
function Install-Gdn {
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory=$true)]
|
|
||||||
[string]$Path,
|
[string]$Path,
|
||||||
|
|
||||||
# If omitted, install the latest version of Guardian, otherwise install that specific version.
|
# If omitted, install the latest version of Guardian, otherwise install that specific version.
|
||||||
|
|
|
@ -63,6 +63,11 @@ steps:
|
||||||
targetRidArgs='/p:TargetRid=${{ parameters.platform.targetRID }}'
|
targetRidArgs='/p:TargetRid=${{ parameters.platform.targetRID }}'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
runtimeOsArgs=
|
||||||
|
if [ '${{ parameters.platform.runtimeOS }}' != '' ]; then
|
||||||
|
runtimeOsArgs='/p:RuntimeOS=${{ parameters.platform.runtimeOS }}'
|
||||||
|
fi
|
||||||
|
|
||||||
publishArgs=
|
publishArgs=
|
||||||
if [ '${{ parameters.platform.skipPublishValidation }}' != 'true' ]; then
|
if [ '${{ parameters.platform.skipPublishValidation }}' != 'true' ]; then
|
||||||
publishArgs='--publish'
|
publishArgs='--publish'
|
||||||
|
@ -75,6 +80,7 @@ steps:
|
||||||
$internalRuntimeDownloadArgs \
|
$internalRuntimeDownloadArgs \
|
||||||
$internalRestoreArgs \
|
$internalRestoreArgs \
|
||||||
$targetRidArgs \
|
$targetRidArgs \
|
||||||
|
$runtimeOsArgs \
|
||||||
/p:SourceBuildNonPortable=${{ parameters.platform.nonPortable }} \
|
/p:SourceBuildNonPortable=${{ parameters.platform.nonPortable }} \
|
||||||
/p:ArcadeBuildFromSource=true
|
/p:ArcadeBuildFromSource=true
|
||||||
displayName: Build
|
displayName: Build
|
||||||
|
|
|
@ -365,8 +365,8 @@ function InitializeVisualStudioMSBuild([bool]$install, [object]$vsRequirements =
|
||||||
|
|
||||||
# If the version of msbuild is going to be xcopied,
|
# If the version of msbuild is going to be xcopied,
|
||||||
# use this version. Version matches a package here:
|
# use this version. Version matches a package here:
|
||||||
# https://dev.azure.com/dnceng/public/_packaging?_a=package&feed=dotnet-eng&package=RoslynTools.MSBuild&protocolType=NuGet&version=17.3.1view=overview
|
# https://dev.azure.com/dnceng/public/_packaging?_a=package&feed=dotnet-eng&package=RoslynTools.MSBuild&protocolType=NuGet&version=17.4.1&view=overview
|
||||||
$defaultXCopyMSBuildVersion = '17.3.1'
|
$defaultXCopyMSBuildVersion = '17.4.1'
|
||||||
|
|
||||||
if (!$vsRequirements) {
|
if (!$vsRequirements) {
|
||||||
if (Get-Member -InputObject $GlobalJson.tools -Name 'vs') {
|
if (Get-Member -InputObject $GlobalJson.tools -Name 'vs') {
|
||||||
|
|
|
@ -511,7 +511,7 @@ global_json_file="${repo_root}global.json"
|
||||||
# determine if global.json contains a "runtimes" entry
|
# determine if global.json contains a "runtimes" entry
|
||||||
global_json_has_runtimes=false
|
global_json_has_runtimes=false
|
||||||
if command -v jq &> /dev/null; then
|
if command -v jq &> /dev/null; then
|
||||||
if jq -er '. | select(has("runtimes"))' "$global_json_file" &> /dev/null; then
|
if jq -e '.tools | has("runtimes")' "$global_json_file" &> /dev/null; then
|
||||||
global_json_has_runtimes=true
|
global_json_has_runtimes=true
|
||||||
fi
|
fi
|
||||||
elif [[ "$(cat "$global_json_file")" =~ \"runtimes\"[[:space:]\:]*\{ ]]; then
|
elif [[ "$(cat "$global_json_file")" =~ \"runtimes\"[[:space:]\:]*\{ ]]; then
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"tools": {
|
"tools": {
|
||||||
"dotnet": "7.0.100",
|
"dotnet": "7.0.102",
|
||||||
"runtimes": {
|
"runtimes": {
|
||||||
"dotnet": [
|
"dotnet": [
|
||||||
"$(VSRedistCommonNetCoreSharedFrameworkx6470PackageVersion)"
|
"$(VSRedistCommonNetCoreSharedFrameworkx6470PackageVersion)"
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
"cmake": "3.16.4"
|
"cmake": "3.16.4"
|
||||||
},
|
},
|
||||||
"msbuild-sdks": {
|
"msbuild-sdks": {
|
||||||
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22561.2",
|
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.23060.4",
|
||||||
"Microsoft.DotNet.CMake.Sdk": "7.0.0-beta.22561.2"
|
"Microsoft.DotNet.CMake.Sdk": "7.0.0-beta.23060.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue