AmirAli M

Results 9 issues of AmirAli M

Hey there! These changes in the cd-release workflow enables pinning the simplified package build folder to IPFS and Crust network. It adds 2 new steps to the build job: `Pin...

Hi, I was trying to run the project on Ubuntu 20.04 and had problems with running the example codes, so I tried to fix them to make the examples compatible...

This case only works for assembly generated by VS2013 and built for Debug.

bug

When there is await in catch or finally clauses, in IL we can see compiler takes await out of catch clause and skips it if we never been in catch....

Compiler generates a different IAsyncStateMachine for `await foreach` to handle iteration on async enumerables. It contains a `MoveNextAsync` method beside `MoveNext`. So we can find this pattern by checking if...

enhancement

By applying changes on branch `feature/async-upgrades` we will cover new patterns of the `MoveNext` method of `IAsyncStateMachine` which appears in use cases such as: - await in foreach - await...

enhancement

Number of assemblies copied to References folder is different when running on different platforms. For example in coolstore.ShoppingCart.Net6 test case: Content of `ShoppingCartReferences/` in Windows: `System.Collections.dll System.Linq.dll System.Runtime.dll` Content of...

Decompiling a Program with an async Main method generates an extra method (named `u003cMainu003e` in example below) that calls the other Main. Input `Program.cs`: ``` namespace Sample3 { internal class...