Alex D

Results 44 comments of Alex D

as I remember I used CoreLib from .Net Microframework

it is missing only native implementation which I am not implementing and I do not have plans to do it.

once I have finished ts2c++ I will have a look with fresh view what I can update in the project

yes, it can be used but I was testing it on Windows only. so it can require some modifications to use on Android for example

FOA Thank you for your interest. 1) I am planning to migrate from CoreLib to .NET Core CoreLib. Initially I was using Mscorlib from .NET Micro as CoreLib this is...

Additionally I would like to implement PInvoke as many C# projects as Avalonia rely on it

I am working on functionality to compile mscorlib from CoreCLR. Many things already done

finally finished cleaning up the code to compile CoreCLR mscorlib. to do so you need to do few steps 1) git clone https://github.com/dotnet/coreclr.git 2) cd coreclr 3) init-tools.cmd 4) cd...

Now you can compile CoreCLR and CoreFX projects `Cs2Cpp.exe /release \coreclr\src\mscorlib\System.Private.CoreLib.csproj` `Cs2Cpp.exe /release \corefx\src\System.Private.Uri\src\System.Private.Uri.csproj /corelib:System.Private.CoreLib.dll /p:Configuration=netstandard2.0-Windows_NT-Release`

I did work a bit with reflection and native implementation (only required minimum). Idea was to reuse native implementation from CoreCLR or CoreRT but I am not there yet