I recently had to move some co开发者_如何学JAVAde from a PreBuildEvent in Visual Studio into the BeforeBuild target to make it work on AppHarbor. While doing so, I also noticed a BeforeCompile target.
I\'ve created an MSBuild.xml file to automate our ASP.NET project builds. It builds the project, publishes it, zips it and copies the zip to a network share. This all works perfectly, provided that I
Is it possible to determine whether a workspace exist on the server given the local path using tf.exe?
I am trying to create a custom MSBuild task that will run my nUnit tests either locally or during a TFS2010 build.The script works great locally but I can\'t seem to find the test dlls on the TFS buil
I\'m trying to edit my project file to enable me to have a project that builds multiple build configs at once. I\'ve done this using a batching approach and using the MSBuild task (see below).
When using TeamCity to compile my MSBuild XML task script, it fails with this: [10:43:03]: myWebProject1\\ myWebProject 1 .csproj (3s)
I created a build target in a project file (App.Tests.csproj) that imports a project: <Import Project =\"$(Location)\\Special.Tasks\"/>
Can someone write (or link to) a walkthrough that explains exactly how to create a custom MSBuild task and run it during a build?I\'m looking for a custom task that inherits from Microsoft.Build.Utili
I\'m trying to set up a C# project that\'ll run xUnit tests when I build, so I can use them in continuous integration.I have a regular project, a class library test project using xUnit, and my test ru
I have a MSBuild task that modifies an assembly. At the moment I place the Task in the AfterBuild Target of the project file. Unfortunately this does not work for Silverlight because the XAP is packag