Tagged Questions

2
votes
2answers
48 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
1answer
92 views

MSBuild: how to control the parsing of a semicolon delimited property

When a single property contains semicolons, MSBuild automatically parse the property into a list of properties when used within an itemgroup. Here's a snippet from my project: <PropertyGroup> …
1
vote
0answers
52 views

How to specify CodeAnalysisRules in MSBuild via commandline

I want to be able to specify the Code AnalysisRules in commandline MSBuild (for Code Analysis / FXCOP). The project file would have something like this in it: …
0
votes
1answer
177 views

Passing property group value from one MsBuild task to another

How do I keep values defined in one build target alive in other targert? If PropertyGroup is not the write MsBuild entity I should use here, what is? ReleaseDir is printed ok in "Package" target, but …
2
votes
4answers
351 views

Msbuild copy to several locations based on list of destination parameter?

I got a directory I want to copy to a number of locations. Say I have home.aspx I want to copy it to abc/home.aspx def/home.aspx ghi/home.aspx so two questions for me: How do I define the …
0
votes
0answers
12 views

How to define TeamBuild Item Collection with built executables and libraries

After a TeamBuild project built all files, how can I create a collection of all built .exe and .dll files? For instance, I update all AssemblyInfo versions by creating a property and an itemgroup …