DllExport icon indicating copy to clipboard operation
DllExport copied to clipboard

Something went wrong

Open chuxiaaaa opened this issue 2 years ago • 1 comments

Error: RunIlAsm: Something went wrong. We can't find '1' exports from PE32/PE32+ module 'C:\Users\Administrator\source\repos\OAZCSharpSdk\OAZCSharpSdk\bin\Debug\OAZCSharpSdk.dll': AppInfo

    public static class Exports
    {
        private static OAZPlugin plugin { get; set; }

        [DllExport]
        public static string AppInfo()
        {
            plugin = Program.Main(null);
            var appObj = new
            {
                name = plugin.Name,
                author = plugin.Author,
                description = plugin.Description,
                version = plugin.Version,
                skey = plugin.Skey,
                sdk = plugin.Sdk,
            };
            return appObj.JsonSerialize();
        }
    }

chuxiaaaa avatar Feb 07 '23 11:02 chuxiaaaa

Hello,

Please follow the issue template. This is duplicate of #211

The error only means that the automatic check control is triggered on your final pe-module. But you didn't provide anything about it, same to #211

On 07.02.2023 14:35, chuxiaaaa wrote:

3F avatar Feb 13 '23 13:02 3F