NumSharp
NumSharp copied to clipboard
The type or namespace name 'NumSharp' could not be found (are you missing a using directive or an assembly reference?) [Assembly-CSharp]csharp(CS0246)
I am using VSCode and have tried installing Numsharp using NuGet Gallery and Nuget Package Manager.
But still I am getting this error in my Unity project:
The type or namespace name 'NumSharp' could not be found (are you missing a using directive or an assembly reference?) [Assembly-CSharp]csharp(CS0246)
Any cues?
It is also included in Assembly-CSharp.csproj:
<PackageReference Include="NumSharp" Version="0.20.5" />
Hello @rcffc,
-
Have you tried to restart VSCode?
-
If your project is using .NET Core, the CLI tool allows you to easily install NuGet packages from VSCode.
dotnet add package NumSharpAfter the command completes, look at the project file (*.csproj) to make sure the package was installed.