I'm having a hard time installing GemBox.Spreadsheet
package in my .NET app. That's my first time using .NET (C#)., i have a Node.JS
background, so I don't understand the problem.
I already installed with dnu install GemBox.Spreadsheet
and everything looks fine, but i still see the error 'The type or namespace name 'GemBox' could not be found'
UPDATE -
I found this question and i tried to reproduce, but didn't work.
That's my project.json:
{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"dependencies": {
"NETStandard.Library": "1.0.0-rc2-23811",
"GemBox.Spreadsheet": "39.3.30.1153"
},
"frameworks": {
"dnxcore50": {
"GemBox.Spreadsheet": "39.3.30.1153"
}
}
}
Thanks.