Tagged Questions
The msbuild-propertygroup tag has no wiki summary.
5
votes
4answers
1k 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 ...
4
votes
3answers
1k 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>
...
2
votes
2answers
92 views
MSBuild Property Scope
Once again I'm battling MSBuild. I want to have a property value defined with a root path. As part of the build, the path will get updated with version information. However, MSBuild seems to have ...
2
votes
1answer
357 views
test if an MSBuild property is defined?
In MsBuild, is it possible to create an MSBuild condition (or another situation) that will evaluate whether a Property is 'defined' (presuming that this is previous to assigning the property a value ...
2
votes
4answers
224 views
Find out the “Bit”ness of the current OS in MSBuild
I have a build script that needs to hard code a path to an executable. The path is:
C:\Program Files\Microsoft Visual Studio 9.0\SmartDevices\SDK\SDKTools\cabwiz.exe
This has worked fine, but now ...
2
votes
2answers
1k 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
2k 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 ...
1
vote
1answer
37 views
How to read mail using msbuild?
Is there any way to read mail contents using msbuild? Any custom tasks or community tasks available to achieve this?
1
vote
1answer
45 views
msbuild properties initialized from functions cannot be converted to items?
I am trying to create an msbuild project where dependency information is read from a text file. I have a text file named project.dep which contains a semicolon separated list of project names. In this ...
1
vote
1answer
275 views
Assembly name from MSBUILD
I am developing an app that reads a MSBUILD file ( *.csproj ) to pull out various bits of information. A previous question on here revealed that I can get the resource files being used in the ...
1
vote
1answer
165 views
Using WriteCodeFragment MSBuild Task
I am trying to use WriteCodeFragment MSBuild task to create AssemblyVersion attribute. I having a a problem creating a property group to correctly pass the ITaskItem array required for processing. Can ...
1
vote
1answer
203 views
How to add a custom Property as a child of a PropertyGroup in MSBuild?
I have the following build script, which I run with MSBuild:
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Compile" ...
1
vote
1answer
671 views
MSBuild: how to create a global property?
When running MSBuild, anything passed in on the command line using /p:MyProp=value is accessible from every MSBuild script invoked (via the MSBuild task) from the main script. How can I define a ...
1
vote
2answers
832 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
132 views
how to replace string in file using msbuild?
I want to replace a string such "how r u" in file test.xml with a string "i am fine" in another file xy.xml.using regular expression in ms build.
ie i have to read string from one file(xy.xml) and ...
0
votes
2answers
414 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
172 views
return properties from target called by CallTarget in MSBuild
I'm new to msbuild but even with google I don't have any idea how to return a property from a CallTarget in MSBuild (see below). Is that not possible or
<Target ...
0
votes
2answers
152 views
How to reevaluate MSBuild property
I can create MSBuild property, which contain unexpanded property reference. Here is example of it:
Text file property.txt contains single line
$(SomeProperty)
It can be processed with msbuild ...
0
votes
1answer
65 views
MSBuild project won't load if Import fails?
I created a build target in a project file (App.Tests.csproj) that imports a project:
<Import Project ="$(Location)\Special.Tasks"/>
These tasks only exist on our build server, that location ...
0
votes
0answers
46 views
How to use MS build to change the value of “Installation Url” in VS set up project
I have developed an application and I need to distribute its MSI & EXE to various customers. I have mentioned my server address in the "Installation Url" field that we get when we right click on ...
0
votes
2answers
176 views
Scope and order of evaluation of Items in MsBuild
I wonder why in the following code, MsBuild refuses to set the Suffix Metadata. It does work with a CreateItem task instead of the ItemGroup Declaration (because CreateItem is computed at build time) ...
0
votes
1answer
55 views
Is there a possibility to use one property value inside another?
I would like to do something like this:
<PropertyGroup>
<propone>value</propone>
</PropertyGroup>
<PropertyGroup>
<proptwo>$(propone)</proptwo>
...