Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use -pack switch instead of -allconfigurations to create packages #110778

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/project/library-servicing.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Keep in mind that we still need package authoring in .NET 8 and older versions.

Develop and test your change as normal. For packages, you may want to test them outside the repo infrastructure. To do so, execute the following steps:

1. From a clean copy of your branch, run `build.cmd/sh libs -allconfigurations`
1. From a clean copy of your branch, run `build.cmd/sh libs -pack`

2. Check in `artifacts\bin\packages\Debug` for the existence of your package, with the appropriate package version.

Expand Down
3 changes: 1 addition & 2 deletions eng/DotNetBuild.props
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,13 @@
Properties that control flags from the VMR build, and the expected output for the VMR build should be added to this file. -->

<!-- Enable regular Arcade signing and publishing in VMR build -->
<InnerBuildArgs Condition="'$(DotNetBuildOrchestrator)' == 'true'">$(InnerBuildArgs) $(FlagParameterPrefix)restore $(FlagParameterPrefix)build $(FlagParameterPrefix)publish</InnerBuildArgs>
<InnerBuildArgs Condition="'$(DotNetBuildOrchestrator)' == 'true'">$(InnerBuildArgs) $(FlagParameterPrefix)restore $(FlagParameterPrefix)build $(FlagParameterPrefix)pack $(FlagParameterPrefix)publish</InnerBuildArgs>
<InnerBuildArgs Condition="'$(DotNetBuildOrchestrator)' == 'true' and '$(Sign)' == 'true'">$(InnerBuildArgs) $(FlagParameterPrefix)sign</InnerBuildArgs>

<InnerBuildArgs>$(InnerBuildArgs) $(FlagParameterPrefix)arch $(TargetArch)</InnerBuildArgs>
<InnerBuildArgs Condition="'$(DotNetBuildSourceOnly)' != 'true'">$(InnerBuildArgs) $(FlagParameterPrefix)os $(TargetOS)</InnerBuildArgs>
<InnerBuildArgs Condition="'$(CrossBuild)' == 'true' or ('$(TargetArch)' != '$(_hostArch)' and '$(ShortStack)' != 'true')">$(InnerBuildArgs) $(FlagParameterPrefix)cross</InnerBuildArgs>
<InnerBuildArgs>$(InnerBuildArgs) $(FlagParameterPrefix)configuration $(Configuration)</InnerBuildArgs>
<InnerBuildArgs Condition="'$(ShortStack)' != 'true'">$(InnerBuildArgs) $(FlagParameterPrefix)allconfigurations</InnerBuildArgs>
<InnerBuildArgs>$(InnerBuildArgs) $(FlagParameterPrefix)verbosity $(LogVerbosity)</InnerBuildArgs>
<InnerBuildArgs>$(InnerBuildArgs) $(FlagParameterPrefix)nodereuse $(ArcadeFalseBoolBuildArg)</InnerBuildArgs>
<InnerBuildArgs>$(InnerBuildArgs) $(FlagParameterPrefix)warnAsError $(ArcadeFalseBoolBuildArg)</InnerBuildArgs>
Expand Down
4 changes: 2 additions & 2 deletions eng/Publishing.props
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@

<!--
Packages that aren't matched above as RID-specific are considered RID-agnostic. Also include
the AllConfigurations packages from the Libraries build.
the packages from the Libraries build.
-->
<RidAgnosticNupkgToPublishFile
Include="
$(DownloadDirectory)**\Microsoft.NET.Workload.Mono.Toolchain.*Manifest-*.nupkg;
$(DownloadDirectory)**\Microsoft.NET.Sdk.WebAssembly.Pack.*.nupkg;
$(DownloadDirectory)*\$(PublishRidAgnosticPackagesFromPlatform)\**\*.nupkg;
$(DownloadDirectory)*\*AllConfigurations\**\*.nupkg"
$(DownloadDirectory)*\Libraries_WithPackages\**\*.nupkg"
Exclude="@(RuntimeNupkgFile);@(DownloadedSymbolNupkgFile)" />

