I have the following:

msbuild :build do |msb| 
 msb.solution = "../../src/Solution.sln" 
 msb.targets :clean, :build, :Package
 msb.properties = { 
  :configuration => :Dev
 } 
end

When calling rake, I get the error: The target "Package" does not exist in the project ....Solution.sln

I am running this on a computer with Visual Studio installed so I know that it works when I try and create a Package in VS.

Can I not use the msbuild Package target with Rake/Albacore?

Update - Working solution:

msbuild :build do |msb| 
 msb.solution = "../../src/Solution.sln" 
 msb.targets :clean, :build
 msb.parameters = "/p:DeployOnBuild=true;DeployTarget=Package"
 msb.properties = { 
  :configuration => :Dev
 } 
end 
link|improve this question

76% accept rate
feedback

1 Answer

up vote 7 down vote accepted

When you build a solution file you can only use the following targets.

  • Build
  • Rebuild
  • Clean
  • Publish

If you are trying to invoke the Package target on a Web Application Project (WAP) then, you can use the following syntax to call it for every WAP in that solution.

msbuild YourSolution.sln /p:DeployOnBuild=true;DeployTarget=Package

WAP projects have a special hook to invoke any target during a build. That is enabled by the when the property DeployOnBuild=true and the target that is invoked is defined by the DeployTarget property.

I'm not sure what the Rake syntax is for that, but if you could post it here for others that would be ideal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.