5
我有一個Web應用程序項目(WAP)的解決方案,它在Visual Studio中構建和打包。但是,當我運行此Albacore msbuild
任務時,它不起作用。如何使用Albacore的msbuild任務構建.NET Web應用程序項目?
msbuild :build do |msb|
msb.solution = '../../src/Solution.sln'
msb.targets :clean, :build, :Package
msb.properties = {
:configuration => :Dev
}
end
我得到這個錯誤
「套餐」 不存在於該項目的目標.... Solution.sln
如何建立一個WAP和作出使用長鰭金槍魚和耙子的包?
更新:工作任務
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