How do you specify command line arguments in a .csproj's StartProgram setting?
问题 I'm trying to specify command line arguments to an executable in a <StartProgram> value of a <PropertyGroup> Currently looks like this <PropertyGroup> <StartAction>Program</StartAction> <StartProgram>$(SolutionDir)\Edge.Express\node.exe</StartProgram> </PropertyGroup> I'm trying to automate the steps involved in attaching my library to a running process so my team can directly debug a library without additional ceremony (They're not familiar with Visual Studio yet) I copied the node