MSBuild is an XML-based build platform from Microsoft.

learn more… | top users | synonyms

1
vote
1answer
33 views

How to clear (and possibly include other) items from an ItemGroup?

In my build process, I'm always using a pattern, whereby somes tasks are designed to compute the list of items in an item group, and some other tasks create the physical corresponding items. This ...
0
votes
0answers
21 views

Include files into xap

I want to execute some *.bat file before build. This file create Some folder structure into project dir, then I want to copy files from there to my xap-file. <Target Name="SomeTarget"> ...
1
vote
0answers
33 views

MSBuild add file to primary output

How can i add some custom file created by MSBuild to project output? i.e. I have blank .csproj, I add Exec task to Target that generates some file.txt and now i want to include this file into ...
0
votes
1answer
21 views

MS Build Conditions

I have a couple of conditional statements in a property group of a project: <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> ...
1
vote
1answer
45 views

Build a solution with ms build when the solution configuration doesn't match all project

I have a solution which has a configuration lets call it "A" 80% of the projects in that solution also have a configuration "A" but the rest do not. Although they do need to be built. When I build ...
0
votes
3answers
41 views

msbuild to copy to multiple locations defined in item metadata

I have an item with metadata I want to copy to perform some actions on and the result to occur in multiple locations, for example, I want to copy the file to multiple locations: <ItemGroup> ...
1
vote
0answers
50 views

HOWTO: Deploy NopCommerce from Team Foundation Service to Azure

I am currently trying to setup a website based on NopCommerce and since I want to customize it I use the source code and control the build process. My setup is based on Team Foundation Service Builds ...
0
votes
1answer
84 views

Running commands on Remote machine using PsExec from Msbuild invoked via Jenkins

I am using psexec(with MSbuild Script) to run an xCopy on a server from Jenkins(Hudson). The command runs ok when run through Command Prompt(as System user), but gives the following error when tried ...
0
votes
1answer
26 views

Using $(PlatformTarget) for content items in csproj files

I'd like to use the selected platform target -- $(PlatformTarget) for certain content items in my .csproj file. For example: <Content Include="Plugins\$(PlatformTarget)\Plugins.dll"> ...
-1
votes
1answer
91 views

Print the build number on an asp.net mvc application

I have an asp.net mvc 4 application which prints the assembly number in the header. I have setup continuous integration and deployment to azure. I have setup my build number very simple to: ...
1
vote
1answer
79 views

Missing MSBuild task when compiling C++/CLI

I am trying to compile some C++/CLI using MSBuild. I am getting an error: C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppClean. targets(74,5): error MSB4062: The ...
2
votes
1answer
56 views

MSBuild custom rules

When MSBuild happens, I want it to fail if the sharepoint project (WSP from that project) is targeted to GAC. ie. just before packaging I want to check the feature.xml or anyother .xml files where ...
0
votes
1answer
60 views

Creating new Directory with YUI Compressor task MSBuild Event

I am using YUI for minification. It all works fine. I am planning to keep the generated file in a different directory each time. But if i give a path which doesn't not exist , this task is not able to ...
0
votes
1answer
70 views

Setting individual StyleCop rules as build errors

According to this blog, you can set all/certain projects to treat StyleCop violations as build errors instead of warnings: By default, StyleCop violations will show up as build warnings. To turn ...
3
votes
1answer
118 views

'AssemblyInfoFileMask' is not declared. It may be inaccessible due to its protection level

I am creating a custom build tfs activity to be used inside the azure continuous integration. I have used the code from this blog: ...
5
votes
0answers
101 views

Storing Windows SDKs in source control?

The question is at the end - let me start by posing the context: One of the problem we are facing at work when using Visual Studio is to make sure that everybody on the team is using the same version ...
1
vote
0answers
69 views

Injecting .cs file into msbuild works fine except the Intellisense (VS 2010)

This is what i am trying to do, but so far been unsuccessful. I have a WPF Project with some xaml classes. I have a msbuild task that creates partial classes with the same name as xaml classes but ...
1
vote
1answer
38 views

