Currently the samples are written like this: ```csharp namespace **Microsoft.ML**.Samples.Dynamic.* { } ``` This is causing the samples to not require `using Microsoft.ML`. We want to drop the Microsoft.ML prefix from samples and write them like this: ```csharp namespace Samples.Dynamic.* { } ```