I'm newer with C# and this is going to sound absurd, but I have a special Visual Studio project type (Dynamics 365 Operations) that allows me to reference local C# projects, and DLL's, but not Nuget packages. It's a limitation of the VS project type I'm forced to use.
So I have a solution with 2 projects. The special Dynamics project (MyProj) that currently references an empty C# project (MyNewtonsoftWrapper).
In MyProj, I cannot type using Newtonsoft.Json; because I cannot use the Nuget package directly. I can do using MyNewtonsoftWrapper; and call anything I put in there.
Can I somehow pass-through everything from the Newtonsoft.Json namespace so that all of my syntax is identical if I were using the Nuget package directly?