0
votes
1answer
43 views
Xslt task not working as expected
I have an XSLT transform that I developed in VS. It works great when I use VS to run it (via XML->Show Xslt Output). However, when I execute it via the MsBuildCommunityTasks Xslt t …
0
votes
2answers
30 views
How do I use MSBuild on a C# project with no compilable code
I have a C# web app project which actually has no ASP.Net or C# in it. It's just a single html page with some Javascript, CSS, and a couple of images.
I want to use MSBuild to de …
5
votes
4answers
1k views
Pre-build MSBuild task to update AssemblyInfo not in sync with built exe
I am using a pre-build task in Visual Studio 2008 that invokes msbuild:
C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe $(MSBuildProjectDirectory)\version.targets /p:Configura …
0
votes
1answer
119 views
Cruise Control.NET File Merge NUnit File - Getting XmlException
I am new to Cruise Control. I'm running a project where I use an MSBuild file to build my project. I'm using the NUNit task in the MSBuild Community Tasks project to run all of my …
1
vote
1answer
22 views
Is it possible to access files stored in TFS’s source control from the TFSBuild.proj file before the “Get” build task?
I’m using a few custom MSBuild tasks that are checked into source control. I would like to import these tasks into my TFSBuild.proj file that TFS uses to build the project. Right n …
1
vote
1answer
52 views
How to create a web site with an application using MSBuild Extension Pack
What is the correct way to create a web site using the MSBuild Extension Pack?
I'm trying to use the MSBuild Extension Pack to create a web site using the following target. Unfort …
0
votes
2answers
317 views
MSBuild MSBuildCommunityTasks Task Time
I have a MSBuild project and I want the current date to be added to a zip file that I am creating.
I am using the MSBuildCommunityTasks.
''
'<'Import Project="$(MSBui …
0
votes
0answers
31 views
FxCop in TFSBuild.Proj?
I downloaded the latest MSBUild Community Tasks stuff, installed it on my Visual Studio 2008 XP box, edited the tfsbuild.proj file. Intent is to run a custom FxCop setup. Right now …
1
vote
1answer
35 views
How can I use MSBuild to export another project as a Visual Studio template project?
Here's what I'm trying to achieve. I have a number of projects in C# and VB which I wish to export as template projects as part of my automated build process. Exporting templates i …
0
votes
1answer
43 views
CSC task in Msbuild aborts with namespace errors
I have attempted the following:
<!-- Specify the inputs by type and file name -->
<ItemGroup>
<CSFile Include = "$(MSBuildProjectDirectory)\..\Mine.cs"/>
&l …
0
votes
2answers
944 views
MSBuild ReadLinesFromFile all text on one line.
When I do a ReadLinesFromFile on a file in MSBUILD and go to output that file again, I get all the text on one line. All the Carriage returns and LineFeeds are stripped out.
<P …
0
votes
1answer
203 views
MSBuild.Community.Tasks.Attrib on x64 machine failing
I'm having an issue with the Attrib task from the MSBuild Community Tasks Project when running on a 64 bit build machine.
I've put together this small test project to show what th …
1
vote
1answer
180 views
Zip task of MSBuild Community Tasks changes file attribute
I have found that creating a zip file using the Zip task provided by MSBuild Community Tasks changes (or rather, deletes) any file attributes of the files being zipped. Here is one …
0
votes
1answer
80 views
How to get a property from a task in a TFS build?
I made a custom task in my TFS build to examine my project's GlobalAssemblyInfo.cs file in order to extract an attribute (AssemblyInformationalVersion to be exact) in order to use …
1
vote
1answer
49 views
AppController error: Index out of bounds
I overrode the following target in my TFS build file to run various tasks that set up databases, import data, etc., etc. in Visual Studio 2008 - the aim was to stop only the websit …
