Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
45 views

Referencing well-known item metadata inside metadata definition in an ItemGroup in a target

Here's an MSBuild script: <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="AugmentItemGroup" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> ...
1
vote
1answer
47 views

MSBuild: How to always include a file (Import Project)?

I have a file: CoreAssemblyInfo.cs that I want to show up in my projects under the properties folder... I realize that I can add the existing file as a link, but I was hoping to use MSBuild somehow ...
1
vote
1answer
73 views

Empty an MSBuild ItemGroup

Is there a way to remove the contents of an ItemGroup without resorting to Targets? I'm looking for something equivalent to: <ItemGroup> <MyItemGroup Remove="@(MyItemGroup)"/> ...
1
vote
1answer
40 views

Transform an ItemGroup into a Delimited String

My question is almost identical to Create an ItemGroup of strings in MSBuild however the solution offered there still seems to carry over the existing delimiter. Here's a simplified snippet of what ...
1
vote
1answer
58 views

How to retrieve @(TargetOutputs) without performing a build

I'm implementing an MSBuild framework to drive the building and deployment of many projects organized as a hierarchy. <Target Name="_CoreBuild"> <MSBuild Projects="@(Project)" ...
1
vote
2answers
239 views

msbuild include / copy from subdirectory to root directory - possible?

Can I include a file from a subdirectory, but have it placed in the root directory of the bulid instead of its original sub directory? Example: We have multiple robots.txt files for different release ...
1
vote
2answers
213 views

MsBuild: Passing an ItemGroup with CallTarget

I'm having some problems witht the scoping of item groups I create in an MSBuild script. Basically, what I want to do is to have two different targets - let's call them RunUnitTests and ...
1
vote
1answer
357 views

MSBuild Metadata on joined item groups

I have two item groups that I wish to join: <ItemGroup> <ServerTypeA Include="ServerA;ServerB;"> <MetaDataA>A</MetaDataA> </ServerTypeA> </ItemGroup> ...
1
vote
1answer
296 views

how to get extension name (without dot) in MSBuild

I have an ItemGroup, and I use its metadata as identifiers in my MSBuild project for batch processing. For example: <BuildStep ...
0
votes
1answer
417 views

MSBuild, CreateItem to ItemGroup to binplace a target to multiple folders

Short-story: I have a list of with an attribute called true. I want to copy all of these files, to a list of folders, say defined by ... someFolder To that end, here's what I'm doing today: ...
0
votes
2answers
451 views

MSBuild item can't be used in MSBuild task, error MSB4012

I have the following MSBuild project file: <?xml version="1.0" encoding="utf-8"?> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Deploy" ...
0
votes
1answer
46 views

ItemGroup not picked up when publishing website via FTP

In my MSBuild, I created an item group, like the following: <ItemGroup> <SomeFileType Include="dir/file1.ext" /> <SomeFileType Include="dir/file2.ext" /> ...
0
votes
2answers
447 views

MSBuild Package task - Web Deploy

I'm trying to add custom files to our web deployment package, per this blog posting: ...
0
votes
2answers
2k views

MSBuild ItemGroup Include/Exclude pattern issue

Problem: an ItemGroups array isn't correctly build based on the value passed in the exclude attribute. If you run this scrip it creates some sample file then tries to create an array called TheFiles ...
0
votes
1answer
275 views

Create an ItemGroup of strings in MSBuild

I want to create an "ItemGroup" of arbitrary strings / names in order to use MSBuild transforms, for example: <ItemGroup> <Categories>First</Categories> ...
0
votes
1answer
278 views

Removing a trailing slash in MSBuild / Convention based filename generation

I'm trying to search for a set of assemblies based on the following convention within a directory: {SubDirName}\{SubDirName}.dll I've started by creating an MSBuild ItemGroup [by batching another ...