Tagged Questions
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
754 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
3answers
913 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 ...
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
451 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
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 ...
1
vote
1answer
31 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
147 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
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
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
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 ...