Tagged Questions

3
votes
1answer
249 views

Build step triggered by TeamCity always builds - even when there are no changes

The problem: I am setting up TeamCity as a build server for an ASP.NET MVC project. I am using Powershell with psake to run msbuild against our .csproj file and create a deployable package. From the ...
3
votes
5answers
542 views

Powershell call msbuild with nested quotation marks

Using Powershell and Psake to create package and deployment for a visual studio solution. Trying to deploy a database project using msbuild - which is working correctly using msdos visual studio ...
2
votes
2answers
720 views

Determine If Solution Compiles using MSBuild and PSake

I have put together a PSake (v2.0) build script, and the script is setting the $psake.build_success property as true even thought the call to MSBuild fails. Can anyone advise me on how to alter the ...
1
vote
5answers
180 views

How do I escape a directory correctly when using psake, exec, and msbuild?

I can execute the following command in PowerShell: msbuild "c:\some\spaced path\project.sln" /p:MvcBuildViews=False /p:OutDir="c:\\some\\spaced path\\deploy\\Package\\" The paths are changed, but ...
1
vote
0answers
344 views

PSake Error Executing MSBuild Command

I have 3 projects in the solution, A WPFApplication and 2 ClassLibrary projects When i build the Solution i get error below.. properties { $base_dir = resolve-path . $build_dir = ...
0
votes
1answer
118 views

Integrate psake with MsBuild

I am using MSBuild for CI. I was looking recently to psake as an additional tool for creating scripts for daily builds as I need to do some updates to our builds which will be easier in psake. For the ...
0
votes
2answers
181 views

Teamcity doesn't detect msbuild nor nUnit failures when executed from powershell

I have written a build script using psake which I run in Teamcity. I have Teamcity 6.0, so I run psake from a .cmd, but I don't think that changes anything. Everything is working fine, but I have ...