Using NET 6 I have the following project structure:
nuget.config
project.code-workspace
- Core
Core.csproj
- Api
Api.csproj
- Sim
notebook.ipynb
Where notebook.ipynb
is for now just:
#i "nuget:https://api.nuget.org/v3/index.json"
#r "nuget:Microsoft.Data.Analysis,0.*"
using System;
using Microsoft.Data.Analysis;
Console.WriteLine("Hello World!");
How to include a project reference to Core and Api projects in notebook.ipynb
?
I need to use some of the Core and Api project classes in notebook.ipynb
.