如何在PowerShell 5中编译ASP.NET Visual Studio项目

时间:2016-11-18 06:20:57

标签: powershell powershell-v5.0

在命令提示符中,我会使用:

C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_compiler -p "C:\Visual Studio 2013\myProjectFolder" -v /-u "C:\CompiledFilesFolder"

1 个答案:

答案 0 :(得分:1)

您的代码也可以在 中使用。这是一种稍微改进的方法:

$aspnetCompiler = (Join-Path $env:windir 'Microsoft.NET\Framework64\v4.0.30319\aspnet_compiler')
& $aspnetCompiler -p "C:\Visual Studio 2013\myProjectFolder" -v /-u "C:\CompiledFilesFolder"