Skip to content

Commit

Permalink
Fixes dotnet#12740
Browse files Browse the repository at this point in the history
When I moved around properties to support NetCurrent, etc. in 6.0, the TFM replacement in arcade's build property files broke because the TFM property was not defined. Fix this by simply hardcoding the property value. It's not ever going to change.
  • Loading branch information
mmitche committed Mar 16, 2023
1 parent 3e086d4 commit df55654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/SourceBuild.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</ItemGroup>

<Exec
Command="sed -i 's/netcoreapp3.1/$(TargetFrameworkForNETSDK)/g' '%(ToolMSBuildFileUsingTargetFramework.FullPath)'"
Command="sed -i 's/netcoreapp3.1/net6.0/g' '%(ToolMSBuildFileUsingTargetFramework.FullPath)'"
WorkingDirectory="$(RepoRoot)"
Condition="'@(ToolMSBuildFileUsingTargetFramework)' != ''" />
</Target>
Expand Down

0 comments on commit df55654

Please sign in to comment.