<TransportPackagesToPublishFile
Expand Down
1 change: 0 additions & 1 deletion eng/Subsets.props
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@
<ItemDefinitionGroup>
<ProjectToBuild>
<Test>false</Test>
<Pack>false</Pack>
<Publish>false</Publish>
<BuildInParallel>false</BuildInParallel>
</ProjectToBuild>
Expand Down
5 changes: 2 additions & 3 deletions eng/build.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[CmdletBinding(PositionalBinding=$false)]
Param(
[switch][Alias('h')]$help,
[switch]$pack,
[switch][Alias('t')]$test,
[ValidateSet("Debug","Release","Checked")][string[]][Alias('c')]$configuration = @("Debug"),
[string][Alias('f')]$framework,
[string]$vs,
[string][Alias('v')]$verbosity = "minimal",
[ValidateSet("windows","linux","osx","android","browser","wasi")][string]$os,
[switch]$allconfigurations,
[switch]$coverage,
[string]$testscope,
[switch]$testnobuild,
Expand Down Expand Up @@ -77,7 +77,6 @@ function Get-Help() {
Write-Host ""

Write-Host "Libraries settings:"
Write-Host " -allconfigurations Build packages for all build configurations."
Write-Host " -coverage Collect code coverage when testing."
Write-Host " -framework (-f) Build framework: net10.0 or net48."
Write-Host " [Default: net10.0]"
Expand Down Expand Up @@ -312,7 +311,7 @@ foreach ($argument in $PSBoundParameters.Keys)
"hostConfiguration" { $arguments += " /p:HostConfiguration=$((Get-Culture).TextInfo.ToTitleCase($($PSBoundParameters[$argument])))" }
"framework" { $arguments += " /p:BuildTargetFramework=$($PSBoundParameters[$argument].ToLowerInvariant())" }
"os" { $arguments += " /p:TargetOS=$($PSBoundParameters[$argument])" }
"allconfigurations" { $arguments += " /p:BuildAllConfigurations=true" }
"pack" { $arguments += " -pack /p:BuildAllConfigurations=true" }
"properties" { $arguments += " " + $properties }
"verbosity" { $arguments += " -$argument " + $($PSBoundParameters[$argument]) }
"cmakeargs" { $arguments += " /p:CMakeArgs=`"$($PSBoundParameters[$argument])`"" }
Expand Down
5 changes: 2 additions & 3 deletions eng/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ usage()
echo ""

echo "Libraries settings:"
echo " --allconfigurations Build packages for all build configurations."
echo " --coverage Collect code coverage when testing."
echo " --framework (-f) Build framework: net10.0 or net48."
echo " [Default: net10.0]"
Expand Down Expand Up @@ -308,8 +307,8 @@ while [[ $# > 0 ]]; do
shift 2
;;

-allconfigurations)
arguments="$arguments /p:BuildAllConfigurations=true"
-pack)
arguments="$arguments --pack /p:BuildAllConfigurations=true"
shift 1
;;

Expand Down
9 changes: 2 additions & 7 deletions eng/packaging.targets
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,10 @@
<PackageReadmeFilePath Condition="'$(PackageReadmeFilePath)' == '' and '$(EnableDefaultPackageReadmeFile)' == 'true'">PACKAGE.md</PackageReadmeFilePath>
<BeforePack>$(BeforePack);ValidatePackageReadmeExists</BeforePack>

<!-- Generate packages for rid specific projects or for allconfigurations during build. -->
<!-- A package isn't generated if in servicing or in runtimelab. Intended to be overridden at project level. -->
<!-- Generate packages for rid specific projects when not in runtimelab (to avoid binclashes when using the same feed). -->
<IsRIDSpecificProject Condition="$(MSBuildProjectName.StartsWith('runtime.')) and
!$(MSBuildProjectName.StartsWith('runtime.native'))">true</IsRIDSpecificProject>
<GeneratePackageOnBuild Condition="(
'$(BuildAllConfigurations)' == 'true' or
'$(IsRIDSpecificProject)' == 'true'
) and
'$(GitHubRepositoryName)' != 'runtimelab'">true</GeneratePackageOnBuild>
<GeneratePackageOnBuild Condition="'$(IsRIDSpecificProject)' == 'true' and '$(GitHubRepositoryName)' != 'runtimelab'">true</GeneratePackageOnBuild>

<!-- During NoBuild pack invocations, skip project reference build. Necessary for the IncludeProjectReferencesWithPackAttributeInPackage target. -->
<BuildProjectReferences Condition="'$(NoBuild)' == 'true'">false</BuildProjectReferences>
Expand Down
7 changes: 3 additions & 4 deletions eng/pipelines/global-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ extends:
eq(variables['isRollingBuild'], true))

#
# Build Libraries AllConfigurations. This exercises the code path where we build libraries for all
# configurations on a non Windows operating system.
# Build Libraries (all TFMs) and create packages on a non Windows operating system.
#
- template: /eng/pipelines/common/platform-matrix.yml
parameters:
Expand All @@ -92,8 +91,8 @@ extends:
platforms:
- linux_x64_dev_innerloop
jobParameters:
nameSuffix: Libraries_AllConfigurations
buildArgs: -subset libs -allconfigurations
nameSuffix: Libraries_WithPackages
buildArgs: -subset libs -pack
timeoutInMinutes: 120
condition:
or(
Expand Down
2 changes: 0 additions & 2 deletions eng/pipelines/official/stages/publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
parameters:
PublishRidAgnosticPackagesFromPlatform: windows_x64
publishingInfraVersion: 3

stages:

Expand Down Expand Up @@ -28,7 +27,6 @@ stages:
# Stages-based publishing entry point
- template: /eng/common/templates-official/post-build/post-build.yml
parameters:
publishingInfraVersion: ${{ parameters.publishingInfraVersion }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unrelated change?

Copy link
Member Author

@ViktorHofer ViktorHofer Dec 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. The publishing infra version doesn't need to be set anymore. We removed the explicit set from most other repos. I didn't want to open a separate PR just for this.

validateDependsOn:
- PrepareForPublish
# The following checks are run after the build in the validation and release pipelines
Expand Down
8 changes: 4 additions & 4 deletions eng/pipelines/runtime-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ extends:
name: MonoRuntimePacks

#
# Build libraries AllConfigurations for packages
# Build libraries (all TFMs) and packages
#
- template: /eng/pipelines/common/platform-matrix.yml
parameters:
Expand All @@ -464,13 +464,13 @@ extends:
- windows_x64
jobParameters:
templatePath: 'templates-official'
buildArgs: -s tools+libs -allConfigurations -c $(_BuildConfig) /p:TestAssemblies=false /p:TestPackages=true
nameSuffix: Libraries_AllConfigurations
buildArgs: -s tools+libs -pack -c $(_BuildConfig) /p:TestAssemblies=false /p:TestPackages=true
nameSuffix: Libraries_WithPackages
isOfficialBuild: ${{ variables.isOfficialBuild }}
postBuildSteps:
- template: /eng/pipelines/common/upload-intermediate-artifacts-step.yml
parameters:
name: Libraries_AllConfigurations
name: Libraries_WithPackages
timeoutInMinutes: 95
#
# Build SourceBuild packages
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/runtime-richnav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ extends:
richCodeNavigationLanguage: "csharp"
nameSuffix: Libs
timeoutInMinutes: 240
buildArgs: -s libs.sfx+libs.oob -allConfigurations
buildArgs: -s libs.sfx+libs.oob -pack
preBuildSteps:
- script: dotnet.cmd nuget add source -n richnav "https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-buildservices/nuget/v3/index.json"
displayName: Add richnav NuGet feed
Expand Down
6 changes: 3 additions & 3 deletions eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1225,7 +1225,7 @@ extends:
eq(variables['isRollingBuild'], true))

#
# Build and test libraries AllConfigurations
# Build and test libraries for all TFMs and create packages
#
- template: /eng/pipelines/common/platform-matrix.yml
parameters:
Expand All @@ -1234,8 +1234,8 @@ extends:
platforms:
- windows_x64
jobParameters:
buildArgs: -test -s tools+libs+libs.tests -allConfigurations -c $(_BuildConfig) /p:TestAssemblies=false /p:TestPackages=true
nameSuffix: Libraries_AllConfigurations
buildArgs: -test -s tools+libs+libs.tests -pack -c $(_BuildConfig) /p:TestAssemblies=false /p:TestPackages=true
nameSuffix: Libraries_WithPackages
timeoutInMinutes: 150
condition: >-
or(
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/runtimelab-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ extends:
- windows_x64
jobParameters:
templatePath: 'templates-official'
buildArgs: -s tools+libs -allConfigurations -c $(_BuildConfig) /p:TestAssemblies=false /p:TestPackages=true
buildArgs: -s tools+libs -allConfigurations -c $(_BuildConfig) /p:BuildAllConfigurations=true /p:TestAssemblies=false /p:TestPackages=true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why don't we pass -pack here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because libraries packages shouldn't be generated for libraries packages in runtimelab: https://github.com/dotnet/runtime/blame/e65457031da52f57d03da721f381a82a5be64c03/eng/packaging.targets#L31

nameSuffix: Libraries_AllConfigurations
isOfficialBuild: true
postBuildSteps:
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/runtimelab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ extends:
platforms:
- windows_x64
jobParameters:
buildArgs: -test -s tools+libs+libs.tests -allConfigurations -c $(_BuildConfig) /p:TestAssemblies=false /p:TestPackages=true
buildArgs: -test -s tools+libs+libs.tests -c $(_BuildConfig) /p:BuildAllConfigurations=true /p:TestAssemblies=false /p:TestPackages=true
nameSuffix: Libraries_AllConfigurations
timeoutInMinutes: 150
extraVariablesTemplates:
Expand Down
4 changes: 2 additions & 2 deletions src/libraries/oob.proj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.Build.NoTargets">
<Project Sdk="Microsoft.Build.Traversal">

<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)-$(TargetOS)</TargetFramework>
Expand Down Expand Up @@ -69,7 +69,7 @@

<Target Name="SetAzureDevOpsVariableForBuiltPackages"
Condition="'$(ContinuousIntegrationBuild)' == 'true'"
AfterTargets="Build;Pack">
AfterTargets="Pack">
<Message Condition="Exists('$(ArtifactsDir)packages')" Importance="High" Text="##vso[task.setvariable variable=_librariesBuildProducedPackages]true" />
</Target>

Expand Down
8 changes: 2 additions & 6 deletions src/libraries/pretest.proj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.Build.Traversal">
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.SharedFramework.Sdk" />

<Import Project="BuildTask.props" Sdk="Microsoft.DotNet.SharedFramework.Sdk" />

<PropertyGroup Condition="'$(ContinuousIntegrationBuild)' != 'true'">
<!-- Create an intermediate runsettings file to enable VSTest discovery. -->
Expand All @@ -8,10 +9,6 @@
<CreateVsCodeRunSettingsFile>true</CreateVsCodeRunSettingsFile>
</PropertyGroup>

<PropertyGroup>
<IsPackable>false</IsPackable>
</PropertyGroup>

<!--
Explicitly build the externals.csproj project first to create the PlatformManifest for
the targeting and runtimepack before the test runners which consume that asset are built.
Expand Down Expand Up @@ -139,7 +136,7 @@
</Target>

<!-- Generate the runtime pack's RuntimeList.xml -->
<UsingTask TaskName="CreateFrameworkListFile" AssemblyFile="$(DotNetSharedFrameworkTaskFile)"/>

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Interpreter_RuntimeTests monointerpreter)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_NativeAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build osx-x64 release Runtime_Release)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build tvossimulator-x64 Debug AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release NativeAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug AllSubsets_Mono_LLVMAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build maccatalyst-x64 Release AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_NativeAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Debug AllSubsets_CoreCLR)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug CoreCLR_Libraries)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build linux-x64 debug Libraries_WithPackages)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT_Libraries)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_CoreCLR)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm checked CoreCLR_ReleaseLibraries)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 checked CoreCLR_ReleaseLibraries)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug CoreCLR_Libraries)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug Libraries_CheckedCoreCLR)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug AllSubsets_CoreCLR)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked CoreCLR_ReleaseLibraries)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug CoreCLR_Libraries)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build coreclr Common Pri0 Test Build AnyOS AnyCPU checked)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug NativeAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Smoke_AOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm checked CoreCLR_ReleaseLibraries)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Release AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build freebsd-x64 Debug CoreCLR)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release NativeAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Mono_Interpreter_LibrariesTests)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT_Libraries)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Release AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Threading)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAot_RuntimeTests llvmaot)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_EAT)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build browser-wasm linux release Runtime_Release)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build linux-x64 release Runtime_Release)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj

Check failure on line 139 in src/libraries/pretest.proj

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop

src/libraries/pretest.proj#L139

src/libraries/pretest.proj(139,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/pretest.proj
<Target Name="GenerateRuntimeListFile"
DependsOnTargets="GetRuntimePackFiles"
AfterTargets="BuildExternalsProject"
Expand All @@ -159,5 +156,4 @@
RootAttributes="@(FrameworkListRootAttribute)" />
</Target>

<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.SharedFramework.Sdk" />
</Project>
5 changes: 2 additions & 3 deletions src/libraries/sfx.proj
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<Project Sdk="Microsoft.Build.NoTargets">
<Project Sdk="Microsoft.Build.Traversal">

<Sdk Name="Microsoft.DotNet.SharedFramework.Sdk" />
<Import Project="BuildTask.props" Sdk="Microsoft.DotNet.SharedFramework.Sdk" />

<PropertyGroup>
<TargetFramework>$(NetCoreAppCurrent)-$(TargetOS)</TargetFramework>
<BuildInParallel>false</BuildInParallel>
<IsPackable>false</IsPackable>
<FrameworkListOutputPath>$(MicrosoftNetCoreAppRefPackDataDir)FrameworkList.xml</FrameworkListOutputPath>
<!-- Import the illink file which contains some of the logic required to illink the shared framework assemblies. -->
<ExplicitlyImportCustomILLinkTargets>true</ExplicitlyImportCustomILLinkTargets>
Expand Down Expand Up @@ -37,7 +36,7 @@
</Target>

<!-- Generate the targeting pack's framework list so that out-of-band projects can leverage it. -->
<UsingTask TaskName="CreateFrameworkListFile" AssemblyFile="$(DotNetSharedFrameworkTaskFile)"/>

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Interpreter_RuntimeTests monointerpreter)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_NativeAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build osx-x64 release Runtime_Release)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build tvossimulator-x64 Debug AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug AllSubsets_Mono_LLVMAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release NativeAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build maccatalyst-x64 Release AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_NativeAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Debug AllSubsets_CoreCLR)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug CoreCLR_Libraries)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build linux-x64 debug Libraries_WithPackages)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT_Libraries)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_CoreCLR)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm checked CoreCLR_ReleaseLibraries)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 checked CoreCLR_ReleaseLibraries)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug CoreCLR_Libraries)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug Libraries_CheckedCoreCLR)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug AllSubsets_CoreCLR)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked CLR_Tools_Tests)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked CoreCLR_ReleaseLibraries)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug CoreCLR_Libraries)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build coreclr Common Pri0 Test Build AnyOS AnyCPU checked)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug NativeAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Smoke_AOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm checked CoreCLR_ReleaseLibraries)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Release AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build freebsd-x64 Debug CoreCLR)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release NativeAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Mono_Interpreter_LibrariesTests)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT_Libraries)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Release AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Threading)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAot_RuntimeTests llvmaot)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_EAT)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build browser-wasm linux release Runtime_Release)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build linux-x64 release Runtime_Release)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /Users/runner/work/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj

Check failure on line 39 in src/libraries/sfx.proj

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop

src/libraries/sfx.proj#L39

src/libraries/sfx.proj(39,49): error MSB4022: (NETCORE_ENGINEERING_TELEMETRY=Restore) The result "" of evaluating the value "$(DotNetSharedFrameworkTaskFile)" of the "AssemblyFile" attribute in element <UsingTask> is not valid. /__w/1/s/src/libraries/sfx.proj
<Target Name="GenerateFrameworkListFile"
DependsOnTargets="GetGenerateFrameworkListFileInputs"
AfterTargets="Build"
Expand Down
Loading