Is there any way I can tell MSBuild 4.0 to build a target, but ignore any dependencies? I just want to build that target itself, nothing else.
|
feedback
|
|
It may be possible to override the built-in target, add your own condition, and have your target duplicate the original, but this can get rather involved. If you can track down a single dependent built-in target this can be maintainable. Sometimes these "core" targets consist of nothing more than a list of DependsOnTargets, and sometimes even those are defined in a property, so overrideing it and adding a condition where they are missing is trivial. Sometimes though you need to do a big cut-and-paste to get it right. Basically, MSBuild will only maintain the last target defined of any given name, so find where your project is importing the .target file that includes the target you want to override, then put your own .target file import that contains the override after it. For example, adding a condition to the "CoreBuild" target from Microsoft.Common.targets is as easy as this, while keeping the same behavior otherwise (the Target condition with the $(SkipCoreBuild) property below):
Placing the above in your own targets file and importing it in a C# project after the standard...
... will override the default implementation that doesn't have the condition you need to selectively disable it. In any case, if you find a target that doesn't allow you to modify the condition, I would file a bug on Connect describing what you are trying to do, the MSBuild folks can be pretty responsive to this sort of thing (over time). | |||
|
feedback
|
|
It turns out the built-in
| |||
|
feedback
|
|
I would like to reiterate @EMP's solution (and I can't vote him up due to my puny reputation). The correct way to avoid MSBuild's default behavior of rebuilding all the dependencies listed in the project file is to set the Since he wrote his answer in the form of Ant (or something), here's an example from the command line; for my project, it looks something like this:
| |||
|
feedback
|
|
It depends on the target you want to build.
For CorePublish in Azure cloud computing project as well as any other with customizable DependsOn targets you can try to change the project to modify default list of dependencies:
| |||||||
feedback
|
|
Usually a target's dependencies are specified with a property, eg:
In such a case you can invoke msbuild as
which sets that property to nothing, and so no dependencies. | |||
|
feedback
|