我是在PowerShell中做到的:
Get-ExecutionPolicy
Set-ExecutionPolicy remotesigned
当我在PowerShell中运行Get-ExecutionPolicy -List
时,我得到了这个:
Scope ExecutionPolicy ----- --------------- MachinePolicy Undefined UserPolicy Undefined Process Undefined CurrentUser Undefined LocalMachine RemoteSigned
当我在Visual Studio中运行项目时,@Scripts.Render("~/bundles/modernizr")
会抛出异常:
FileNotFoundException未被用户代码处理。
如何解决此问题,还是只能恢复我在PowerShell中所做的更改?