示例#1
0
        public void Render(PostProc instance)
        {
            if (instance == null)
            {
                throw new ArgumentNullException(nameof(instance));
            }

            SetCmdType(instance.Type);
            SetProcEnv(instance.ProcEnv);

            //TODO: implement logic
            //txtPostProc.Text = instance.Cmd;
            txtPostProc.Text = $"Some Post-Proc features are not yet available in GUI for v{DllExportVersion.S_PRODUCT}. But you can also configure it with msbuild: https://github.com/3F/DllExport/wiki/PostProc";
        }
示例#2
0
        public void Render(PostProc instance)
        {
            if (instance == null)
            {
                throw new ArgumentNullException(nameof(instance));
            }

            SetCmdType(instance.Type);
            SetProcEnv(instance.ProcEnv);

            //TODO: implement logic
            //txtPostProc.Text = instance.Cmd;
            txtPostProc.Text = $"Some Post-Proc features are not yet available in GUI for v{DllExportVersion.S_INFO}. But you can already configure it with msbuild: https://github.com/3F/DllExport/pull/148 \r\n* Follow the news or open PR to https://github.com/3F/DllExport";
        }
示例#3
0
 public PostProc Export(PostProc obj) => (obj ?? throw new ArgumentNullException(nameof(obj)))