This is an issue b/c the little Intellisense tips that show up in my code are constantly telling me to use Target-typed new expressions, which is a C#9 feature and prevent my code from compiling.
You can see this behavior by searching in NinjaTrader.Custom.csproj for:
<LangVersion>Latest</LangVersion>
NT8 should probably instead be generating a tag like this:
<LangVersion>8</LangVersion>
To avoid confusing people.
Cheers.

Comment