How to check if Build failed in Finally

I've got a BuildDefinition file, in the Finally part I deploy the application (B in image) using a console app due to the complexity of the deploy. But when the build fails the application shouldn't ...
0
votes
1answer
78 views

cant publish Web Application to file system with vs 2012 express

I have tried to publish 3 different web applications to my file system and every time I get the same error message : "The specified path, file name, or both are too long. The fully qualified file ...
1
vote
2answers
85 views

How to rename build name with assembly version?

Pls see screenshot. I have setup continuos integration with tfsservice. It builds and deploys after each checkin. I would like to append or pre-pend if that word exists, the assembly version so that ...
2
votes
1answer
68 views

how to show the current build with c# or msbuild?

I created an asp.net mvc4 application and I have setup continuous integration and deployment to windows azure. Because I have configured it to build after checkin, it would be very useful to print ...
0
votes
0answers
42 views

Necessary windows work flow changes to Run Unit test cases on deployment machine using TFS Build Template

In the TFS build template We have automated the build,deploy and validatio.Now in the template if we set process->basic->Unit Test Type= After Deploy we need to run the unit tests on deployment ...
0
votes
1answer
71 views

Japanese string literals & Visual Studio 2010 & error CS1009: Unrecognized escape sequence

I have a visual studio project that contains Japanese string literals. This project can be built completely fine in a Japanese system (Japanese Windows XP) and an English Visual Studio 2010 IDE. But ...
0
votes
1answer
52 views

How to deploy multiple database on Team build

I tried the following in MSBuild Arguments but this didn't work out. /t:Build;Publish /p:SqlPublishProfilePath=McMData1.local.publish.xml /p:SqlPublishProfilePath McMData1.local.publish.xml
1
vote
1answer
68 views

VS2012 Error when creating publish package: Exception in Executing Publishing Access to path is denied

I am trying to publish an application with VS2012 and when i try and make the package i get an error that access to the path is denied. I have checked and my user has full control and verified the ...
0
votes
0answers
34 views

Visual Studio Build Referenses to two diffrent version?

I have a VB web project and sometimes when I build it, I get a corrupt result. When I run it and visit some of its pages I get a error C:...\AppData\Local\Temp\Temporary ASP.NET ...
0
votes
1answer
72 views

Best Practices for Creating or Enhancing LightSwitch Projects

I'm researching the use of Microsoft LightSwitch as a target for an automated UI/code builder. The application builder might create LightSwitch solutions and projects, and might create or modify ...
0
votes
3answers
28 views

Item metadata not overriding property metadata

How do I get an Item's metadata to override a Item definitions metadata? I have in my vcxproj with: <ItemGroup> <PNL Include="some file"> ...
0
votes
0answers
24 views

Approaches to logging in MSBuild parallel builds

I would like to use msbuild to do parallel builds of a set of independent projects, however if there is a build failure in one of the projects, it can be hard to find the error message because there ...
0
votes
1answer
20 views

MSB3481 Certificate Error

I have a build server on window 2008 R2. I am running CruiseControl.net using msbuil 3.5. I know for a fact that the certificate is installed and the thumbprint is correct. I did look into this SO ...
1
vote
0answers
52 views

Performance effective solution for multiple wildcard mask searches in msbuild?

I'm creating msbuild project, and one of the tasks is to find all files in directories which satisfies any of file masks provided. I realized that even if I create just one-line Item with several ...
0
votes
0answers
65 views

Visual Studio Build fails with “object not declared” on substring of keyword

This is pretty weird - I am getting "object not declared" on variables that are a substring of a piece of code. I have pasted an example below. In the error line above the 'les' from Handles is ...
0
votes
1answer
156 views

MSBuild - how to force “AfterBuild” target when I do deployment?

I have the following setup: ASP.Net MVC .Net 4.0 solution with 5 projects in it, and several solution configurations (Site1-Stage, Site1-Live, Site2-Stage, etc). The reason for this is simple - we ...
1
vote
1answer
36 views

