在命令提示符中,我会使用:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_compiler -p "C:\Visual Studio 2013\myProjectFolder" -v /-u "C:\CompiledFilesFolder"
答案 0 :(得分:1)
您的代码也可以在 powershell中使用。这是一种稍微改进的方法:
$aspnetCompiler = (Join-Path $env:windir 'Microsoft.NET\Framework64\v4.0.30319\aspnet_compiler')
& $aspnetCompiler -p "C:\Visual Studio 2013\myProjectFolder" -v /-u "C:\CompiledFilesFolder"