Помогите пожалуйста с аргументами командной строки для client.bin
private void BuildClient(object o)
{
try
{
BuildOptions options = (BuildOptions) o;
var builder = new ClientBuilder(options, "client.bin");
builder.Build();
try
{
this.Invoke((MethodInvoker) delegate
{
MessageBox.Show(this,
$"Successfully built!\nSaved to: {options.OutputPath}\n\n",
"Build Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
});
}
catch (Exception)
{
}
}
catch (Exception ex)
{
try
{
this.Invoke((MethodInvoker)delegate
{
MessageBox.Show(this,
$"An error occurred!\n\nError Message: {ex.Message}\nStack Trace:\n{ex.StackTrace}", "Build failed",
MessageBoxButtons.OK, MessageBoxIcon.Error);
});
}
catch (Exception)
{
}
}
SetBuildState(true);
}