icsharp icon indicating copy to clipboard operation
icsharp copied to clipboard

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

Open Yvees opened this issue 6 years ago • 2 comments

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

Yvees avatar Oct 15 '19 11:10 Yvees

@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;

zabirauf avatar Oct 16 '19 03:10 zabirauf

@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

Yvees avatar Oct 16 '19 15:10 Yvees