In my project solution has multiple projects and I want to rebuild it using msbuild
engine but excluding only one project only for that time because I want to build that particular project separately in another method. that's the reason I guess, I can't write Exclude property in
Here is my command -
msbuild Demo.sln /t:Rebuild /p:Configuration=Release /p:BuildProjectReferences=false
Is there any way to exclude a project from build at command line?