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