prom3theu5 / aspirational-manifests

Handle deployments of .NET Aspire AppHost Projects
MIT License
702 stars 36 forks source link

Support for `args` #256

Open fdohrendorfG opened 2 months ago

fdohrendorfG commented 2 months ago

Hello,

I would like to add command line argument support. So that those are forwarded to the apphost project.

We use this to have different configurations in our apphost project.

Example:

// Spin up Sql Server as a container
var useSqlServerContainer = args.Contains("--use-sql-server-container");

Would you accept a PR for this?

Best, Florian