Tagged Questions
0
votes
0answers
20 views
MSBUILD target outputs element is applied strangly
Hi I have my C# project in Visual Studio 2012 where I want to copy some external dlls to my bin folder.
For a clean build it copies everything to bin folder without problems.
Then I delete some dll ...
1
vote
1answer
110 views
Difference between MSBuild's Targets attribute and Target tag
I am confused between MSBuild's Targets attribute and general Target tag.
Does below code compile into msbuild myapp.sln /t:Rebuild and Is "Rebuild" pre-defined target in .NET.
<Target ...
0
votes
1answer
29 views
Global postbuildevent in solution
about a dozen projects in my VS solution have the same line:
<PostBuildEvent>
<Command>signtool sign /f ..\Certificates\MyCert.pfx /fd sha256 "$(TargetPath)"</Command>
...
0
votes
0answers
207 views
Cannot build project with MSBuild programmatically
I am trying to package a Visual Studio .csproj with MSBuild programmatically (using namespace Microsoft.Build.Evaluation).
I can correctly package this project with command like like
MSBuild ...
5
votes
1answer
106 views
Changing PublishUrl property in csproj file
I need to be able to change the PublishUrl property in my Excel VSTO project's csproj file in order to manage which publish url is used based on the configuration that is set in the configuration ...
0
votes
0answers
121 views
MSBuild: Choosing right Target-Inputs for resource-packaging
I have written a custom MSBuild-script that is capable of packing resources into zip-files based on the resources type. A resource is a Visual-Studio 2010 Item with a custom Item-name. The custom ...
0
votes
1answer
167 views
How to call rake target twice
I generate two different sets of DLL files from my .sln by modifying the .csproj files to include an extra compilation symbol. I'm using rake to build the solution, and have the following Build task:
...
1
vote
1answer
230 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
723 views
Using the solution's configuration name as a test condition for MSBuild Target
I finally realized why my BeforeBuild Target is no longer executing as expected -- it's so silly, it's because the project's configuration names had changed. But what I really want to do is test for ...
0
votes
1answer
57 views
How to execute an application with test results after MSTest?
Anyway to have my project run a application after the test batch finished?
I was hoping to add a <Target> but was unable to find anything.
I am just wanting to pass the results to a seperate ...
0
votes
1answer
150 views
Where is AfterBuildCompiler (msbuild) target defined?
I'm trying to get multi-project ASP.NET MVC areas (like described here) working in MVC 3 on .NET 4 (since it's not officially supported since MVC 2 Beta). So i've found Microsoft.Web.Mvc.Build.dll ...
0
votes
2answers
621 views
Creating MSBuild target hooks
Can someone please point me to a reference about target hooks in MSBuild?
I'm looking for something that will let me define targets to run before and after a specified target. I know this can be ...
5
votes
3answers
2k views
Custom common target to build a solution
I created a custom common target "RealClean" which remove every files in the output and "intermediate output" directory. I put it in the Microsoft.Common.targets file.
When I run MsBuild on my csproj ...
0
votes
1answer
85 views
Target not being executed when imported to the main *.proj file
I use the TFS 2008 build facilities. I have a large MSBuild project (TFSBuild.proj) and I wanted to split it into a few files because it is becoming hard to maintain.
I found a strange behavior; when ...
10
votes
3answers
5k views
MSBuild target _CopyWebApplication does not copy all necessary files to the bin folder
Elsewhere on the Web, you can find recommendations on using something like this to simulate the Publish feature in the VS 2005-2008 IDE from a command-line (I hope I did not goof up the syntax!):
...
4
votes
2answers
2k views
Building Web Application project using MSBuild from command line on 64-bit: missing targets file
Building a solution containing a web application project using MSBuild from powershell like this:
msbuild "/p:OutDir=$build_dir\" $solution_file
Works fine for me on 32-bit, but on a 64-bit machine ...
2
votes
3answers
353 views
Getting a Target to run BEFORE anything else runs when building from Visual Studio
I'm trying to get a one-time costly target to run only when building a certain top-level project (that has many dependencies).
I have no problem on getting this working from plain msbuild / command ...
2
votes
1answer
2k views
How to invoke the same msbuild target twice?
I have the following msbuild script:
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets="All">
...
1
vote
2answers
573 views
Choose a MSBuldTarget to launch with Cruisecontrol.Net
I want to use CCNetRequestSource wich is the name of the trigger wich launch the Msbuild task. For exemple when "toto" trigger is exected i want to launch the "toto" target on MsBuild. Is it possible ...