The msbuild-propertygroup tag has no wiki summary.
0
votes
2answers
35 views
Sequencing project/solution build and cmd file executing in custom MSBuild file
I need to tie together a bunch of steps which include building solutions, projects and running .cmd files using a custom MSBuild file.
My first pass at this is below:
<Project ...
2
votes
2answers
57 views
msbuild, overwriting property value in different file
I am trying to modify property value depending on certain condition in another file.
For ex.
I have one file that calls target file.
<Import Project="sample.vcxproj"/>
<PropertyGroup>
...
0
votes
0answers
75 views
msbuild, access project property in inline task code based on string value
I am trying to access property value based on string in inline task code
for example,
<![CDATA[
MatchCollection matches = Regex.Matches(SourceStr, Pattern);
Macros = new ...
0
votes
4answers
183 views
MSbuild, How to access project property value in Inline Task code?
I have inline Task code written in csharp
I wonder if there is anyway to access propect property in inline Task code
For ex. I am trying to replace string match with project property value. is it ...
0
votes
1answer
74 views
how to set property value based on item and use that property as input of property function?
I am trying to set a property value based on Item
But property doesn't seem to notice Item
For example, my code is like
<ItemGroup>
<temp Include="test.txt"></temp>
...
0
votes
1answer
34 views
MSBuild + Scope of property
I am defining a property in the .csproj file
<PropertyGroup>
<ProjectGuid>{3099AE33-98E7-4018-B0C3-4C3A37A6D56E}</ProjectGuid>
<OutputType>Exe</OutputType>
<!-- ...
0
votes
1answer
270 views
Why is $([System.Text.RegularExpressions.Regex]::IsMatch()) evaluated once in ItemGroupDefinition?
So fiddling with MSBuild tasks, and I am finding that a Regex metadata property is evaluated once rather than per item.
For example
<!--
actual items, we use standard project reference items ...
0
votes
2answers
339 views
How to create a new property in MSBuild and reference it in WIX
We need to create a property to indicate our software version. Then we want to use it inside our WIX project, i.e., reference it in wxs file. We don't want to define it in wxs file because we want the ...
1
vote
0answers
98 views
Eliminate repetition in msbuild Targets? (especially repetition of item identifiers, which can't expand Property's in Exec Command attributes)
I would like to minimize repetition in my msbuild xml, particularly inside my Target's Exec Command attribute.
1) Most importantly, in the following Target I would like to un-duplicate the pair of ...
0
votes
1answer
259 views
how to pass variable number of items in PropertyGroup/ItemGroup to msbuild script
Please read till I state my question clearly. I'm trying to implement a custom msbuild task that will accept a variable number of input parameters from a msbuild script. I am aware of arrays of input ...
2
votes
3answers
1k views
Using Microsoft.Build.Evaluation to publish a database project (.sqlproj)
I need to be able to publish an SSDT project programmatically. I am looking at using Microsoft.Build to do so but can not find any documentation. It seems pretty simple to create the .dacpac, but how ...
2
votes
2answers
991 views
When you import another msbuild file, what is the order of evaluation?
I have a shared properties file shared.properties.proj
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
...
1
vote
1answer
79 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?
0
votes
1answer
2k 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 ...
7
votes
2answers
1k 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
252 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
2answers
1k 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
545 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
485 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 ...
1
vote
1answer
186 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 ...
7
votes
1answer
2k 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 ...
1
vote
1answer
493 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
403 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 ...
0
votes
2answers
286 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) ...
2
votes
4answers
502 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 ...
0
votes
1answer
88 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>
...
1
vote
1answer
549 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
2answers
2k 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 ...
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 ...
7
votes
3answers
2k 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>
...
3
votes
2answers
1k 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:
...
5
votes
1answer
3k 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 ...
6
votes
4answers
2k 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 ...