Artemy

Results 34 comments of Artemy

@diegobfernandez thanks for the tip, it worked for me. It's great I've stumbled upon your comment. 👍

@ScottShingler just had the same issue too, but with `XmlProvider`. As I understand the problem is in the format of embedded resource names used in .NET Standard/.NET Core. Try to...

@fischgeek have you added "boards.json" to the project as an embedded resource?

@fischgeek as I understand this provider parameter only tells the provider to look for the sample JSON-file among the project resources. So if the provider can't find the resource (because...

@fischgeek not in the calling project. You should embed it only in the library where the type for provider is declared. And also you should specify the provider parameter as...

@fischgeek by "my own type derived from it" you mean inheritance or what? I don't understand completely what are you trying to achieve. P.S.: I'll try to guess something about...

@fischgeek , as I've understood your sample JSON is located in the directory "Samples". In that case `JsonProvider`'s static parameter `EmbeddedResource` should be specified as `"TrelloConnectFSharp, TrelloConnectFSharp.Samples.board.json"` (whereas your parameter...

@fischgeek and when you reference the project, not just the DLL, does all work?

@fischgeek what are you trying to do when you're calling `TrelloConnectFSharp.Trello.LoadBoardType "boardId"`? `Load` function expects path to some JSON-file or a plain JSON string which has the same data scheme...

@fischgeek ok, it's already good that you've made it work at least in such way. But I still don't know why it doesn't works in the initial way, because in...