show/hide this revision's text 3 Added more information

I have an MSBuild task to build a specific project in a solution file. It looks something like this:

<Target Name="Baz">
  <MSBuild Projects="Foo.sln" Targets="bar:$(BuildCmd)" />
</Target>

From the command line, I can set my BuildCmd to either Rebuild or Clean and it works as expected, but :

msbuild /target:Baz /property:BuildCmd=Rebuild MyMsbuildFile.xml msbuild /target:Baz /property:BuildCmd=Clean MyMsbuildFile.xml

But what word do I use to set it BuildCmd to in order to just build? I've tried Build and Compile and just leaving it blank or undefined, but I always get an error.

msbuild /target:Baz /property:BuildCmd=Build MyMsbuildFile.xml Foo.sln : error MSB4057: The target "bar:Build" does not exist in the project.

msbuild /target:Baz /property:BuildCmd=Compile MyMsbuildFile.xml Foo.sln : error MSB4057: The target "bar:Compile" does not exist in the project.

msbuild /target:Baz MyMsbuildFile.xml Foo.sln : error MSB4057: The target "bar:" does not exist in the project.

show/hide this revision's text 2 Removed <> tags that the text editor didn't like

I have an MSBuild task to build a specific project in a solution file. It looks something like this:

<MSBuild Projects="Foo.sln" Targets="bar:$(BuildCmd)" />

From the command line, I can set my BuildCmd to either Rebuild or Clean and it works as expected, but what word do I use to set it to just build? I've tried Build and Compile and just leaving it blank or undefined, but I always get an error.

Foo.sln : error MSB4057: The target "bar:Build" does not exist in the project.

Foo.sln : error MSB4057: The target "bar:Compile" does not exist in the project.

Foo.sln : error MSB4057: The target "bar:" does not exist in the project.

show/hide this revision's text 1

MSBuild: Specifying a target from the command line

I have an task to build a specific project in a solution file. It looks something like this:

<MSBuild Projects="Foo.sln" Targets="bar:$(BuildCmd)" />

From the command line, I can set my BuildCmd to either Rebuild or Clean and it works as expected, but what word do I use to set it to just build? I've tried Build and Compile and just leaving it blank or undefined, but I always get an error.

Foo.sln : error MSB4057: The target "bar:Build" does not exist in the project.

Foo.sln : error MSB4057: The target "bar:Compile" does not exist in the project.

Foo.sln : error MSB4057: The target "bar:" does not exist in the project.