Harry

Results 141 comments of Harry

Not sure myself either, but they are not connected to the build bot right now, so even if the release is made, they won't get included.

The current FSharp templates are broken and need to be updated, ie. even tho they compile and run they are not even using the correct nuget packages.

Is there a reason to support anything bellow .net 6 for android/ios once its out?

> The biggest concern we've had about this in the past is that System.Numerics passes big types like Matrix4x4 by value and not by reference. We are already doing that,...

I would say this is expected... its like doing a foreach loop on an array, and also modifying that array at the same time :/

Oh, I misread, I though an exception was being thrown... silly me.

@Tzenchor You need to resolve merge conflict. Do: ``` git remote add upstream https://github.com/mono/MonoGame.git git fetch upstream/develop git rebase upstream/develop * it will ask you to fix merge conflicts in...

@tomspilman @KonajuGames @dellis1972 I think one of you should take some time to review this.

We should probably also reverse the check, that is have the condition be by default true, otherwise if `mscorlib` is available, set it to false.

If I had originally written `Type.GetType("mscorlib") == null` instead, it would be forward compatible in case the check itself failed, tho now that I think about it, I do remembered...