-
Notifications
You must be signed in to change notification settings - Fork 381
Closed
Labels
Description
In Arcade, we have conditional TFMs to build for net6.0 instead of net3.1 when building with DotNetBuildFromSource=true. However, these changes have failed to account for some places where the TFM is embedded into paths that need to be accessed during the build run - for instance,
arcade/src/Microsoft.DotNet.Arcade.Sdk/tools/BuildTasks.props
Lines 5 to 6 in 1c400a1
| <ArcadeSdkBuildTasksAssembly Condition="'$(MSBuildRuntimeType)' != 'Core'">$(MSBuildThisFileDirectory)net472\Microsoft.DotNet.Arcade.Sdk.dll</ArcadeSdkBuildTasksAssembly> | |
| <ArcadeSdkBuildTasksAssembly Condition="'$(MSBuildRuntimeType)' == 'Core'">$(MSBuildThisFileDirectory)netcoreapp3.1\Microsoft.DotNet.Arcade.Sdk.dll</ArcadeSdkBuildTasksAssembly> |
Reactions are currently unavailable