我一直在尝试从Github安装Rosyln源代码并按照构建设置说明进行操作。
第一条指令是运行 Restore.cmd - 这将产生以下错误消息:
File C:Coderoslyn-masterbuildscriptsbuild.ps1 cannot be loaded.
The file C:Coderoslyn-masterbuildscriptsbuild.ps1 is not digitally signed.
You cannot run this script on the current system. For more information about
running scripts and setting execution policy, see about_Execution_Policies
at
http://go.microsoft.com/fwlink/?LinkID=135170.
+ CategoryInfo : SecurityError: (:) [],
ParentContainsErrorRecordException
+ FullyQualifiedErrorId : UnauthorizedAccess
我使用设置执行策略来禁用检查:
PS C:\Code\roslyn-master> Get-ExecutionPolicy -List
Scope ExecutionPolicy
----- ---------------
MachinePolicy Undefined
UserPolicy Undefined
Process Undefined
CurrentUser Undefined
LocalMachine Undefined
但是,我仍然收到相同的错误。我在Windows 10 Pro机器上运行Visual Studio 2017 Community。
提前致谢
吉姆
Restore.Cmd 文件包含以下命令:
powershell -noprofile -executionPolicy RemoteSigned -file "%~dp0\build\scripts\build.ps1" -restore %*
我将Powershell策略设置为什么并不重要 - 文件将覆盖它。当我删除执行策略子句时,文件运行良好。