Post build event execute PowerShell(构建后事件执行 PowerShell)
问题描述
是否可以使用构建后事件设置 .NET 项目来执行 powershell 脚本?我正在使用这个脚本来生成一些文件.
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.
推荐答案
这里是一个例子:
首先:您必须意识到必须配置 PowerShell 才能执行脚本.以下行允许 PowerShell 执行脚本:
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 RemoteSigned
此处特别提及:如果您运行的是 64 位系统,则必须注意 'devenv.exe' Visual Studio 2010 可执行文件是一个 32Bits 的 exe,所以你需要允许 PowerShell 32 执行脚本.
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) :
例如:
这里是文件'psbuild.ps1
',它在目标路径中创建一个'test.txt
',里面有配置名称.我评论了不同的方式来调试你的 postbuild 脚本(消息框、声音、输出消息)
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
这篇关于构建后事件执行 PowerShell的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:构建后事件执行 PowerShell


基础教程推荐
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01