Equivalent commands in a bash environment

I am trying to download and run sonar-scanner for C# and I’d like to know what would be the equivalent of this command in a bash environment? Taken from C/C++/Objective-C

SonarScanner.MSBuild.exe begin /k:"cs-and-cpp-project-key" /n:"My C# and C++ project" /v:"1.0" /d:sonar.cfamily.build-wrapper-output="build_wrapper_output_directory"
build-wrapper-win-x86-64.exe --out-dir build_wrapper_output_directory MSBuild.exe /t:Rebuild /nodeReuse:False
SonarScanner.MSBuild.exe end

Thanks

Would you still be executing in a Windows environment, or another OS?

executing in Linux environment

Well you definitely won’t be able to execute SonarScanner.MSBuild.exe or MSBuild.exe.

If your project is written in .NET Core, you would be able to use the .NET Core flavor

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.