Tagged Questions
psake (pronounced pee-saw-kay – as in Japanese rice wine) is a build automation tool implenented in Windows PowerShell.
8
votes
2answers
1k views
Strange behavior with Powershell scriptblock variable scope and modules, any suggestions?
NOTE: I'm using PowerShell 2.0 on Windows Vista.
I'm trying to add support for specifying build arguments to psake, but I've run into some strange PowerShell variable scoping behavior dealing ...
7
votes
1answer
753 views
What is up with this PowerShell command line quoting/escaping?
I obviously don't know what I'm doing.
I have finally got this PowerShell command to work. But I can't figure out why it works.
My concern is the final "" chars:
&"C:\Program ...
7
votes
1answer
614 views
Setting up PSake
Does anybody know or have a link to how I set up psake to run through powershell?
I have absolutely no idea and I can find nothing to tell me.
Cheers
Paul
7
votes
2answers
2k views
PSake extensions?
I recently discovered Powershell and through that PSake. If you are using it and you've extended it or created tasks for it, please share!
5
votes
2answers
668 views
psake vs. rake for .NET builds
I'm investigating build tools for use with an ASP.NET MVC 2 application. I like the idea of using a scripting language rather than XML, and have narrowed my choices down to psake or rake. I don't have ...
5
votes
3answers
911 views
Inject command line arguments into psake
I would like to inject command line parameters into my psake build script like:
.\build.ps1 Deploy environment="development"
But psake will treat every argument as a Task and will answer "task does ...
4
votes
2answers
320 views
How to publish web site using PSAKE
Is there a way to publish asp.net web application using PSAKE, just like visual studio do?
3
votes
1answer
205 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
450 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 ...
3
votes
2answers
983 views
Powershell 2.0 - Running scripts for the command line call vs. from the ISE
After writing deployment scripts from within the ISE, we need our CI server to be able to run them automatically, i.e. from the command line or via a batch file.
I have notice some significant ...
2
votes
2answers
138 views
Is there a way to list all tasks in a psake build file?
I've got a default.ps1 file with several tasks, some of which I don't use all too often.
Instead of opening the file and grep'ing for the Tasks, is there a way to list them in the command line? ...
2
votes
2answers
407 views
How to use psake from a batch file?
What I want is a one file I can double-click that will run the required build process using psake.
I'm new to psake and PowerShell so be gentle :-).
What I have now are 3 files:
File 1: Build.bat
...
2
votes
2answers
698 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 ...
2
votes
1answer
481 views
Psake, Powershell & Wix
I have the below function as a part of my psake build. When the build is executing Candle.exe throws this error:
candle.exe : warning CNDL1098: 'ext .\Build\Packages\WixWeb\bin\WixIIsExtension.dll' ...
1
vote
1answer
29 views
Setting a Property Value in 1 task and use the updated value in another
In my psake build script, I have a property called $build_mode that I set to "Release".
I have 2 tasks; "Compile_Debug", "Compile_Release". In Compile_Debug, I change $build_mode to "Debug" and it ...
1
vote
1answer
26 views
Build Visual Studio 2003 solution or .NET 1.1 projects with psake
Unfortunately, I have mixed .NET version projects. Some legacy code is in .NET 1.1 and other is in .NET 3.5. I cannot use
exec { msbuild test.sln }
because msbuild does not support compiling .NET ...
1
vote
5answers
146 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
2answers
185 views
PSAKE powershell & execute task not running
Trying to get a PSAKE script to work. Its seems that tasks are not executing the functions within them?
I have 2 files
-- default.ps1 --
Import-Module ...
1
vote
0answers
86 views
psake calling msdeploy.cmd with parameter containing an ampersand
I have a psake script to manage my deployments, the process is as follows:
Compile & run tests
Generate a deployment package using msbuild
Check to see if we are deploying internally or ...
1
vote
1answer
137 views
TeamCity + Psake + SqlCmd Powershell infinite loop
I'm trying to use the Powershell Runner in TeamCity 6.5.2 to run a Psake task that depends on a task that calls out to SqlCmd. If I try to do this, teamcity seems to get into an infinite loop until ...
1
vote
1answer
140 views
How to debug/diagnose cause of Powershell Copy-Item command failing in psake script?
I have a very simple script that uses Copy-Item in the Task Build section following the psake conventions (and examples). Right now that's all it does in an attempt to simplify the script to debug ...
1
vote
1answer
171 views
What is Psake used for?
Buliding the C# solution or Build automation script ..If its for Building the solution why it has to use MSbuild for it.. And clean will also be scripted in it intially
1
vote
0answers
334 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 = ...
1
vote
2answers
341 views
Converting Dos Command to Power Shell command
I am working with PowerShell 2.0 with Psake 1.4
Here is the dos command that is running that I want to convert to PowerShell.
"C:\Program Files\Borland\StarTeam 2005 R2\stcmd.exe" co -p ...
0
votes
1answer
89 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
129 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 ...
0
votes
0answers
175 views
build and deployment automation for msbuild EXE projects
I'm working on some automated build changes and have some questions as to the best approach for building/packaging EXE applications.
Conceptually, there are two scripts. The first builds everything ...
0
votes
1answer
566 views
Running PSAKE script from the command line
I'm creating a batch file to execute my psake builds while integrating with teamcity and the TFS Powershell commandlets from TFPT and have come up with the following:
@ECHO OFF
SET ...
0
votes
1answer
159 views
Psake nested build does not fail
I have a fairly simple Psake build script (default.ps1) that calls Invoke-Psake from within one of the tasks. Something like this:
(default.ps1)
. .\utilities.ps1
properties {
...define some ...
0
votes
2answers
167 views
How do you data drive task dependencies via properties in psake?
In MSBuild you can data drive target dependencies by passing a item group into a target, like so:
<ItemGroup>
<FullBuildDependsOn Include="Package;CoreFinalize"
...