2
votes
1answer
22 views
MSBuild: asterisks and strange ItemGroup Exclude behaviour
I have a script that attempts to construct an ItemGroup out of all files in a certain directory while excluding files with certain names (regardless of extension).
The list of files to be excluded …
2
votes
3answers
324 views
+100
Suppressing AfterBuild targets when a csproj has not been built
I have a post-build target in MSBuild to copy some build outputs.
This is linked in as a dependency to the AfterBuild target (exposed by Microsoft.CSharp.targets):
<Target Name="AfterBuild" …
0
votes
1answer
9 views
MSBuild taking forever to check timestamps when started from VS
I have a MSBuild file that uses item batching to send a bunch of files into a task. The target uses a vector of items for input and output.
When I run msbuild from the command line (I run make which …
1
vote
1answer
22 views
Updating web.config with an MSBUILD task
I'm using an Web Deployment project to do a few post build tasks on a website I'm deploying.
I want to use a FileUpdate task to update my web.config and change the compilation mode from debug="true" …
0
votes
1answer
46 views
Linked Files within a Folder Structure
In Visual Studio when I linked a file from one project to the next, I get the following error when an attempt is made to load the linked resource. This only happens when the linked file is within a …
0
votes
2answers
104 views
How to implement dependency checking for C/C++ sources
I started adding support for a 3rd party toolchain (IAR Compiler) to Visual Studio 2005.
So far I've managed to implement the required msbuild tasks (Compile, Link and Assemble) and the Visual Studio …
1
vote
2answers
11 views
MsBuild Task: Register Com Component on remote/deployed-to machine?
I am currently still fiddling with our msbuild & deployment script and one of the steps is to register a (legacy) com component on the machine the code is deployed to. Is there any 'elegant' way …
0
votes
0answers
3 views
Thannunit task from msbuild community tasks
On site http://msbuildtasks.tigris.org/ mentioned that Nunit task Run NUnit 2.4 on a group of assemblies
Did anyone tried to run this task with Nunit 2.5 or later ?
Was some problems found with using …
2
votes
2answers
49 views
build script - how to do it
Hi everyone.
About 2 months ago I overtook building proccess in current company. Even though I don't have much knowledge of it, I was the only with enough time, so I didn't have much choice.
…
4
votes
1answer
293 views
Using Studio’s “Custom Tool” in MSBuild
I've got a "Custom Tool" for Visual Studio to munge some template files into code. For consistency and portability I'd like to be able to run this template processor from MSBuild when building outside …
0
votes
1answer
13 views
Problem with msbuild, ClickOnce and PublishUrl
Hi everyone,
I'm trying to make a batch file to publish the few ClickOnce application we have in one click. I'm using msbuild for that, and as an example the below command line shows how I'm doing …
0
votes
1answer
18 views
Control pdb file output from build defintion file
Hello,
I am trying to generate a release build with no pdb files generated. I have seen numerous posts that suggest right-clicking on the project, selecting Properties, going to the Build tab and …
5
votes
8answers
3k views
MSBuild — Use the .csproj file or roll your own?
OK, so I readily concede that I'm a newbie when it comes to continuous integration.
That being said, I'm trying to set up a CC.NET environment to educate myself, but I'm having trouble finding the …
0
votes
1answer
40 views
MSBuild Click-Once issues with manifest
I am getting the following error when I publish my ClickOnce application with MSBuild. I have a pre-publish task which copys the correct app.config file into the project before the publish and this is …
0
votes
1answer
11 views
Automatize Publish of ClickOnce VS2008
Hi all,
i have a solution sln, with several projects (vbproj, csproj), and I have Windows Application, and I use ClickOnce for publish it.
Now, I need automatize the Publish option using msbuild or …
