-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compatibility warning about debuginfo between neo-devpack-dotnet 3.6.2 and 3.7.1 #5
Labels
enhancement
New feature or request
Comments
Should be resolved in https://github.com/Hecate2/neo-fairy-test/releases/tag/3.7.1.2 , but there may still be bugs. Feel free to comment here. |
using Neo.SmartContract.Framework;
using Neo.SmartContract.Framework.Attributes;
using Neo.SmartContract.Framework.Services;
using System.ComponentModel;
namespace ContractTemplate
{
[DisplayName(nameof(TestContract))]
[ContractPermission("*", "*")]
public class TestContract : SmartContract
{
public static void Main()
{
Runtime.BurnGas(1000);
for (int i = 0; i < 10; ++i )
{
Runtime.BurnGas(1000);
uint n = Runtime.GetNetwork();
}
}
}
} dumpnef with devpack 3.7.1:
dumpnef with devpack 3.6.2:
|
Hecate2
changed the title
Compatibility warning about debuginfo
Compatibility warning about debuginfo between neo-devpack-dotnet 3.6.2 and 3.7.1
May 14, 2024
Hecate2
added
enhancement
New feature or request
and removed
bug
Something isn't working
labels
May 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The sequence points of debuginfo had been changed. Each assembly instruction now has an original piece of source code. This will affect the debugging features of Fairy.
The text was updated successfully, but these errors were encountered: