psake (pronounced *sah-kay*, as in Japanese rice wine) is a build automation tool implemented in Windows PowerShell.
1
vote
1answer
43 views
Psake and robocopy failing
Robocopy will exit with a code above 0 and still possibly not be a failure. PSake detects anything above 0 as a failure and fails the build. This is fine, but how come this still fails:
task Deploy { ...
2
votes
0answers
32 views
How to display msbuild errors on the overview page from TeamCity
I want to use PowerShell with Psake and TeamCity to configure my CI. I used to standard Msbuild runner but now I wrote my own script for building solution but I have problem when msbuild failed.
...
0
votes
1answer
51 views
msdeploy via powershelll and psake fails
So I'm trying to use powershell and psake for my build and deployment. I've tried without any success to call the following psake task.
Exec { msdeploy.exe "-verb:sync"
...
1
vote
1answer
78 views
TeamCity not showing service messages with powershell
I'm running a project configuration using powershell/psake and I'm using the TeamCity powershell module (https://github.com/JamesKovacs/psake-contrib/wiki/teamcity.psm1) yet TeamCity only shows the ...
0
votes
0answers
30 views
Any new build framework to consider? [closed]
Looking for a solution to manage .net builds as well as php via script.
psake - windows only
rake and albacore - cross platform. Liking this the most right now
ant/nant - XML yuck
msbuild - XML yuck
...
1
vote
1answer
72 views
Why doesn't psake evaluate my property the way I expect?
I have a simple psake script:
properties {
$SolutionDir = "SOLUTIONDIR" # Resolve-Path ".\src"
$Config = "Debug"
$DeployBaseDir = "$SolutionDir\RMSS.Setup.WiX\bin\$Config"
...
1
vote
1answer
118 views
CS0246 and CS0433 errors when building .NET 4.0 website on Server 2012
I am building a .Net 4.0 web project on Server 2012 with .Net 4.5 installed. I am using Psake under TeamCity and am getting CS0246 saying NotMapped could not be found, along with CS0433 saying it has ...
0
votes
1answer
72 views
Re-installing an NServiceBus endpoint stops the service
When I re-run my psake-based deploy process, my NServiceBus (3.3.0) endpoint does not resume processing messages. Under services.msc, the Status is blank.
Here's my psake script (with irrelevant ...
1
vote
1answer
172 views
Error when executing Invoke-psake without parameters
I just installed psake version 4.2.0.
I put this in default.ps1
properties {
$message = "Task A executed"
}
task default -depends taskA
task taskA {
write-host $taskAmessage
}
If I run ...
1
vote
2answers
127 views
How do I capture git error message in powershell?
I am writing a psake script. One of the tasks pulls files from a Github-hosted repository:
Framework "4.0"
$ErrorActionPreference = "stop"
formatTaskName "`n##------ {0} ------##`n"
task ...
0
votes
0answers
130 views
Use MSBuild Community Tasks with Psake
Is it possible to use the MSBuild Community Tasks with Psake? I know I can use the MSBuild Import task with Project=targets file for the community tasks, but cannot seem to get it working.
0
votes
1answer
158 views
Override properties when including a psake script in an other psake script
I am new to psake and I have this issue: I have 2 psake scripts:
(1): base_tasks.ps1:
properties{
$a = "hello"
$b = "hi"
}
task One{
Write-Host $a
}
(2): install.ps1
Include ...
5
votes
1answer
184 views
Can I set visual studio to use psake when building?
I would like to set visual studio to use Psake build by default when building. Is this possible slash more effort than its worth?
1
vote
0answers
61 views
Can I dynamically create psake tasks?
Is it possible to dynamically create psake tasks based on configuration (much as rake does)? For example, given a hashtable of environments:
environments {
$dev = 'server1',
$uat= 'server2'
}
...
1
vote
1answer
432 views
How to run Code-First Migrations from a psake build?
I can type Update-Database, Enable-Migrations etc, from Package Manager Console and it works fine.
If I need to do the same from a regular powershell session, or in a psake build file, then how do I ...
0
votes
1answer
139 views
How to set permissions/acl on a file in remote website using msdeploy & powershell/psake
Have a build script in psake/powershell that compiles and deploys a website to remote server using msdeploy. I need to set the acl's on one file in the root after the deployment. Anyone done this? I ...
1
vote
2answers
124 views
How to execute a .bat file from psake?
I am trying in a powershell psake script to execute a .bat file. Is this possible? Or do I have to do a workaround?
1
vote
1answer
300 views
Spaced paths, msbuild, and psake
Related question here.
This works properly for compiling an mvc3 application.
task Compile
{
$config = $script:siteConfig.config
exec { & ...
1
vote
1answer
282 views
Error passing Parameters with PSake 4.1.0
I'm trying to utilize the parameter feature introduced in the v4 release, but I'm running into an error. I can only seem to get properties to work...and I have tried passing the parameters using ...
1
vote
2answers
231 views
psake msbuild error
I want to build my solution using psake and msbuild (v3.5) on an x64 pc. When I execute the script I get the following error:
error MSB4019: The imported project "C:\Program ...
0
votes
1answer
58 views
Check that projects have Warnings As Errors
I have been automating all my builds through PSake and finding it really useful to get my TeamCity build more powerful.
One thing I would like to introduce is a step to make sure all projects in a ...
0
votes
2answers
536 views
How would you deploy this .net stack?
I have a .net app which has an MVC3 front end and 2 windows services.
It all depends on 2 RavenDB installations which can either be ran as windows services or IIS - I'm not bothered here.
The ...
12
votes
3answers
1k views
How to execute NUnit test using NUnit.Runners package and psake?
Traditionally, nunit-console.exe has been included in the repository and on the build server (or any other machine) this EXE was called from some build script.
Now that the NUnit.Runners package is ...
1
vote
1answer
161 views
How do you clean up NUnit processes with Psake?
I have a Psake script that works great locally. It runs great; however, Nunit spins up nunit-agent.exe processes and will not dispose of them.
This isn't an issue locally since I am not pulling down ...
3
votes
2answers
177 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
108 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
1answer
496 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 ...
5
votes
1answer
596 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 ...
1
vote
2answers
601 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 ...
1
vote
5answers
877 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
494 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
238 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
267 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
274 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 ...
12
votes
7answers
3k 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 ...
1
vote
1answer
267 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
4
votes
2answers
307 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? ...
0
votes
0answers
277 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 ...
7
votes
3answers
930 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?
0
votes
1answer
926 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 ...
8
votes
2answers
2k 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 ...
14
votes
2answers
2k 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 ...
0
votes
1answer
312 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 ...
1
vote
1answer
616 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
1k 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 ...
3
votes
2answers
2k 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 ...
0
votes
2answers
261 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"
...
7
votes
3answers
2k 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 ...
11
votes
2answers
2k 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 ...
6
votes
2answers
645 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
...