I'm trying to get QC going in visual studio to help with debugging/autocomplete/all that.
Following this tutorial the below, I didn't have a great feel for how to set up a project, but I went ahead and pulled in the Nuget package QuantConnect.Algorithm.Framework (which cleared up most of my reference errors).
https://www.quantconnect.com/tutorials/open-source/backtesting-from-visual-studioSeverity Code Description Project File Line Suppression State
Error CS1061 '' does not contain a definition for 'EnableAutomaticIndicatorWarmUp' and no accessible extension method 'EnableAutomaticIndicatorWarmUp' accepting a first argument of type '' could be found (are you missing a using directive or an assembly reference?)
It appears that the class QCAlgorithm has the property (I'm inheriting from it and successfully picking everyting else up).
https://github.com/QuantConnect/Lean/blob/5e0ba87f1a00cb379f3a89ca778808dd993ecbc9/Algorithm/QCAlgorithm.Indicators.csWhat am I missing? Is there an updated nuget package? Am I missing a separate package?