Tagged Questions

The SDC Tasks are a collection of MSBuild tasks designed to make your life easier. You can use these tasks in your own MSBuild projects. You can use them stand alone and, if all else fails, you can use them as sample code.

learn more… | top users | synonyms

4
votes
2answers
1k views

Installing a win32 service using MSBuild and Microsoft.Sdc.Tasks

I'm trying to install windows service using the Microsoft.Sdc.Tasks library. <ControlService Action="Install" ServiceName="Service1" User="XXX Password="XXX" ...
1
vote
1answer
77 views

How do I modify the custom errors of a remote IIS6 website using MSBuild

I'm trying to use "Microsoft.Sdc.Tasks.Web.Website.UpdateHttpErrorSetting" to change the http error messages of a remote IIS website. The documentation for this task in particular is somewhat lacking ...
1
vote
5answers
993 views

XPath in MSBuild (SDC) and WIX

Fresh Asking of this Question-> I have a WIX file that I need to modify using MSBuild. It starts like this: <?xml version="1.0" encoding="UTF-8"?> <Wix ...
0
votes
1answer
57 views

Microsoft.Sdc.Tasks.BizTalk2004.Host.Delete error, but not using Biztalk?

I have a WCF service and I've recently upgraded from .NET 3.5/TFS2008 to .NET 4.0/TFS2010. I'm been debugging an team build error for the last couple of days and I can't quite figure why I'm receiving ...
0
votes
2answers
163 views

XPath, Wix and MSBuild ** Duplicate**

The Question and Answer can be found at: http://stackoverflow.com/questions/822104/xpath-in-msbuild-sdc-and-wix Vaccano
0
votes
2answers
2k views

Trying to use MSBuild task <Xml.ModifyFile> from Microsoft.Sdc.Common.tasks

I have a problem with the Xml.ModifyFile task which I do not understand. Can you guys help? My goal is simply to manipulate an attribute in an xml document. Im fairly new to the world of xml and ...