Type reference forwarding in the MonoDroid project requiring it

Regarding to the solution described in this post, a third assembly is required to forward the type resolution to the correct assembly. When adding this reference to the Android class library project ...
0
votes
1answer
29 views

MsBuild Subversion error The element <Project> is unrecognised

I am trying to write an Msbuild script that will retrieve a Solution held in subversion to a local path, and then build the solution. When executing from a command line I am getting the error - ...
0
votes
1answer
78 views

Visual Studio / MSBuild - 'Clean' Solution

I am working with the web application Umbraco. To speed up my workflow I have made the 'served' Umbraco folder a project inside my visual studio solution. This allows me to create other projects ...
0
votes
1answer
97 views

Include existing service reference folder to project in visual studio 2010

I have a bunch of service references in my local drive that I want to include in a Visual Studio 2010 project. But when I select Include in Project command they are included as folders and I cannot ...
1
vote
1answer
43 views

Filtering MSBuild log entries?

The files created by MSBuild when /filelogger is enabled are verbose and not (IMHO) very useful. Specifically are there command line arguments (or a post-processor tool) for: identifying only ...
6
votes
2answers
187 views

How to configure a VS2012 solution for x86 and x64 simultaneously

We have a VS2012 .NET 4 product that has 2 different SKU's A and B which we currently build for x86 only. We also have the usual Configurations Debug and Release meaning we have 4 configurations ...
-1
votes
1answer
26 views

How do I zip a folder in MSBuild?

How do I zip an output folder in MSBuild? For the filename I need to use a variable that gets set elsewhere.
0
votes
1answer
22 views

How do I read a DLLs version number in MSBuild?

How do I read a DLLs version number in MSBuild and place it into a variable for use later?
0
votes
0answers
46 views

web publishing pipeline with teamcity

I have a project with a wpp pipeline that has some extra acl and dbDacFx tasks. The solution runs fine on my build machine and produces the correct deployment manifest, however when i run the same ...
2
votes
2answers
61 views

Cross-Join ItemGroups in MSBuild

Given something like so.. <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="test" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> ...
2
votes
0answers
69 views

MSBuild: Produce message that is visible in VisualStudio's “error list” window

Visual Studio has an "Error list" window: In a msbuild task (in a .csproj file): When I use the <error text="Foo"> tag, I get an error in the error list (and I can hide it by un-toggling ...
0
votes
0answers
31 views

Teamcity MSBuild Gallio integration [closed]

I am new at this. I am trying to create a task in Teamcity to run my tests created with MBunit, Gallio. I searched quite some time but I could not find a solution. Does anyone has a manual how to ...
2
votes
1answer
69 views

msbuild.exe won't deliver the new output after file changed

Recently I am facing a problem with msbuild.exe by building a dll. My idea is to call the msbuild from DOS command line to automatically create the DLL without opening MS Visual Studio. The command ...
1
vote
1answer
37 views

How to make WPF projects build on run?

In Visual Studio 2012 I want my projects to build on run. Typically I'd do this via Options> Projects and Solutions > Build and Run > Always build when project is out of date. For all my other ...
0
votes
1answer
25 views

Publishing with MSBuild with custom parameters

I am publishing an application from Visual Studio 2012 (.NET 4.5). I am using "File System" publishing method (I can not use "Web Deploy Package" also known as target:package). As a result of ...
0
votes
0answers
47 views

MSBuild ExtensionPack for remote installation required more configuration

Is there anyone experienced with MSBuild.ExtensionPack i have been using this to install the windows service to the remote machine. The service is installed successfully in the remote location. But ...
4
votes
0answers
106 views

MSBuild File to Run Code Analysis Without Overlap

I am creating an MSBuild file to combine some tasks of the things I need to do on my build server into one step. Part of this process requires running code analysis. My problem is that I have running ...

1 2 3 4 5 97