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.
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.
Instead of messing with system-wide settings and having to differentiate between 32 and 64-bit environments, a much easier and more reliable approach is to specify the
ExecutionPolicy
in the call to PowerShell, as follows:Note in the above code how calling
Get-ExecutionPolicy
tells you the current mode. Also note how this mode is specified in the call to PowerShell itself, which can be combined with a script filename:test.ps1 contents:
Calling test.ps1 with
Unrestricted
policy on a system having scripts disabled:Also note that the above call does not require admin rights, so it can be called in Visual Studio's Pre-Build Step or similar.
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 :
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) :
For example :
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)Before calling power-shell script from visual studio, set the ExecutionPolicy to
RemoteSigned
from power-shell window like this...then call powershell script in the following manner...
(no need to pass full "powershell.exe" file path)
then in the script, you can always read the parameter like this...
command Set-ExecutePolicy will temporarily set execution policy under current session. If you set this in powershell and run post build command in vs you will still get not allowed. So set first then run your ps1 script like bellow
I made it with below command in post-build even command:
DBAutomationScript.ps1 contents: