My apologies if this isn't the best place for this. My question isn't really about Windows Programming but I didn't know where else to ask.
I'm learning Github Actions on GitHub. Locally, I'm building successfully with MSVS 2023. One of the scripts in a Github action workflow requires the msbuild commandline parameters for my solution. The default script is:
|
msbuild /p:Configuration=Release /p:OutputPath=Release
|
I would like to know the actual msbuild parameters.
I have tried:
1. parsing the "detailed" output text looking for "msbuild" - but there are way too many entries - and "msbuild " - but there are none. Lower levels of detail (normal and minimal) don't include msbuild lines;
2. looking for the project's
Properties > Configuration Properties > General > Property Sheet, but it's currently a console app so that section doesn't exist; and
3. executing
msbuild /t:ListAvailableProperties /p:Configuration=Release
in the project directory but it fails.
There may, indeed, be no further parameters but inquiring minds want to know.
Any advice on how I might be able to retrieve the commandline parameters?