473,394 Members | 1,800 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

MSBuild: Project level tasks from solution

Hi

I trying to master msBuild but have a problem. I have a solution that I
wish to build using msbuild but want to override BeforeBuild/AfterBuild
targets for each of the projects. I trying to avoid modifying the
common.targets etc and the individual project .sln files and just do it
within a solution proj.

One method I've tried, is to create the .proj file from the .sln file using
the msbuildemitsolution enviroment flag- base upon
http://www.sedodream.com/PermaLink,g...aa24bc7da.aspx
but I still cannot get the targets to be called when the
individual projects are built - I think is is because the projects are not
imported but are run via a <MSBuild Projects task
does anyone have an example how to do this? or point me in the right
direction

thanks
dan

Oct 6 '06 #1
3 6812
Have a look at my MSDN article Inside MSBuild at
http://msdn.microsoft.com/msdnmag/is...d/default.aspx
I think what you're looking for is in the section "Extending the Build
Processes"
Hope that helps

Sayed Ibrahim Hashimi
http://www.sedodream.com

"Danny" wrote:
Hi

I trying to master msBuild but have a problem. I have a solution that I
wish to build using msbuild but want to override BeforeBuild/AfterBuild
targets for each of the projects. I trying to avoid modifying the
common.targets etc and the individual project .sln files and just do it
within a solution proj.

One method I've tried, is to create the .proj file from the .sln file using
the msbuildemitsolution enviroment flag- base upon
http://www.sedodream.com/PermaLink,g...aa24bc7da.aspx
but I still cannot get the targets to be called when the
individual projects are built - I think is is because the projects are not
imported but are run via a <MSBuild Projects task
does anyone have an example how to do this? or point me in the right
direction

thanks
dan

Oct 6 '06 #2
Hi Sayed

