Browse by Tags
All Tags »
msbuild (RSS)
<Project xmlns=" http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets="AddBtResx;"> <PropertyGroup > <BTServerName></BTServerName> <BTServerDatabase></BTServerDatabase> <MsgFailed>Failed Adding
Read More...
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " EmailIt " > < Import Project = "c:\sdc \Microsoft.Sdc.Common.Tasks " /> < PropertyGroup > < MsgFailed > Failed Email for </ MsgFailed
Read More...
this Explains how to use Msbuild to zip some log files. the zipfilename is generated from date time information, hence unique. < Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " ZipLogs " > <Import Project="c:\sdc\Microsoft.Sdc.Common.Tasks"
Read More...
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " RunUnitTests " > < Target Name = " RunUnitTests " > < Exec Command = ' MSTest.exe /testmetadata:"c:\testproj.vsmdi" ' /> < Message Importance
Read More...
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " StartHosts " > <Import Project="c:\sdc\Microsoft.Sdc.Common.Tasks" /> < PropertyGroup > < MsgFailed > Failed StartHosts for </ MsgFailed
Read More...
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " StartBizTalkApplication " > <Import Project="c:\sdc\Microsoft.Sdc.Common.Tasks" /> < PropertyGroup > < MsgFailed > Failed StartApp for
Read More...
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " PublishSite " > <Import Project="c:\sdc\Microsoft.Sdc.Common.Tasks" /> < PropertyGroup > < MsgFailed > Failed PublishWebSite for </
Read More...
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " AddReferences;ImportBindings " > <Import Project="c:\sdc\Microsoft.Sdc.Common.Tasks" /> < PropertyGroup > < MsgFailed > Failed Binding
Read More...
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " CheckAppExists;StopApplication;RemoveReferences;UnDeploy " > < Import Project = "c:\sdc \Microsoft.Sdc.Common.Tasks " /> < PropertyGroup > <
Read More...
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " StopHosts " > < Import Project = "C:\sdc \Microsoft.Sdc.Common.Tasks " /> -- Download sdctasks from Codeplex.com and put it here < PropertyGroup
Read More...
< Project xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " DefaultTargets = " BuildSolutions;SuccessLog " > < PropertyGroup > < MsgBuildFailed > Failed deploy for </ MsgBuildFailed > < MsgBuildSuccess > success
Read More...
I have used exec task inside msbuild and achieved the same.. for the rest like stopping / starting host instances, I use sdc tasks.. < Target Name = " BuildSolutions " > < Exec Command = ' devenv.com /build $(BuildType) "c:\customer.btproj" '
Read More...