3F / DllExport

.NET DllExport with .NET Core support (aka 3F/DllExport aka DllExport.bat)
MIT License
960 stars 133 forks source link

Something went wrong #218

Closed chuxiaaaa closed 3 months ago

chuxiaaaa commented 1 year ago

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();
        }
    }
3F commented 1 year ago

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: