Is it possible to set up a .net project with a post build event to execute a powershell script? I am using this script to generate some files. Also can I pass whether it's a debug or release build to script. An example of this would be great.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 12 down vote accepted

Here is an example :

First of all : you must be aware of the fact that PowerShell must be configure to execute scripts. The following line allow PowerShell to execute scripts :

Set-ExecutionPolicy unrestricted

Special mention here : if you are running a 64bits system you've got to take care of the fact that 'devenv.exe' the Visual Studio 2010 executable is a 32Bits exe, so you need to allow PowerShell 32 to execute scripts.

Once here you can go in your project properties and configure post build as shown here under (sorry in french) :

Post build in VS 2010

For example :

Example of postbuild with powershell

Here is the file 'psbuild.ps1', it creates a 'test.txt' in the target path with the configuration name inside. I put in comment different ways to debug your postbuild script (message box, sound, message on the output)

param ([string]$config, [string]$target)

#[void][Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
#[void][System.Windows.Forms.MessageBox]::Show("It works.")
#[Console]::Beep(600, 800)
#Write-Host 'coucou'
set-content $target -Value $config -Force
link|improve this answer
1  
Wow, that was truly an answer! :) – tbergstedt Jun 28 '11 at 6:25
1  
Good answer. I would only add that you should not set the execution policy to unrestricted, but to remotesigned instead. Unrestricted lets any script execute, whereas remotesigned requires downloaded scripts to be signed with a trusted key. – beefarino Jun 28 '11 at 16:18
Hum do you test to download a .PS1 file on an Fat32 drive or tu use basic cmdline FTP to download a .PS1 file with "remotesigned" ? isn't it a kind of "smoky security" ? – JPBlanc Jun 29 '11 at 7:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.