Laurence Hartgill

Results 10 comments of Laurence Hartgill

Hi, thanks for looking into it. 1. No I haven't been able to generate anything yet, everything I try yields the same error. 2. I do, v0.18. 3. Yes I've...

> Could you try uninstalling the plugin, restarting your machine, reinstalling, and making sure only one Xcode is open and that xcode-select -p points to the open version of Xcode....

I've done some exploratory work on this which you can see at [laurence79/saule/feature/net-core](https://github.com/laurence79/saule/tree/feature/net-core) I sideways copied all the classes and tests from the existing projects to new netcore projects. The...

Ok, further reading shows that we could indeed target both netcore and net4xx in the same package. http://blogs.microsoft.co.il/iblogger/2017/04/05/easily-supporting-multiple-target-frameworks-tfms-with-vs2017-and-nuget/ Would you prefer this approach?

I've decided I also prefer that approach 😊 Latest code includes the following projects (tests not listed) **Saule.Common - Shared Functionality** (targets net452 & netcoreapp2.0) **Saule.AspNet - ASP.Net Specific classes**...

Thanks, I agree. Perhaps if you start a new branch, say feature/net-core similar to how I have done in my fork. I'll then do a PR into that branch, then...

Alternatively, the following is more comprehensive but extends Nullable as well. I didn't know if you wanted to go that far... ``` public static Maybe Execute(this Maybe maybe, Func func)...

I did completely miss that 😞 I was looking for something similar to OnSuccess() for Result. I think Select is the logical choice, I'll work with that for now.

As overloads to Select? I'm happy to amend the PR if that helps?

So I've run into a blocker here. The methods ``` public static Maybe Select(this Maybe maybe, Func selector) where T : class where K : class ``` and ``` public...