Great article, although I can't quite get what I want to work. Instead
working with a .sln file I tried it linking in another .csproj file to try
and override the BuildDependson property as described in your artical.
Below is the .proj if you can give it a quick scan with an experts eye (
it's a cut down version of my original .sln version).

As you can see am trying to override the build properties and call a custom
before build target- but it don't work...

I really appreciate your help thanks.

Dan

<!--================================================== =====================================

MSBuild file which can be used to inject steps into the building of solution
files

================================================== =========================================-->

<Project DefaultTargets="BuildSolution"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<BuildSolutionDir>c:\devtest\</BuildSolutionDir>

</PropertyGroup>
<ItemGroup>

<!-- Item for solutions file(s) -->

<SlnFiles Include="$(BuildSolutionDir)*.csproj"/>

</ItemGroup>
<Target Name="BuildSolution" >

<!-- Have MSBuild emit the solution -->
<!-- Create a new item to pick up the newly generated file -->

<CreateItem Include="$(BuildSolutionDir)*.csproj">

<Output TaskParameter="Include" ItemName="SolutionMSBuildFiles"/>

</CreateItem>
<!--

Call MSBuild for each solution file. Pass the property:

theSolution=SOLUTION_FILE_TO_BUILD.

In the DoBuildSolution we use this to determine which file to build.

-->
<MSBuild Projects="$(MSBuildProjectFile) "

Targets="DoBuildSolution"

Properties="@(SolutionMSBuildFiles->'theSolution=$(BuildSolutionDir)%(Filename)%(Exte nsion)')"/>

</Target>

<PropertyGroup>

<DoBuildSolutionDependsOn>

BeforeDoBuildSolution;

CoreBuildSolution;

AfterDoBuildSolution

</DoBuildSolutionDependsOn>

</PropertyGroup>

<Target Name="DoBuildSolution"
DependsOnTargets="$(DoBuildSolutionDependsOn)" />
<Target Name="BeforeDoBuildSolution">

<Message Text="**************Before building your solution*****************"
Importance="high"/>

</Target>

<!--

Here is where we actually build the solution passed to us.

-->

<Target Name="AfterDoBuildSolution">

<Message Text="##############After building your solution##################"
Importance="high"/>

</Target>

<PropertyGroup>

<BuildDependsOn>

CustomBeforeBuild;

$(BuildDependsOn);

</BuildDependsOn>

</PropertyGroup>

<Target Name="CustomBeforeBuild">

<Message
Text="!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!CustomBeforeBuild!!"
Importance="high"></Message>

</Target>

<Target Name="CoreBuildSolution" >

<MSBuild Projects="$(theSolution)" Targets="Build"/>

</Target>

</Project>

"Sayed Ibrahim Hashimi" <Sa*****************@discussions.microsoft.com>
wrote in message news:DE**********************************@microsof t.com...
Have a look at my MSDN article Inside MSBuild at
http://msdn.microsoft.com/msdnmag/is...d/default.aspx
I think what you're looking for is in the section "Extending the Build
Processes"
Hope that helps

Sayed Ibrahim Hashimi
http://www.sedodream.com

"Danny" wrote:
>Hi

I trying to master msBuild but have a problem. I have a solution that I
wish to build using msbuild but want to override BeforeBuild/AfterBuild
targets for each of the projects. I trying to avoid modifying the
common.targets etc and the individual project .sln files and just do it
within a solution proj.

One method I've tried, is to create the .proj file from the .sln file
using
the msbuildemitsolution enviroment flag- base upon
http://www.sedodream.com/PermaLink,g...aa24bc7da.aspx
but I still cannot get the targets to be called when the
individual projects are built - I think is is because the projects are
not
imported but are run via a <MSBuild Projects task
does anyone have an example how to do this? or point me in the right
direction

thanks
dan


Oct 8 '06 #3
Hi,
Are you trying to make something happen before a project is built or before
the solution is built? If you need it to happen before a project, then you
should place your changes in the actual .csproj file (after the Import
statement). If you want it to happen before the solution that you are trying
to build, then simply put the tasks to execute before you call use the
MSBuild task to build the solution. If you are trying to perform the
before/after steps for the entire solution file, what you provided previously
may be overly complicated for this specific scenario. You should be able to
achieve it with something more similar to what is shown below.

<Project DefaultTargets="BuildSolution"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<BuildSolutionDir>c:\devtest\</BuildSolutionDir>
</PropertyGroup>

<ItemGroup>
<!-- Item for solutions file(s) -->
<SlnFiles Include="$(BuildSolutionDir)*.sln"/>
</ItemGroup>

<Target Name="BuildSolution" >
<!-- Perform your before build steps here -->

<MSBuild Projects="@(SlnFiles)" Targets="Build" />

<!-- Perform your After build steps here-->
</Target>
</Project>
HTH,
Sayed Ibrahim Hashimi
www.sedodream.com

"Danny" wrote:
Hi Sayed

Great article, although I can't quite get what I want to work. Instead
working with a .sln file I tried it linking in another .csproj file to try
and override the BuildDependson property as described in your artical.
Below is the .proj if you can give it a quick scan with an experts eye (
it's a cut down version of my original .sln version).

As you can see am trying to override the build properties and call a custom
before build target- but it don't work...

I really appreciate your help thanks.

Dan

<!--================================================== =====================================

MSBuild file which can be used to inject steps into the building of solution
files

================================================== =========================================-->

<Project DefaultTargets="BuildSolution"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<BuildSolutionDir>c:\devtest\</BuildSolutionDir>

</PropertyGroup>
<ItemGroup>

<!-- Item for solutions file(s) -->

<SlnFiles Include="$(BuildSolutionDir)*.csproj"/>

</ItemGroup>
<Target Name="BuildSolution" >

<!-- Have MSBuild emit the solution -->
<!-- Create a new item to pick up the newly generated file -->

<CreateItem Include="$(BuildSolutionDir)*.csproj">

<Output TaskParameter="Include" ItemName="SolutionMSBuildFiles"/>

</CreateItem>
<!--

Call MSBuild for each solution file. Pass the property:

theSolution=SOLUTION_FILE_TO_BUILD.

In the DoBuildSolution we use this to determine which file to build.

-->
<MSBuild Projects="$(MSBuildProjectFile) "

Targets="DoBuildSolution"

Properties="@(SolutionMSBuildFiles->'theSolution=$(BuildSolutionDir)%(Filename)%(Exte nsion)')"/>

</Target>

<PropertyGroup>

<DoBuildSolutionDependsOn>

BeforeDoBuildSolution;

CoreBuildSolution;

AfterDoBuildSolution

</DoBuildSolutionDependsOn>

</PropertyGroup>

<Target Name="DoBuildSolution"
DependsOnTargets="$(DoBuildSolutionDependsOn)" />
<Target Name="BeforeDoBuildSolution">

<Message Text="**************Before building your solution*****************"
Importance="high"/>

</Target>

<!--

Here is where we actually build the solution passed to us.

-->

<Target Name="AfterDoBuildSolution">

<Message Text="##############After building your solution##################"
Importance="high"/>

</Target>

<PropertyGroup>

<BuildDependsOn>

CustomBeforeBuild;

$(BuildDependsOn);

</BuildDependsOn>

</PropertyGroup>

<Target Name="CustomBeforeBuild">

<Message
Text="!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!CustomBeforeBuild!!"
Importance="high"></Message>

</Target>

<Target Name="CoreBuildSolution" >

<MSBuild Projects="$(theSolution)" Targets="Build"/>

</Target>

</Project>

"Sayed Ibrahim Hashimi" <Sa*****************@discussions.microsoft.com>
wrote in message news:DE**********************************@microsof t.com...
Have a look at my MSDN article Inside MSBuild at
http://msdn.microsoft.com/msdnmag/is...d/default.aspx
I think what you're looking for is in the section "Extending the Build
Processes"
Hope that helps

Sayed Ibrahim Hashimi
http://www.sedodream.com

"Danny" wrote:
Hi

I trying to master msBuild but have a problem. I have a solution that I
wish to build using msbuild but want to override BeforeBuild/AfterBuild
targets for each of the projects. I trying to avoid modifying the
common.targets etc and the individual project .sln files and just do it
within a solution proj.

One method I've tried, is to create the .proj file from the .sln file
using
the msbuildemitsolution enviroment flag- base upon
http://www.sedodream.com/PermaLink,g...aa24bc7da.aspx
but I still cannot get the targets to be called when the
individual projects are built - I think is is because the projects are
not
imported but are run via a <MSBuild Projects task
does anyone have an example how to do this? or point me in the right
direction

thanks
dan



Oct 11 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Uma Abhyankar | last post by:
Hello All, I was facing an issue with VCBuild on Beta1. Today after shifting to .NET Beta2, it looks like the issue is still not resolved :-( I have to invoke VCBuild through MSBuild on command...
1
by: Joshua Flanagan | last post by:
First, if there is a more appropriate newsgroup for MSBUILD questions, please let me know. I am trying to figure out how to create an item group that is evaluated AFTER some tasks have already...
5
by: Al | last post by:
Hi all We have created a xml file that imports a single project using the Import element. This project compiles to a class library, but has references to two other projects that are also class...
2
by: Jonathan Kacprowicz | last post by:
I am trying to create a build process using MSBuild that will build my multiple projects all with the same AssemblyVersion and AssemblyFileVersion. I have tried using the AssemblyInfo task from...
0
by: luvic.vangool | last post by:
Hi, I am getting the MSB3422 exception when trying to build a solution with MSBuild. Basically one of the dependencies is a C++ project which is not found when resolving references. The...
1
by: Shikhar | last post by:
Hi All, I am new to VSTS and MS Build. I want to do a Zip (As in NANT) in MSBUILD proj file. Can anyone please help me in this. Also i want to create labels in Team Foundation Server (for...
4
by: ramshankaryadav | last post by:
Hi, I'm facing a problem while building a project through MSBuild, this project is a part of a solution which has several other projects on which it depends, but I want to build this project...
3
by: shapper | last post by:
Hello, I am working on an ASP.MET MVC Web Application with NET 3.5 in VS 2008. I need to run some extra tasks on this project build so I download MSBuild from http://msbuildtasks.tigris.org/....
7
by: shapper | last post by:
Hello, I am working on an ASP.MET MVC Web Application with NET 3.5 in VS 2008. I need to run some extra tasks on this project build so I download MSBuild from http://msbuildtasks.tigris.org/....
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.