Ok, have a number of bots not working that well since the latest update to .Net 6.0 but I am chipping away at the issues.
For this error I have no idea what to do - Error MSB4057: The target "ComputerFilesToPublish" does not exist in the project.
I followed the file path to .nuget\packages\cTrader.automate\1.0.2\build\cTrader.Automate.targets to look at this particular line of code below. I have no idea what to do.
<Target Name="_BundleAlgo" DependsOnTargets="ComputeFilesToPublish">
<BundleAlgoTask FilesToBundle="@(ResolvedFileToPublish)"
MetadataPath="$(_AlgoMetadataFilePath)"
ProjectDir="$(ProjectDir)"
AssemblyName="$(AssemblyName)"
TargetFramework="$(TargetFramework)"
IncludeSource="$(IncludeSource)"
IncludeSymbols="$(IncludeSymbols)"
OutputPath="$(_AlgoFilePath)"/>
<Message Importance="High"
Text="$(MSBuildProjectName) -> $([System.IO.Path]::GetFullPath($(_AlgoFilePath)))"/>
</Target>