0
votes
0answers
147 views

Appharbor build error: The CodeDom provider type “Microsoft.VisualC.CppCodeProvider…” could not be located

I've just built an ASP.NET WebAPI project and pushed the code upto AppHarbor, but I'm getting a build error. I've tried googling what the error is but I've never seen it before and the project builds ...
4
votes
0answers
378 views

AppHarbor one step build and how to deploy my database

I finally got to the point where my solution does everything that's needed in it's build step: Download NuGet packages. Deploy the database (only if it's not there yet). Build the solution. Run any ...
1
vote
2answers
403 views

Appharbor fails to publish asp.net mvc 4 application

Trying to launch my project on appharbor and it fails with this: "D:\temp\cijsrn4n.1kq\input\TinyBlogMvc4.sln" (default target) (1) -> ...
2
votes
1answer
263 views

How to use $(OutDir) with YUICompressor.targets?

I have YUICompressor.NET, http://yuicompressor.codeplex.com/, configured as an msbuild task and it is working as expected on my development machine. When I push the code to AppHarbor then I get the ...
16
votes
1answer
2k views

What is the difference between a PreBuildEvent, BeforeBuild target and BeforeCompile target in MSBuild?

I recently had to move some code 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. What is the ...