zabirauf / icsharp

C# kernel for Jupyter
Other
278 stars 62 forks source link

Is there a sample code of how to use nuget command ? #61

Open Yvees opened 5 years ago

Yvees commented 5 years ago

hi guys, Im new to icsharp. Is that possible using a nuget command to add references ?

zabirauf commented 5 years ago

@KevinYeti Yep you can. You can get the DLLs using nuget and then refer to them in Jupyter using

#r 'path/to/module.dll'

using moduleNS.module;
Yvees commented 5 years ago

@KevinYeti Yep you can. You can get the DLLs using nuget and then refer to them in Jupyter using

#r 'path/to/module.dll'

using moduleNS.module;

Thank you for reply. Actually what i mean is is that a way to add nuget package reference. maybe something like this ?

#r  nuget:Json.Net