The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
20 views

MSBuild errorMSB4126

I'm working on building scripts for Cruise control and within my ccnet.config file I have the following msbuild task defined: <msbuild> ...
0
votes
1answer
16 views

Issue with using MSBuild to build and copy all outputs to a common folder

We are trying to write a msbuild script that will build the solution and copy over all the compiled binaries and dependencies over to a specific output folder. While the build script that we have does ...
0
votes
2answers
32 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 ...
1
vote
1answer
40 views

Build Error + Creating VSTO addin for excel 2010

I try to create an excel add-in using VS 2010. When I create a new project Excel 2010 Addin, and try to compile the solution. I get an error which says. 'Error 1 The "FindRibbons" task could not ...
0
votes
0answers
6 views

How to ignore a project when using Nantcontribu msbuild task?

This is the nantcontrib msbuild task: <target name="compile.OracleDataExchangeService" depends="init, assemblyinfo"> <msbuild project="CPODS.OracleDataExchangeService.sln" ...
0
votes
1answer
30 views

MSBuild referencing DLL's in Task

I have the following inline task defined in a .csproj file that should run BeforeBuild. <UsingTask TaskName="VersioningTask" TaskFactory="CodeTaskFactory" ...
0
votes
1answer
29 views

How do I get $(OutDir) programmatically?

I'm writing a custom build task and and would like to access the value of this property programmatically. It is possible? I've looked at all of the members of the Task class and didn't see anything ...
1
vote
0answers
63 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
0answers
51 views

How concatenate files in MSBuild and preserve tabs and spaces

I'm trying to concatenate a few files during my build but the way I tried strips out the tabs and spaces leaving the output unformatted. <CreateItem Include="Scripts\ApplicationModule.d.ts; ...
1
vote
1answer
109 views

Pass value from MSBuild Task to TFS Build Workflow

There are numerous examples and ways on passing a property value from TFS 2010 Build Workflow into MSBuild however I need to do the reverse. Basically on the build boxes custom target files have been ...
0
votes
1answer
105 views

RegEX - Replace first occurrence of text only

I'm trying to replace only the FIRST occurrence of some text, firstly from within an online tool such as http://regexpal.com/ and then see if this works in an MSBUILD task. I can do what I want in ...
1
vote
0answers
45 views

Specifying MSBuild tasks in Visual Studio 2010 (2012?)

I am trying to figure out how to specify values to MSBuild Tasks from within Visual Studio 2010. For instance, I have a build task called "BuildMergeModule" defined, and this build task takes an ...
4
votes
1answer
105 views

Adding custom attributes to MSBuild Task

I have TeamCity running MSBuild task for an ASP.NET MVC 3 application. Now every now and then (seemingly randomly) it throws "ASPNETCOMPILER : error ASPRUNTIME: The application domain in which the ...
0
votes
1answer
138 views

Microsoft.VisualStudio.SharePoint.targets(418,7): error MSB4131: The “IsDebugging” parameter is not supported

I'm using Visual Studio 2012 to build a empty SharePoint 2013 project (added a test list). However when I try to deploy the project I receive the following: C:\Program Files ...
0
votes
1answer
35 views

How to copy files with MSBuild to the same folder but with different extensions?

Let's say I have an ItemGroup defined as follows: <ItemGroup> <ReactorFile Include="MyExecutable\bin\x86\Release\MyExecutable.exe"/> <ReactorFile ...
0
votes
0answers
136 views

TFS mapping root path

I'm having the next problem: I am trying to invoke a custom msbuild task from a .csproj file and I need to set a parameter (something like $(ProjectDir) ) indicating the TFS path that the project has ...
0
votes
1answer
93 views

Copy DLL-s on building multi-solution MEF application

I use visual studio 2010 to develop and build on .net framework 4.0. I also use the Managed Extensibility Framework for a basic plugin system. I have 2 solutions: The main solution with 6 projects, ...
4
votes
1answer
70 views

MSBuild: Describe Which Constructor to Call

I'm working with an MSBuild task that needs to instantiate a class. The class originally had only one parameterless constructor, so all the MSBuild task needed was the type name to instantiate the ...
1
vote
1answer
83 views

Assembly Version Captured Before “BeforeBuild” Target

I am using MSBuild.Community.Tasks to help with two things, namely adjusting the version and zipping up a file. I am not married to this, so an alternate approach is welcome provided it produces what ...
0
votes
0answers
91 views

Cassette error “Illegal characters in path.”

I installed the package Cassette.Coffee to compile my CoffeeScript files. Everything worked normally!! So I decided to also use Cassette.Sass to compile my SCSS files; To my surprise, the following ...
0
votes
0answers
74 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 ...
1
vote
1answer
105 views

Getting the Git Long Hash from MSBuild

I am using Git + MSBuild. I need to get the Git Long Hash number from MSBuild so that I can tie a build to the hash number (and find out what files made up that "revision") Is there a built in task ...
0
votes
1answer
116 views

Implement BeforePublish as in AfterBuild

I have two application config file (app.debug.config and app.production.config), I found this solution to copy the config file to output folder according to the current build configuration name: ...
0
votes
1answer
126 views

Dynamics CRM - Stamp out new Org, Build / Deploy Plugins all from MSBUILD - Issues

I'm getting a run time exception in my deployed, exported, and then imported to another box... CRM Solution. The Exception is: System.TypeLoadException: Could not load type ...
0
votes
0answers
31 views

Using msbuild to NOT compile project

I'm using the publish profiles feature of Visual Studio 2012 on a website (not web application) project. I do not want the build process to compile the project as there's no need to do so. What can i ...
0
votes
1answer
146 views

Why SVNVersion.exe is returning Unversioned Directory

