Hello, I'm a .NET developer but new to the .NET core world. I was able to verify this on two different machines. I didn't see any existing issues open on this. Hopefully I'm not missing something obvious here, and apologies if I am. Let me know if there's any further information I can provide or questions I can answer
dotnet new console
dotnet add package Microsoft.ML --version 0.7.0
What happened?
Failed to build, received a missing type or name space error CS0234: The type or namespace name 'TimeSeriesProcessing' does not exist in the namespace 'Microsoft.ML.Runtime' (are you missing an assembly reference?)
Looking through the object browser in VS I don't see any TimeSeriesProcessing namespace present in the 0.7.0 nuget package at all.
What did you expect?
Successful build, finding the indicated namespace.
using System;
using System.Collections.Generic;
using Microsoft.ML.Runtime.Api;
using Microsoft.ML.Runtime.Data;
using Microsoft.ML.Runtime.TimeSeriesProcessing;
namespace console_dotnetcore
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
Time series operations are in Microsoft.ML.TimeSeries NuGet.
Awesome, that did it. Thanks for the clarification!
Most helpful comment
Time series operations are in
Microsoft.ML.TimeSeriesNuGet.