We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm trying to forward args to a BenchmarkDotNet method:
BenchmarkSwitcher.Run(string[] args, ...)
BenchmarkDotNet expects war Main(string[] args) args and is run in the following manner:
Main(string[] args)
dotnet run -c Release -- --job short --runtimes clr core --filter *BenchmarkClass1*
My input class looks as follows:
public class BenchInput : RickInput { [Description("BenchmarkDotNet Run args")] public IEnumerable<string> Args { get; set; } }
Is there a way to use Oakton to propagate string args[] "verbatim" ?
The text was updated successfully, but these errors were encountered:
Not as an argument, but you can as a flag: https://jasperfx.github.io/oakton/documentation/flags/enumerable/
I'm very sorry about how long it's taken to respond here:(
Sorry, something went wrong.
No branches or pull requests
I'm trying to forward args to a BenchmarkDotNet method:
BenchmarkSwitcher.Run(string[] args, ...)
BenchmarkDotNet expects war
Main(string[] args)
args and is run in the following manner:My input class looks as follows:
Is there a way to use Oakton to propagate string args[] "verbatim" ?
The text was updated successfully, but these errors were encountered: