admin 请问只要开通unify_builder.exe权限就可以吗,我也是加密环境,,exe文件加密权限已开通,同目录下的unify_builder.runtimeconfig.json文件如下的话,会提示Framework 'Microsoft.NETCore.App' is missing a version.
{
"runtimeOptions": {
"framework": {
"name": "Microsoft.NETCore.App"
}
}
}
修改成如下的话,则会报这个错误
Load params failed !
Newtonsoft.Json.JsonReaderException: Unexpected character encountered while parsing value: %. Path '', line 0, position 0.
at Newtonsoft.Json.JsonTextReader.ParseValue()
at Newtonsoft.Json.JsonTextReader.Read()
at Newtonsoft.Json.Linq.JObject.Load(JsonReader reader, JsonLoadSettings settings)
at Newtonsoft.Json.Linq.JObject.Parse(String json, JsonLoadSettings settings)
at Newtonsoft.Json.Linq.JObject.Parse(String json)
at unify_builder.Program.Main(String[] args_)
如下为完整内容
{
"runtimeOptions": {
"framework": {
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
}
}
}