Ryan Graham

Results 7 comments of Ryan Graham
trafficstars

@kisenka Sure thing! https://github.com/ryan-codingintrigue/svg-loader-308-repro `npm run repro` should output the following: > ERROR in ../another-module/dist/felix.svg > Module not found: Error: Can't resolve './custom-loader.js' in '/path/to/svg-loader-repro/another-module/dist' > @ ../another-module/dist/felix.svg 2:0-40 9:13-19...

Thanks for this. I've taken a look at the PR and can't think of a reason those backslashes are in there off the top of my head. I am currently...

You should be able to do this. Contentful.NET uses [JSON.NET](http://www.newtonsoft.com/json) to deserialize the response from the REST API to DataModel objects, so if you use the same library it should...

The method used by Contentful.NET [is internal](https://github.com/ryan-codingintrigue/Contentful.NET/blob/master/Contentful.NET/ContentfulClient.cs#L172) so you won't be able to call it directly (it requires a HttpResponseResult anyway, so probably won't be of much use to you)....

Great stuff. Strangely there is a unit test for the internal method, but not for the `SearchAsync` method for this parameter so I guess that's how it was missed. Thanks...

I did make an attempt to make the package work with a [very early version of .NET Core](https://github.com/ryan-codingintrigue/Contentful.vNext), but things were in flux for .NET for _soooooo long_ it just...

OK, I have a provisional branch on GitHub here: https://github.com/ryan-codingintrigue/Contentful.NET/tree/netcore/Contentful.NET.Core I made a basic Console App with it and it seems to build/run just fine. I'm pretty new to .NET...