I am trying to mark my make project build with SVN revision number. I am using MsBuildTask for updating the AssemblyVersionFile details. I am using the following BuildScript to get the info , but ...
0
votes
1answer
58 views

Separate projects for Microsoft.Build.Utilities, Microsoft.Build.Utilities.v3.5, Microsoft.Build.Utilities.v4.0

I created a custom build task DLL that References Microsoft.Build.Utilities.dll Since the file name is different in each version, do I need to create separate project files to target different ...
3
votes
1answer
77 views

Reset App Pool via Prebuild Command from VS2010

I am looking for a way to automatically reset the app pool in IIS7 when I run a build. Currently I have to manually recycle the app pool before I deploy our code to our test server or the build ...
0
votes
1answer
74 views

Attach VS2010 Debugger to GTest running from MSBuild

I Compile my GTests using my own configuration: <ProjectConfiguration Include="Test|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> ...
1
vote
0answers
50 views

Override the MSBuild task

In order to test my MSBuild 3.5 scripts, I would like to mock some of the build in tasks. My approach has been to inject a UsingTask in my build script to provide an alternative implementation, a la: ...
2
votes
1answer
595 views

MSBuild UsingTask Resolve References

I feel like I've fixed this before, but I can't remember how. I have a tasks file that looks like this (CustomTasks.tasks): <UsingTask AssemblyFile="CustomTasks.dll" TaskName="MyCustomTask"/> ...
1
vote
0answers
74 views

Which MSBuild tasks initiate a call to SGen?

I have inherited a complex MSBuild script which builds & deploys multiple solutions. When I run the script I see the following error in log: SGEN: Cannot generate serialization assembly ...
0
votes
1answer
58 views

Custom MSBuild task in DBProj

I've created a custom MSBuild task for our database project. This tasks uses XLSX file to generate reference data insert scripts that get merged into the post deployment script. I tested this with a ...
0
votes
0answers
47 views

Using external task to determine OutputPath

I'm trying to override the OutputPath parameter globally in a csproj by using an external task to get information regarding where I would like to store the final output. I created a task: <Target ...
1
vote
1answer
64 views

MSBuild remove files on clean

I have the following target that gets called AfterBuild <Target Name="CopyAppDeployableArtifacts"> <ItemGroup> <MyFiles Include="App_DeployableArtifacts\**\*.*" /> ...
1
vote
1answer
295 views

MSBuild ItemGroup with condition

I don't know if ItemGroup is the right type to use. I will get 4 different booleans that will be true or false depending on choice. I would like to fill up an ItemGroup with this "strings" depending ...
1
vote
1answer
60 views

msbuild Assembly number - Get wrong number

I have the following code in my CommonAssemblyInfo.cs using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("XXXX")] [assembly: ...
0
votes
0answers
89 views

Msbuild task with variables

I want the $(fooAssemblyInfo.Version) to work in my BuildRepositoryZip task but it aint. Why? Do I have to move out the ItemName or something out of Target assemblyversion and in that case how is that ...
0
votes
3answers
187 views

Msbuild - build with output in diffrent folders

I have right now this in a script and want to have it in a msbuild instead. msbuild /t:Build;PipelinePreDeployCopyAllFilesToOneFolder XXXXX\XXXX.XXX.xxx\XXXXX.XXXX.XXXXX1.csproj ...
2
votes
1answer
204 views

MSBuild Copying from IntermediateOutputPath After Build Completion

I am using Afterthought (similar to PostSharp) to apply post build changes to some code by modifying the output assembly. Currently, my project file has something like this within (abbreviated): ...
1
vote
1answer
412 views

“File has a different computed hash than specified in manifest” error when signing the EXE

My ClickOnce installation fails with an error: File, WindowsFormsProject.exe, has a different computed hash than specified in manifest. I use MSBuild to generate ClickOnce deployment package. ...
0
votes
2answers
2k views

MSBuild targets and Visual Studio 2012 issues

I'm having a hard time getting my third party non-reference assemblies deployed via Webdeploy withing the Visual Studio 2012 UI. I have a folder called 'libraries', which contains some assemblies. Via ...
0
votes
1answer
187 views

Custom action after ClickOnce deployment / publishing

How can I run custom script which will upload ClickOnce deployment files to a web-server (in my case Windows Azure Blog Storage) right after publishing? Is it possible to modify MSBuild file in some ...
3
votes
1answer
400 views

Building a particular revision in Jenkins Pipeline

I am using SVN as my source control repository and Jenkins as my CI tool. I run MSBuild scripts using Jenkins to do the actual builds and deploys. I also use the Jenkins Pipeline plugin to do manage ...
1
vote
1answer
219 views

msbuild custom task failing in TFS with DirectoryNotFoundException

I've been working to build a custom build task which reads xml files, and combines the contents into one xml file and writes it out to the output directory of the build, I use ${OutputPath) to get ...
0
votes
1answer
168 views

MS Build Write Lines to File

What is Write Lines to File task in MS Build. I am trying to set up a deploy for an website I inherited. I am not that familiar with the MS Build internals. I am not even sure if this is a common ...
0
votes
1answer
242 views

Can Installshiled msbuild task be used to build ism which produce msp as output?

I am using Msbuild installshield task to build ism which produces msi as output. Refer Msbuild installshield task link Now Msp has to be build and i am doing it by opening installshield and [build ...
1
vote
1answer
167 views

Custom msbuild task output not recognized

I have a custom msbuild task with an output parameter defined below public class DeployJavaScript : Task { [Required] public ITaskItem[] SourceFiles { get; set; } [Output] public ...
0
votes
1answer
257 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 ...

1 2 3 4 5 6