vendredi 5 novembre 2004 - Messages

AspectDNG on Mono step 1

Grand petit pas pour AspectDNG ce soir, j'ai réussi à bidouiller Rail pour passer outre certains bugs de Mono. Du coup, premier round-trip réussi sous Mono.
Qu'est ce qu'un round-trip ? C'est tout simplement le fait de passer une assembly à la moulinette ILML, et ré-assembler l'assembly à partir de l'ILML.

D:\temporary\ilml>hello.exe
Hello World !

D:\temporary\ilml>il2ilml hello.exe hello.exe.xml
D:\temporary\ilml>ilml2il hello.exe.xml hello.new.exe
D:\temporary\ilml>hello.new.exe
Hello World !

D:\temporary\ilml>mono il2ilml.exe hello.exe hello.exe.xml
D:\temporary\ilml>mono ilml2il.exe hello.exe.xml hello.new.exe
D:\temporary\ilml>mono hello.new.exe
Hello World !

D:\temporary\ilml>

On va y arriver !