-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Closed
Labels
area-Infrastructureblocking-official-builduntriagedNew issue has not been triaged by the area ownerNew issue has not been triaged by the area owner
Description
Example:
F:\workspace\_work\1\s\.packages\microsoft.dotnet.arcade.sdk\5.0.0-beta.20071.3\tools\Sign.proj(81,5): error MSB4018: System.IO.FileNotFoundException: Could not find file 'F:\workspace\_work\1\s\artifacts\transport\coreclrSystem.Private.CoreLib.dll'.
Note transport\coreclrSystem.Private.CoreLib.dll
I think this is because of missing normalization here (#1934):
runtime/eng/liveBuilds.targets
Lines 21 to 23 in fd7a5e8
| <!-- Honor the RuntimeArtifactsPath property. --> | |
| <CoreCLRArtifactsPath Condition="'$(CoreCLRArtifactsPath)' == ''">$(RuntimeArtifactsPath)</CoreCLRArtifactsPath> | |
| <MonoArtifactsPath Condition="'$(MonoArtifactsPath)' == ''">$(RuntimeArtifactsPath)</MonoArtifactsPath> |
Because that variable is used in signing here:
Line 39 in fd7a5e8
| <ItemsToSign Include="$(CoreCLRArtifactsPath)System.Private.CoreLib.dll" /> |
I think normalizing would fix the break.
@dotnet/runtime-infrastructure
Metadata
Metadata
Assignees
Labels
area-Infrastructureblocking-official-builduntriagedNew issue has not been triaged by the area ownerNew issue has not been triaged by the area owner